Subject: | runtests thinks a successful test which dies is a success |
If a test runs all its tests successfully but then dies that should be a
failure. runtests thinks its a success.
$ cat die_after_success.t
#!/usr/bin/perl -w
print <<'END';
1..1
ok 1
END
die;
$ runtests die_after_success.t
die_after_success....ok
All tests successful.