Skip to content

Commit

Permalink
Remove more parrot stuff from the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
moritz committed Jul 24, 2016
1 parent 3dd70d9 commit f467e3a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion t/hll/06-sprintf.t
@@ -1,6 +1,6 @@
#! nqp

# sprintf. This file will be moved to t/hll once it handles everything that parrot's sprintf can.
# sprintf. This file will be moved to t/hll once it handles everything that vm-level sprintf can.

my $die_message := 'unset';

Expand Down
4 changes: 2 additions & 2 deletions t/serialization/01-basic.t
Expand Up @@ -462,9 +462,9 @@ sub round_trip_int_array($seq, $desc, @a) {

while ($i < 63) {
my $backend := nqp::getcomp('nqp').backend.name;
if $i >= 31 && ($backend eq 'parrot' || $backend eq 'js')
if $i >= 31 && $backend eq 'js'
&& nqp::backendconfig(){"intvalsize"} < 8 {
todo("native NQP ints are only 32 bit on 32 bit parrot :-(", 1);
todo("native NQP ints are only 32 bit on js :-(", 1);
# Sadly this also means that the rest of the tests for these sizes
# are (effectively) meaningless, because $b is 0, and 0 + 0 is still
# 0. However, they don't fail, because 0 - 4 to 0 + 2 serialise just
Expand Down

0 comments on commit f467e3a

Please sign in to comment.