about summary refs log tree commit homepage
path: root/t/spawn.t
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2019-06-24 02:52:24 +0000
committerEric Wong <e@80x24.org>2019-06-24 05:26:26 +0000
commitbd61cb1b18c7f38588e0c3b166dd265b738242cc (patch)
tree9159ce30f685f476c83fc1e84102438371f0aacc /t/spawn.t
parentfd533491c3dd1ca032deaddc66a42423354e828f (diff)
downloadpublic-inbox-bd61cb1b18c7f38588e0c3b166dd265b738242cc.tar.gz
Instead, the O_NONBLOCK flag is set by PublicInbox::HTTPD::Async;
and we won't be setting it elsewhere.
Diffstat (limited to 't/spawn.t')
-rw-r--r--t/spawn.t11
1 files changed, 0 insertions, 11 deletions
diff --git a/t/spawn.t b/t/spawn.t
index 88404282..1d71b26d 100644
--- a/t/spawn.t
+++ b/t/spawn.t
@@ -81,17 +81,6 @@ use PublicInbox::Spawn qw(which spawn popen_rd);
         isnt($?, 0, '$? set properly: '.$?);
 }
 
-{
-        my ($fh, $pid) = popen_rd([qw(sleep 60)], undef, { Blocking => 0 });
-        ok(defined $pid && $pid > 0, 'returned pid when array requested');
-        is(kill(0, $pid), 1, 'child process is running');
-        ok(!defined(sysread($fh, my $buf, 1)) && $!{EAGAIN},
-           'sysread returned quickly with EAGAIN');
-        is(kill(9, $pid), 1, 'child process killed early');
-        is(waitpid($pid, 0), $pid, 'child process reapable');
-        isnt($?, 0, '$? set properly: '.$?);
-}
-
 SKIP: {
         eval {
                 require BSD::Resource;