summaryrefslogtreecommitdiff
path: root/t/op/die_exit.t
diff options
context:
space:
mode:
Diffstat (limited to 't/op/die_exit.t')
-rwxr-xr-xt/op/die_exit.t6
1 files changed, 6 insertions, 0 deletions
diff --git a/t/op/die_exit.t b/t/op/die_exit.t
index 7808d9d7c5..cb0478b9b2 100755
--- a/t/op/die_exit.t
+++ b/t/op/die_exit.t
@@ -9,6 +9,12 @@ BEGIN {
chdir 't' if -d 't';
unshift @INC, '../lib' if -e '../lib';
}
+
+if ($^O eq 'mpeix') {
+ print "1..0 # Skip: broken on MPE/iX\n";
+ exit 0;
+}
+
my $perl = -e '../perl' ? '../perl' : -e './perl' ? './perl' : 'perl';
use strict;