]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/spawn.t
searchview: show full (&x=t) messages in ascending chronlogical order
[public-inbox.git] / t / spawn.t
index 9e58f675fe2a8fd140e7dd96982d1e639cbd674b..0f756462d02999831eff5307a87a8312acc419ca 100644 (file)
--- a/t/spawn.t
+++ b/t/spawn.t
@@ -87,7 +87,7 @@ use PublicInbox::Spawn qw(which spawn popen_rd);
        is(kill(0, $pid), 1, 'child process is running');
        ok(!defined(sysread($fh, my $buf, 1)) && $!{EAGAIN},
           'sysread returned quickly with EAGAIN');
-       is(kill(15, $pid), 1, 'child process killed early');
+       is(kill(9, $pid), 1, 'child process killed early');
        is(waitpid($pid, 0), $pid, 'child process reapable');
        isnt($?, 0, '$? set properly: '.$?);
 }