You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently two tests are not working when working from a rakudo checkout when no rakudo is installed, because both try to find the executable in the path.
The &chdir changes the directory processes are spawned in falsely passes, because it's negatively comparing the old cwd against empty strings.
:cwd(...) changes the directory processes are spawned in fails visibly
I tried replacing the basename with absolute, but apparently that doesn't result in a working invokation (Unhandled exception: While looking for 'Perl6/Grammar.moarvm': no such file or directory).
I suspect the solution will be something like "if running from a checkout, execute this, otherwise execute that". Until then we might as well skip it, as it's running the wrong perl6 anyway.
The text was updated successfully, but these errors were encountered:
Currently two tests are not working when working from a rakudo checkout when no rakudo is installed, because both try to find the executable in the path.
&chdir changes the directory processes are spawned in
falsely passes, because it's negatively comparing the old cwd against empty strings.:cwd(...) changes the directory processes are spawned in
fails visiblyI tried replacing the
basename
withabsolute
, but apparently that doesn't result in a working invokation (Unhandled exception: While looking for 'Perl6/Grammar.moarvm': no such file or directory
).I suspect the solution will be something like "if running from a checkout, execute this, otherwise execute that". Until then we might as well skip it, as it's running the wrong perl6 anyway.
The text was updated successfully, but these errors were encountered: