Subject: | Tests should not use ~/tmp for temporary files |
Two tests are usually failing on my system with the following output:
cannot open '/home/cpansand/tmp/CELLtest.log' for append: Datei oder Verzeichnis nicht gefunden at /usr/perl5.18.2/lib/site_perl/5.18.2/Log/Any/Adapter/File.pm line 18.
# Looks like your test exited with 2 before it could output anything.
t/006-config.t ........
Dubious, test returned 2 (wstat 512, 0x200)
Failed 1/1 subtests
It looks like ~/tmp/CELLtest.log is a hardcoded path, but ~/tmp does not exist here. Anyway it's better to use a real temporary file using File::Temp.
Regards,
Slaven