From eb9cb177d7b62bd611a43451f5bd613f52aa0327 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Sat, 28 May 2016 23:25:08 -0400 Subject: skip flaky test for now --- t/read-write.t | 3 +++ 1 file changed, 3 insertions(+) (limited to 't') diff --git a/t/read-write.t b/t/read-write.t index 21fe729..42b7b58 100644 --- a/t/read-write.t +++ b/t/read-write.t @@ -12,6 +12,8 @@ like($pty->read, qr/testing/, "basic read/write testing"); is($pty->read(0.1), undef, "read returns undef on timeout"); $pty->kill; +TODO: { +local $TODO = "this isn't a reliable way to produce a blocking write"; $pty->spawn("$^X -e 'sleep(1) while 1'"); eval { local $SIG{ALRM} = sub { @@ -25,6 +27,7 @@ eval { }; $pty->kill; $pty->close; +} # create an entirely new pty to clear the input buffer $pty = IO::Pty::Easy->new; -- cgit v1.2.3-54-g00ecf