CC: | cwhitener [...] gmail.com |
Subject: | File::Slurp diagnostics changed |
The test suite fails with File::Slurp 9999.25 because of changed implementation --- now open() is used instead of sysopen():
# Failed test at t/Memory.t line 57.
# 'read_file 'zx48.rom' - open: No such file or directory at /home/cpansand/.cpan/build/2018111622/CPU-Z80-Disassembler-0.05-3/blib/lib/CPU/Z80/Disassembler/Memory.pm line 148.
# '
# doesn't match '(?^i:read_file 'zx48.rom' - sysopen)'
# Looks like you failed 1 test of 209.
t/Memory.t ........
Dubious, test returned 1 (wstat 256, 0x100)
Failed 1/209 subtests
Probably the regexp match should be changed to ...(open|sysopen)... to match both older and newer versions of File::Slurp.