diff options
-rwxr-xr-x | t/TEST | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -448,8 +448,12 @@ EOT } else { $next += 1; - print "${te}FAILED at test $next"; - print ($next > $max) ? "\tpossibly due to extra output\n" : "\n"; + if ($next > $max) { + print "${te}FAILED at test $next\tpossibly due to extra output\n"; + } + else { + print "${te}FAILED at test $next\n"; + } $bad = $bad + 1; $_ = $test; if (/^base/) { |