projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
aa6341c
)
Silence a warning emitted by test added by last commit
Rafael Garcia-Suarez [Sun, 31 May 2009 14:30:59 +0000 (16:30 +0200)]
t/op/sort.t
patch
|
blob
|
blame
|
history
diff --git
a/t/op/sort.t
b/t/op/sort.t
index
7c2098f
..
4473c32
100755
(executable)
--- a/
t/op/sort.t
+++ b/
t/op/sort.t
@@
-396,6
+396,7
@@
sub ok { main::cmp_ok($_[0],'eq',$_[1],$_[2]);
ok "@a", "c b a x", "un-inplace sort with function of lexical 2";
# RT#54758. Git 62b40d2474e7487e6909e1872b6bccdf812c6818
+ no warnings 'void';
my @m; push @m, 0 for 1 .. 1024; $#m; @m = sort @m;
main::pass("in-place sorting segfault");
}