Subject: | Tests may fail on parallel testing |
See subject. A sample fail report: http://www.cpantesters.org/cpan/report/1a64337e-757c-11e6-8b4d-6debea7e2f12
Probably this is due to a race condition in t/ExtUtils/TBone.pm, function typical:
unless (-d "testout") {
mkdir "testout", 0755
Another process could create the directory between the check and mkdir(). A possible solution would be to just swap these two lines. Or use real temporary directories.