summaryrefslogtreecommitdiff
path: root/dist/Carp
diff options
context:
space:
mode:
authorCraig A. Berry <craigberry@mac.com>2018-03-08 07:50:33 -0600
committerCraig A. Berry <craigberry@mac.com>2018-03-08 07:50:33 -0600
commit27484e0e6e695cabec847a8d0ffcb71431ca6f11 (patch)
treefc3e5837b3f98b7958410c7dfd6451a303e03780 /dist/Carp
parent823ba440369100de3f2693420a3887a645a57d28 (diff)
downloadperl-27484e0e6e695cabec847a8d0ffcb71431ca6f11.tar.gz
Don't run stack_after_err.t on VMS.
It uses IPC::Open3, which uses fork(), which doesn't exist.
Diffstat (limited to 'dist/Carp')
-rw-r--r--dist/Carp/t/stack_after_err.t8
1 files changed, 6 insertions, 2 deletions
diff --git a/dist/Carp/t/stack_after_err.t b/dist/Carp/t/stack_after_err.t
index 0e7a30acbc..57dbc233d1 100644
--- a/dist/Carp/t/stack_after_err.t
+++ b/dist/Carp/t/stack_after_err.t
@@ -3,8 +3,12 @@ use warnings;
use Config;
use IPC::Open3 1.0103 qw(open3);
-
-
+BEGIN {
+ if ($^O eq 'VMS') {
+ print "1..0 # IPC::Open3 needs porting\n";
+ exit;
+ }
+}
my @tests=(
# Make sure we don’t try to load modules on demand in the presence of over-