diff options
author | Abe Timmerman <abe@ztreet.demon.nl> | 2004-06-13 13:41:49 +0200 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2004-06-13 15:35:00 +0000 |
commit | 26affc6c61604c9872ec2aaa162d647ce96277c4 (patch) | |
tree | 8b9df0851e94efac601f910fcdd4abc8453586f9 /t/TEST | |
parent | b5b61777757fec0af8ae5708e94d1089558c3513 (diff) | |
download | perl-26affc6c61604c9872ec2aaa162d647ce96277c4.tar.gz |
t/TEST
Message-Id: <200406131141.50361.abe@ztreet.demon.nl>
p4raw-id: //depot/perl@22932
Diffstat (limited to 't/TEST')
-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/) { |