diff options
author | Paul Green <Paul.Green@stratus.com> | 2002-01-19 06:20:00 -0500 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-01-19 16:11:09 +0000 |
commit | 29d78b18a588c463416aebe1a315afe3faf32d0c (patch) | |
tree | fe040392cc7a8d511a9c8c678bc49b7f9898ad54 /ext/File | |
parent | 2951361e9d8088090b6343434f93a11611bfa748 (diff) | |
download | perl-29d78b18a588c463416aebe1a315afe3faf32d0c.tar.gz |
ext/File/Glob/t/basic.t - VOS patch
Message-Id: <200201191619.LAA07751@mailhub2.stratus.com>
p4raw-id: //depot/perl@14344
Diffstat (limited to 'ext/File')
-rwxr-xr-x | ext/File/Glob/t/basic.t | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/ext/File/Glob/t/basic.t b/ext/File/Glob/t/basic.t index 2eb891b348..d7aeea4b05 100755 --- a/ext/File/Glob/t/basic.t +++ b/ext/File/Glob/t/basic.t @@ -92,9 +92,15 @@ else { #print "\@a = ", array(@a); rmdir $dir; if (scalar(@a) != 0 || GLOB_ERROR == 0) { - print "not "; + if ($^O eq 'vos') { + print "not ok 6 -- hit VOS bug posix-956\n"; + } else { + print "not ok 6\n"; + } + } + else { + print "ok 6\n"; } - print "ok 6\n"; } # check for csh style globbing |