diff options
author | Nick Ing-Simmons <nik@tiuk.ti.com> | 2001-09-29 17:39:26 +0000 |
---|---|---|
committer | Nick Ing-Simmons <nik@tiuk.ti.com> | 2001-09-29 17:39:26 +0000 |
commit | bb407f0b8769c638c05e60ebfd157a1e676a6c22 (patch) | |
tree | 3998c4ab5a5846e6c7b7da02d7491365cee64497 /ext/File/Glob/t/basic.t | |
parent | 2d9c413a592b92ced9120b7198068f75580fdca9 (diff) | |
parent | 2d6b165414a36b2f7babc9ffdf83d659589dd9eb (diff) | |
download | perl-bb407f0b8769c638c05e60ebfd157a1e676a6c22.tar.gz |
Integrate mainline. Builds lots of sv.h/embed.h redef warnings
one test (lib/open.t) fails
p4raw-id: //depot/perlio@12268
Diffstat (limited to 'ext/File/Glob/t/basic.t')
-rwxr-xr-x | ext/File/Glob/t/basic.t | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/File/Glob/t/basic.t b/ext/File/Glob/t/basic.t index fe844b2b0d..65fa36a6b1 100755 --- a/ext/File/Glob/t/basic.t +++ b/ext/File/Glob/t/basic.t @@ -110,6 +110,7 @@ print "ok 7\n"; # Working on t/TEST often causes this test to fail because it sees Emacs temp # and RCS files. Filter them out, and .pm files too, and patch temp files. @a = grep !/(,v$|~$|\.(pm|ori?g|rej)$)/, @a; +@a = (grep !/test.pl/, @a) if $^O eq 'VMS'; print "# @a\n"; @@ -118,7 +119,7 @@ unless (@a == 3 and $a[1] eq 'a' and $a[2] eq 'b') { - print "not ok 8 # @a"; + print "not ok 8 # @a\n"; } else { print "ok 8\n"; } |