t/op/fork.t: Up the sleep time in a test to avoid timing issues
authorBrian Fraser <fraserbn@gmail.com>
Wed, 24 Apr 2013 22:08:21 +0000 (19:08 -0300)
committerBrian Fraser <fraserbn@gmail.com>
Sun, 26 Jan 2014 17:44:23 +0000 (14:44 -0300)
t/op/fork.t

index 60d2238..0d93f5f 100644 (file)
@@ -497,7 +497,7 @@ if (my $pid = fork) {
 }
 else {
     $SIG{TERM} = sub { print "2\n" };
-    sleep 3;
+    sleep 10;
     print "3\n";
 }
 EXPECT