diff options
author | Gerard Goossen <gerard@ggoossen.net> | 2010-06-23 16:26:58 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2010-06-23 16:36:33 +0100 |
commit | 8f443ca6a3a77930ce80210fd1c0e9ee627daa9e (patch) | |
tree | 4713608f8c457f2676ce99c22f137ff56c961c0f /t | |
parent | f1c7503b9028d20741c9a01345ba8704998ea381 (diff) | |
download | perl-8f443ca6a3a77930ce80210fd1c0e9ee627daa9e.tar.gz |
In S_sortcv_stacked(), handle @_ correctly. Fix for #72334.
Remove AvREAL from @_, and set AvALLOC when reallocating @_.
Diffstat (limited to 't')
-rw-r--r-- | t/op/sort.t | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/t/op/sort.t b/t/op/sort.t index 351a194e6f..88e07ea3cd 100644 --- a/t/op/sort.t +++ b/t/op/sort.t @@ -6,7 +6,7 @@ BEGIN { require 'test.pl'; } use warnings; -plan( tests => 151 ); +plan( tests => 153 ); # these shouldn't hang { @@ -843,3 +843,13 @@ is("@b", "1 2 3 3 4 5 7", "comparison result as string"); is("@sorted","1 2", 'overload sort result'); is($cs, 2, 'overload string called twice'); } + +fresh_perl_is('sub w ($$) {my ($l, my $r) = @_; my $v = \@_; undef @_; $l <=> $r}; print join q{ }, sort w 3, 1, 2, 0', + '0 1 2 3', + {stderr => 1, switches => ['-w']}, + 'RT #72334'); + +fresh_perl_is('sub w ($$) {my ($l, my $r) = @_; my $v = \@_; undef @_; @_ = 0..2; $l <=> $r}; print join q{ }, sort w 3, 1, 2, 0', + '0 1 2 3', + {stderr => 1, switches => ['-w']}, + 'RT #72334'); |