diff options
author | Steven Schubiger <stsc@refcnt.org> | 2015-10-01 13:22:14 +0200 |
---|---|---|
committer | Steven Schubiger <stsc@refcnt.org> | 2015-10-01 13:22:14 +0200 |
commit | f72501505fef26e5ac48fbaa4611f71891f49b38 (patch) | |
tree | 957462851103bb8674d8c0d69ec1307e36d05007 | |
parent | 7f313b1c22e61541aea2bcbe666639e05e69c9ad (diff) | |
download | colorize-f72501505fef26e5ac48fbaa4611f71891f49b38.tar.gz colorize-f72501505fef26e5ac48fbaa4611f71891f49b38.tar.bz2 |
Catch test file exceptions
-rwxr-xr-x | test.pl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -33,7 +33,7 @@ my $write_to_tmpfile = sub { my @test_files = glob('t/*.t'); - runtests(@test_files); + eval { runtests(@test_files) } or warn $@; } plan tests => $tests; |