# New Ticket Created by Simon Glover
# Please include the string: [perl #24211]
# in the subject line of all future correspondence about this issue.
# <URL: http://rt.perl.org/rt2/Ticket/Display.html?id=24211 >
The last test in t/pmc/sub.t is failing for me with the message:
Can't exec "parrot": No such file or directory at t/pmc/sub.t line 621.
Line 621 is:
system("parrot$PConfig{exe} -o temp.pbc $temp");
The problem appears to be that I don't have the current directory in my
path; changing line 621 to:
system("./parrot$PConfig{exe} -o temp.pbc $temp");
allows the test to pass.
Simon