From: Jarkko Hietaniemi Date: Sat, 30 Dec 2000 20:15:46 +0000 (+0000) Subject: Add a test case for 20000731.001 which was fixed by the #8267. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b91bb1919d51f97d154a1292cac13a1895baa54b;p=p5sagit%2Fp5-mst-13.2.git Add a test case for 20000731.001 which was fixed by the #8267. p4raw-id: //depot/perl@8273 --- diff --git a/t/op/pat.t b/t/op/pat.t index aaec39d..f9f33eb 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..230\n"; +print "1..233\n"; BEGIN { chdir 't' if -d 't'; @@ -1122,3 +1122,10 @@ $test++; print "not " unless undef =~ /^([^\/]*)(.*)$/; print "ok $test\n"; $test++; + +# bugid 20000731.001 + +print "not " unless "A \x{263a} B z C" =~ /A . B (??{ "z" }) C/; +print "ok $test\n"; +$test++; +