tests: Don't filter out tests that aborted.
Useful in piping Travis CI output through tap-filter manually.
This commit is contained in:
parent
77c6bf2019
commit
deee22ed42
|
@ -40,6 +40,6 @@ use strict;
|
|||
|
||||
undef $/; # slurp mode
|
||||
print for
|
||||
grep { /^ok.*# TODO/m or /^not ok(?!.*# TODO)/m }
|
||||
grep { /^ok.*# TODO/m or /^not ok(?!.*# TODO)/m or /^Bail out!/m }
|
||||
split /^(?=#)/m,
|
||||
<STDIN>;
|
||||
|
|
Loading…
Reference in New Issue