Autoflush in tests as appropriate
[p5sagit/p5-mst-13.2.git] / t / op / die_exit.t
index 7808d9d..f758f9c 100755 (executable)
@@ -7,8 +7,16 @@
 
 BEGIN {
     chdir 't' if -d 't';
-    unshift @INC, '../lib' if -e '../lib';
+    @INC = '../lib';
 }
+
+if ($^O eq 'mpeix') {
+    print "1..0 # Skip: broken on MPE/iX\n";
+    exit 0;
+}
+
+$| = 1;
+
 my $perl = -e '../perl' ? '../perl' : -e './perl' ? './perl' : 'perl';
 
 use strict;