projects
/
platform
/
upstream
/
perl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3963d30
)
push and pop on barewords are deprecated, so need no warnings 'deprecated';
author
Nicholas Clark
<nick@ccl4.org>
Tue, 13 Oct 2009 14:36:14 +0000
(15:36 +0100)
committer
Jesse Vincent
<jesse@bestpractical.com>
Fri, 16 Oct 2009 16:30:16 +0000
(12:30 -0400)
t/op/push.t
patch
|
blob
|
history
diff --git
a/t/op/push.t
b/t/op/push.t
index
8b12e61
..
2024706
100644
(file)
--- a/
t/op/push.t
+++ b/
t/op/push.t
@@
-24,9
+24,15
@@
push(@x,4);
if (join(':',@x) eq '1:2:3:1:2:3:4') {print "ok 2\n";} else {print "not ok 2\n";}
# test for push/pop intuiting @ on array
-push(x,3);
+{
+ no warnings 'deprecated';
+ push(x,3);
+}
if (join(':',@x) eq '1:2:3:1:2:3:4:3') {print "ok 3\n";} else {print "not ok 3\n";}
-pop(x);
+{
+ no warnings 'deprecated';
+ pop(x);
+}
if (join(':',@x) eq '1:2:3:1:2:3:4') {print "ok 4\n";} else {print "not ok 4\n";}
$test = 5;