summaryrefslogtreecommitdiff
path: root/ext/Safe
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2008-01-29 10:59:14 +0000
committerNicholas Clark <nick@ccl4.org>2008-01-29 10:59:14 +0000
commitc3c3bebb639496b8bdce5d7c639ea5632d85fc99 (patch)
tree5e605b85c78939225f1677266751686df92519a5 /ext/Safe
parente3176d09175983fa5c9fa7bc6d286b6349cbc891 (diff)
downloadperl-c3c3bebb639496b8bdce5d7c639ea5632d85fc99.tar.gz
Document why ok() is being used instead of like(), to stop someone
undoing it. p4raw-id: //depot/perl@33105
Diffstat (limited to 'ext/Safe')
-rw-r--r--ext/Safe/t/safe3.t2
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/Safe/t/safe3.t b/ext/Safe/t/safe3.t
index 73c6323bce..c809f27b9c 100644
--- a/ext/Safe/t/safe3.t
+++ b/ext/Safe/t/safe3.t
@@ -30,6 +30,7 @@ $safe->reval( qq{\$_[1] = qq/\0/ x } . $masksize );
# Check that it didn't work
$safe->reval( q{$x + $y} );
+# Written this way to keep the Test::More that comes with perl 5.6.2 happy
ok( $@ =~ /^'?addition \(\+\)'? trapped by operation mask/,
'opmask still in place with reval' );
@@ -43,6 +44,7 @@ EOF
close $fh;
$safe2->rdo('nasty.pl');
$safe2->reval( q{$x + $y} );
+# Written this way to keep the Test::More that comes with perl 5.6.2 happy
ok( $@ =~ /^'?addition \(\+\)'? trapped by operation mask/,
'opmask still in place with rdo' );
END { unlink 'nasty.pl' }