Skip to content

Commit

Permalink
start to fudge int.t for rakudo; segfaults after 67 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
moritz committed Jul 6, 2011
1 parent 77bbd5b commit 649b3a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions S03-operators/eqv.t
Expand Up @@ -45,6 +45,7 @@ plan 53;
ok \@a eqv \@b, '\@array of two bound arrays are eqv';
}

#?rakudo skip 'backslashes'
{
my $a = \3;
my $b = \3;
Expand Down
1 change: 1 addition & 0 deletions S32-num/int.t
Expand Up @@ -77,6 +77,7 @@ ok 42.Bool, "42.Bool is true";
isa_ok 42.Bool, Bool, "42.Bool is Bool";

is('-1.999'.Int, -1, "int('-1.999') is -1");
#?rakudo 4 todo 'smart numification'
is('0x123'.Int, 0x123, "int('0x123') is 0x123");
is('0d456'.Int, 0d456, "int('0d456') is 0d456");
is('0o678'.Int, 0o67, "int('0o678') is 0o67");
Expand Down

0 comments on commit 649b3a7

Please sign in to comment.