diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-08-06 08:43:37 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-08-06 08:43:37 +0000 |
commit | a6a367380422fcfcd48886c403bfbdecf9c7d28d (patch) | |
tree | ba7b5adef79c80fdef8ce68cc850a558410cd865 /tests | |
parent | 944f9a73f43d1f76f6b1697e2a0655f1811e067c (diff) | |
download | curl-a6a367380422fcfcd48886c403bfbdecf9c7d28d.tar.gz |
7.8.1-pre3 commitcurl-7_8_1-pre3
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/runtests.pl | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl index 6fa44778f..ac87beb09 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -514,7 +514,7 @@ sub singletest { if(!$short) { print "curl returned $res\n"; } - print " error FAILED"; + print " error FAILED\n"; return 1; } } @@ -525,7 +525,7 @@ sub singletest { $res = compare(\@actual, \@validstdout); if($res) { - print " stdout FAILED"; + print " stdout FAILED\n"; return 1; } if(!$short) { @@ -540,7 +540,7 @@ sub singletest { my @out = loadarray($CURLOUT); $res = compare(\@out, \@reply); if ($res) { - print " data FAILED"; + print " data FAILED\n"; return 1; } if(!$short) { @@ -553,7 +553,7 @@ sub singletest { my @out = loadarray("$LOGDIR/upload.$testnum"); $res = compare(\@out, \@upload); if ($res) { - print " upload FAILED"; + print " upload FAILED\n"; return 1; } if(!$short) { @@ -578,7 +578,7 @@ sub singletest { $res = compare(\@out, \@protstrip); if($res) { - print " protocol FAILED"; + print " protocol FAILED\n"; return 1; } if(!$short) { @@ -600,7 +600,7 @@ sub singletest { $res = compare(\@generated, \@outfile); if($res) { - print " output FAILED"; + print " output FAILED\n"; return 1; } if(!$short) { |