[perl #116933] Glibc: double free or memory corruption crash running t/spec/S02-types/bool.t in Rakudo 2013.02.1-7-gb205e66

2013-02-25 Thread via RT
# New Ticket Created by Ira Byerly # Please include the string: [perl #116933] # in the subject line of all future correspondence about this issue. # https://rt.perl.org:443/rt3/Ticket/Display.html?id=116933 > Script started on Mon 25 Feb 2013 08:40:18 PM HST $ $ $ $ perl6 -v This is perl6

Re: [perl #116897] while (...splice...) runs forever

2013-02-25 Thread Patrick R. Michaud via RT
On Thu, Feb 21, 2013 at 09:07:44AM -0800, Ricardo SIGNES wrote: > This program never terminates: > > use v6; > > my @a = << >>; > while (my @c = splice @a, 0, 3) { > say "one more"; > } After each splice, @c ends up being @(Any, Any, Any). I'm not sure if this is correct; I can see

Re: [perl #116897] while (...splice...) runs forever

2013-02-25 Thread Patrick R. Michaud
On Thu, Feb 21, 2013 at 09:07:44AM -0800, Ricardo SIGNES wrote: > This program never terminates: > > use v6; > > my @a = << >>; > while (my @c = splice @a, 0, 3) { > say "one more"; > } After each splice, @c ends up being @(Any, Any, Any). I'm not sure if this is correct; I can see

[perl #116897] while (...splice...) runs forever

2013-02-25 Thread via RT
# New Ticket Created by Ricardo SIGNES # Please include the string: [perl #116897] # in the subject line of all future correspondence about this issue. # https://rt.perl.org:443/rt3/Ticket/Display.html?id=116897 > This program never terminates: use v6; my @a = << >>; while (my @c =