aboutsummaryrefslogtreecommitdiff
path: root/tests/runtests.pl
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-08-06 08:43:37 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-08-06 08:43:37 +0000
commita6a367380422fcfcd48886c403bfbdecf9c7d28d (patch)
treeba7b5adef79c80fdef8ce68cc850a558410cd865 /tests/runtests.pl
parent944f9a73f43d1f76f6b1697e2a0655f1811e067c (diff)
7.8.1-pre3 commit
Diffstat (limited to 'tests/runtests.pl')
-rwxr-xr-xtests/runtests.pl12
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) {