Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
various rakudo unfudges, most related to the list fixes by jnthn++
  • Loading branch information
moritz committed Nov 27, 2011
1 parent 5af9d23 commit a6ae871
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion S03-operators/repeat.t
Expand Up @@ -57,7 +57,6 @@ is($twin, 'LintillaLintilla', 'operator x= for string repeats correct');

{
my @array = (4, 2);
#?rakudo skip 'nom regression'
ok(@array xx= 2, 'operator xx= for list works');
is(@array[0], 4, 'operator xx= for list repeats correct');
#?rakudo todo 'nom regression'
Expand Down
1 change: 0 additions & 1 deletion S32-array/splice.t
Expand Up @@ -109,7 +109,6 @@ sub indirect_slurpy_context( *@got ) { @got };

# splice4 gets "CxtItem _" or "CxtArray _" instead of "CxtSlurpy _"
my @tmp = (1..10);
#?rakudo skip "infinite recursion bug"
{
@a = splice @tmp, 5, 3;
@a = indirect_slurpy_context( @a );
Expand Down
1 change: 0 additions & 1 deletion S32-array/unshift.t
Expand Up @@ -97,7 +97,6 @@ plan 56;
}

# now for the unshift() on an uninitialized array issue
#?rakudo skip "nom regression: shift_pmc() not implemented in class 'Mu'"
{
my @unshift;

Expand Down
1 change: 0 additions & 1 deletion S32-list/map.t
Expand Up @@ -98,7 +98,6 @@ should be equivalent to
=end pod

#?rakudo skip 'splice() not implemented in class Mu'
{
my @expected = ("foo","bar");
@expected = map { substr($_,1,1) }, @expected;
Expand Down
1 change: 0 additions & 1 deletion integration/99problems-21-to-30.t
Expand Up @@ -54,7 +54,6 @@ plan 15;
ok ?(all(@rand) ~~ any(@letters)), '... and they should be in the letters';
}

#?rakudo skip 'state vars'
{
my $compress = sub ($x) {
state $previous;
Expand Down

0 comments on commit a6ae871

Please sign in to comment.