Skip to content

Commit 3c43ace

Browse files
committed
bring in line with rakudo's run()/shell() changes
This should still work on niecza and pugs.
1 parent 5bb2991 commit 3c43ace

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/Test/Util.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ sub get_out( Str $code, Str $input?, :@args, :@compiler-args) is export {
9999
$cmd ~= $fnbase ~ '.code' if $code.defined;
100100
$cmd ~= " @actual_args.join(' ') < $fnbase.in > $fnbase.out 2> $fnbase.err";
101101
# diag("Command line: $cmd");
102-
%out<status> = shell( $cmd );
102+
%out<status> = +shell( $cmd ) +< 8;
103103
%out<out> = slurp "$fnbase.out";
104104
%out<err> = slurp "$fnbase.err";
105105

0 commit comments

Comments
 (0)