diff options
author | Hugo van der Sanden <hv@crypt.org> | 1999-02-18 18:51:38 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-02-20 00:34:01 +0000 |
commit | 0ef3e39ecdfec810eb60a7318e9f8475748553e2 (patch) | |
tree | caa332f234a93f6a05d9efe4b1405ae3e6c3970d /t/op/pat.t | |
parent | bb897dfcf82adc653513b0b92523fb44767a9837 (diff) | |
download | perl-0ef3e39ecdfec810eb60a7318e9f8475748553e2.tar.gz |
test failures with MIME-tools-4.122 and perl 5.005_55
Message-Id: <199902181851.SAA14018@crypt.compulink.co.uk>
p4raw-id: //depot/perl@2991
Diffstat (limited to 't/op/pat.t')
-rwxr-xr-x | t/op/pat.t | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/t/op/pat.t b/t/op/pat.t index b2c0e055fe..b6a3a3a240 100755 --- a/t/op/pat.t +++ b/t/op/pat.t @@ -4,7 +4,7 @@ # the format supported by op/regexp.t. If you want to add a test # that does fit that format, add it to op/re_tests, not here. -print "1..185\n"; +print "1..186\n"; BEGIN { chdir 't' if -d 't'; @@ -825,6 +825,10 @@ print "not " unless($1 eq 'de'); print "ok $test\n"; $test++; +print "not " unless $foo =~ /\Gef/g; +print "ok $test\n"; +$test++; + undef pos $foo; $foo=~/\G(..)/g; |