Skip to content

Commit

Permalink
Skip the test as it apparently can also hang
Browse files Browse the repository at this point in the history
  • Loading branch information
lizmat committed Dec 5, 2014
1 parent 4b7c128 commit 8dd72c2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion integration/advent2014-day05.t
Expand Up @@ -18,6 +18,7 @@ plan 7;
'did we get the right string';
}

#?rakudo skip 'sometimes hangs, sometimes segfaults'
{
my $times = 100000;
my $a;
Expand All @@ -31,7 +32,7 @@ plan 7;
my @seen;
$s.act: { @seen.push: "Fizz" if $_ %% 3 }
$s.act: { @seen.push: "Buzz" if $_ %% 5 }
$s.act: { @seen.push: $_ unless $_ %% 3 || $_ %% 5 }
$s.act: { @seen.push: $_ unless $_%%3 || $_%%5 }
await do for 1..20 { start { rand.sleep; $s.emit($_) } }
is +@seen, 21, 'do we have right number of elements';
is @seen.sort,
Expand Down

0 comments on commit 8dd72c2

Please sign in to comment.