Skip to content

Commit

Permalink
remove PASM test (PIR already covered)
Browse files Browse the repository at this point in the history
  • Loading branch information
coke committed Apr 29, 2012
1 parent 3794663 commit cc90fce
Showing 1 changed file with 2 additions and 20 deletions.
22 changes: 2 additions & 20 deletions t/op/literal-old.t
Original file line number Original file line Diff line number Diff line change
@@ -1,11 +1,11 @@
#!perl #!perl
# Copyright (C) 2001-2005, Parrot Foundation. # Copyright (C) 2001-2012, Parrot Foundation.


use strict; use strict;
use warnings; use warnings;
use lib qw( . lib ../lib ../../lib ); use lib qw( . lib ../lib ../../lib );
use Test::More; use Test::More;
use Parrot::Test tests => 2; use Parrot::Test tests => 1;


=head1 NAME =head1 NAME
Expand All @@ -30,24 +30,6 @@ L<https://rt.perl.org/rt3/Ticket/Display.html?id=31197>
=cut =cut


pasm_output_is( <<'CODE', <<'OUTPUT', "integer literals in PASM" );
.pcc_sub :main main:
print 0x2A
print "\n"
print 0X2A
print "\n"
print 0b101010
print "\n"
print 0B101010
print "\n"
end
CODE
42
42
42
42
OUTPUT

pir_output_is( <<'CODE', <<'OUTPUT', "integer literals in PIR" ); pir_output_is( <<'CODE', <<'OUTPUT', "integer literals in PIR" );
.sub test :main .sub test :main
print 0x2A print 0x2A
Expand Down

0 comments on commit cc90fce

Please sign in to comment.