diff options
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"; } |