Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
bring in line with rakudo's run()/shell() changes
This should still work on niecza and pugs.
  • Loading branch information
FROGGS committed Oct 29, 2013
1 parent 5bb2991 commit 3c43ace
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/Test/Util.pm
Expand Up @@ -99,7 +99,7 @@ sub get_out( Str $code, Str $input?, :@args, :@compiler-args) is export {
$cmd ~= $fnbase ~ '.code' if $code.defined;
$cmd ~= " @actual_args.join(' ') < $fnbase.in > $fnbase.out 2> $fnbase.err";
# diag("Command line: $cmd");
%out<status> = shell( $cmd );
%out<status> = +shell( $cmd ) +< 8;
%out<out> = slurp "$fnbase.out";
%out<err> = slurp "$fnbase.err";

Expand Down

0 comments on commit 3c43ace

Please sign in to comment.