summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorCraig A. Berry <craigberry@mac.com>2006-01-14 16:45:56 +0000
committerCraig A. Berry <craigberry@mac.com>2006-01-14 16:45:56 +0000
commit0af9e25736af1db45f911cff46a82e83dcb84a83 (patch)
tree0aee90c467d1af4785a6d19770be170b9ceb6506 /t
parentff4d71b57bb83cfac46282a097123c6ae517cd8f (diff)
downloadperl-0af9e25736af1db45f911cff46a82e83dcb84a83.tar.gz
Give up on through.t on VMS for now -- no can do with current
pipe implementation. p4raw-id: //depot/perl@26857
Diffstat (limited to 't')
-rw-r--r--t/io/through.t4
1 files changed, 4 insertions, 0 deletions
diff --git a/t/io/through.t b/t/io/through.t
index 9c8a627f9d..60c75c9921 100644
--- a/t/io/through.t
+++ b/t/io/through.t
@@ -1,6 +1,10 @@
#!./perl
BEGIN {
+ if ($^O eq 'VMS') {
+ print "1..0 # Skip on VMS -- too picky about line endings for record-oriented pipes\n";
+ exit;
+ }
chdir 't' if -d 't';
@INC = '../lib';
}