diff options
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 |