From: Alex Gough Date: Mon, 6 Jun 2011 04:10:17 +0000 (+0100) Subject: Fix missing newline in test output X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=46512d03d40eef82563d1b0d13173eaaeb363ddd;p=libparallel-mpi-simple-perl.git Fix missing newline in test output --- diff --git a/test.pl b/test.pl index ea085ff..93fa313 100644 --- a/test.pl +++ b/test.pl @@ -3,7 +3,7 @@ $incs .= " -I$_" foreach @INC; my @newout = sort { (($a =~ /(\d+)/g)[0] <=> ($b =~ /(\d+)/g)[0]) } `mpirun -np 2 $^X $incs ic.pl`; -print "1..24"; +print "1..24\n"; if (@newout < 24) { print "not ok 1 # mpirun failed. Do you need to start mpd?\n"; }