summaryrefslogtreecommitdiffstats
path: root/contrib/perl5/t/op/pat.t
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/perl5/t/op/pat.t')
-rwxr-xr-xcontrib/perl5/t/op/pat.t7
1 files changed, 6 insertions, 1 deletions
diff --git a/contrib/perl5/t/op/pat.t b/contrib/perl5/t/op/pat.t
index 7d4278f..ed8c778 100755
--- a/contrib/perl5/t/op/pat.t
+++ b/contrib/perl5/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..141\n";
+print "1..142\n";
BEGIN {
chdir 't' if -d 't';
@@ -595,3 +595,8 @@ print "not " if @_;
print "ok $test\n";
$test++;
+# see if matching against temporaries (created via pp_helem()) is safe
+{ foo => "ok $test\n".$^X }->{foo} =~ /^(.*)\n/g;
+print "$1\n";
+$test++;
+
OpenPOWER on IntegriCloud