Skip to content

Commit

Permalink
remove broken PASM test
Browse files Browse the repository at this point in the history
  • Loading branch information
moritz committed Apr 30, 2012
1 parent 2d0694e commit 0a63661
Showing 1 changed file with 1 addition and 32 deletions.
33 changes: 1 addition & 32 deletions t/pmc/object-meths.t
Expand Up @@ -5,7 +5,7 @@ use strict;
use warnings;
use lib qw( . lib ../lib ../../lib );
use Test::More;
use Parrot::Test tests => 39;
use Parrot::Test tests => 38;

=head1 NAME
Expand Down Expand Up @@ -386,37 +386,6 @@ A::blah
B::foo
OUTPUT

SKIP: {
skip( "currently broken", 1 );
pasm_output_is( <<'CODE', <<'OUTPUT', "exceptions and different runloops" );
.pcc_sub :main main:
_main:
push_eh eh
newclass P0, "Foo"
print "new\n"
new P2, ['Foo']
eh:
print "back in main\n"
end
.namespace ["Foo"]
.pcc_sub __init:
print "in __init\n"
# raise an exception
callmethodcc self, "qux"
print "never\n"
returncc
CODE
new
in __init
back in main
OUTPUT
}

pir_output_is( <<'CODE', <<'OUTPUT', "find_method" );
.sub main :main
$P3 = newclass "Foo"
Expand Down

0 comments on commit 0a63661

Please sign in to comment.