From f6bf6da2150ccbcbe29eca74fa76a640b9e585f1 Mon Sep 17 00:00:00 2001 From: usev6 Date: Tue, 6 Mar 2018 22:42:35 +0100 Subject: [PATCH] [JVM] Unfudge some now passing tests --- S32-io/pipe.t | 3 --- 1 file changed, 3 deletions(-) diff --git a/S32-io/pipe.t b/S32-io/pipe.t index eb42ca29ed..d03a87a86c 100644 --- a/S32-io/pipe.t +++ b/S32-io/pipe.t @@ -33,7 +33,6 @@ sub shell_captures_out_ok($code, $out, $exitcode, $desc) { } } -#?rakudo.jvm skip 'hangs, RT #131393' { my $sh = shell("$*EXECUTABLE -e \".say for reverse lines\"", :in, :out); $sh.in.say: "foo\nbar\nbaz"; @@ -68,7 +67,6 @@ with run(:out, $*EXECUTABLE, '-e', '') -> $proc { } } -#?rakudo.jvm skip 'hangs' { lives-ok { my $p = run :bin, :out, :err, :in, $*EXECUTABLE, '-e', @@ -82,7 +80,6 @@ with run(:out, $*EXECUTABLE, '-e', '') -> $proc { } # RT #129882 -#?rakudo.jvm skip 'hangs' { my $proc = run $*EXECUTABLE, '-e', 'print slurp', :in, :out, :bin; my $input = ('a' x 1_000_000).encode;