Skip to content

Commit deee22e

Browse files
committed
tests: Don't filter out tests that aborted.
Useful in piping Travis CI output through tap-filter manually.
1 parent 77c6bf2 commit deee22e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/tap-filter

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,6 @@ use strict;
4040

4141
undef $/; # slurp mode
4242
print for
43-
grep { /^ok.*# TODO/m or /^not ok(?!.*# TODO)/m }
43+
grep { /^ok.*# TODO/m or /^not ok(?!.*# TODO)/m or /^Bail out!/m }
4444
split /^(?=#)/m,
4545
<STDIN>;

0 commit comments

Comments
 (0)