diff options
author | Daniel Stenberg <daniel@haxx.se> | 2000-11-17 15:34:33 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2000-11-17 15:34:33 +0000 |
commit | aa86f697f618b9af3f95f3b4e0402c2838148ac1 (patch) | |
tree | 6d801a6824d61625b08857795f1643437e7b578f | |
parent | e48747d95de3c992996182168b9025f16561109f (diff) |
output FAILED properly even when -s is used
-rwxr-xr-x | tests/runtests.pl | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl index e787796d5..bbe993642 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -224,9 +224,7 @@ sub compare { $res = comparefiles($first, $sec); if ($res != 0) { - if(!$short) { - print " $text FAILED"; - } + print " $text FAILED"; return 1; } |