Subject: | Fails tests under parallel testing |
Note that this failure is random, so sometimes parallel passes pass, other times they fail.
Running the test many times exposes 3 tests that seem to fail here, but they don't all fail every time
prove -j4 -blr t/tee.t t/order.t t/sh.t
t/order.t .. Failed 3/3 subtests
===( 4;0 1/5 0/? )==============================================Cannot remove tee.test: No such file or directory
t/tee.t .... Dubious, test returned 2 (wstat 512, 0x200)
Failed 5/5 subtests
t/sh.t ..... ok
Test Summary Report
-------------------
t/order.t (Wstat: 0 Tests: 3 Failed: 3)
Failed tests: 1-3
t/tee.t (Wstat: 512 Tests: 5 Failed: 5)
Failed tests: 1-5
Non-zero exit status: 2
prove -j1 -blr t/tee.t t/order.t t/sh.t
t/tee.t .... ok
t/order.t .. ok
t/sh.t ..... ok
All tests successful.