Mercurial > pub > Impl
changeset 86:52eeec77504b
TAP fixes
| author | wizard | 
|---|---|
| date | Mon, 19 Apr 2010 02:38:18 +0400 | 
| parents | 190c794a41ae | 
| children | 6d3bca490556 | 
| files | Lib/IMPL/Test/TAPListener.pm _test/temp.pl | 
| diffstat | 2 files changed, 2 insertions(+), 6 deletions(-) [+] | 
line wrap: on
 line diff
--- a/Lib/IMPL/Test/TAPListener.pm Fri Apr 16 16:33:11 2010 +0400 +++ b/Lib/IMPL/Test/TAPListener.pm Mon Apr 19 02:38:18 2010 +0400 @@ -58,7 +58,7 @@ $result->State == IMPL::Test::Result::SUCCESS ? "ok $n " . join("\n# ", split(/\n/, $result->Name) ) : - "not ok $n " . (eval { $result->Exception->isa('IMPL::Test::SkipException') } ? '#SKIP: ' : '') . join("\n# ", split(/\n/, $result->Name.": ".$result->Exception || '') ) + (eval { $result->Exception->isa('IMPL::Test::SkipException') } ? "ok $n #SKIP: " : "not ok $n ") . join("\n# ", split(/\n/, $result->Name.": ".$result->Exception || '') ) ),"\n"; }
