Change the internal implementation of sort() to be mergesort
[p5sagit/p5-mst-13.2.git] / t / op / fork.t
index beb64f9..93cf673 100755 (executable)
@@ -4,7 +4,7 @@
 
 BEGIN {
     chdir 't' if -d 't';
-    unshift @INC, '../lib';
+    @INC = '../lib';
     require Config; import Config;
     unless ($Config{'d_fork'}
            or ($^O eq 'MSWin32' and $Config{useithreads}
@@ -375,6 +375,7 @@ EXPECT
 pipe_from_fork
 pipe_to_fork
 ########
+$|=1;
 if ($pid = fork()) {
     print "forked first kid\n";
     print "waitpid() returned ok\n" if waitpid($pid,0) == $pid;