mirror of
https://github.com/curl/curl.git
synced 2026-07-24 21:07:28 +03:00
7.8.1-pre3 commit
This commit is contained in:
parent
944f9a73f4
commit
a6a3673804
4 changed files with 13 additions and 8 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue