From 46512d03d40eef82563d1b0d13173eaaeb363ddd Mon Sep 17 00:00:00 2001 From: Alex Gough Date: Mon, 6 Jun 2011 05:10:17 +0100 Subject: [PATCH] Fix missing newline in test output --- test.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"; } -- 2.39.5