[svn:parrot] r42020 - trunk/t/op
mikehh at svn.parrot.org
mikehh at svn.parrot.org
Thu Oct 22 12:35:07 UTC 2009
Author: mikehh
Date: Thu Oct 22 12:35:07 2009
New Revision: 42020
URL: https://trac.parrot.org/parrot/changeset/42020
Log:
remove TODOs - test now passes on all runcores
Modified:
trunk/t/op/debuginfo.t
Modified: trunk/t/op/debuginfo.t
==============================================================================
--- trunk/t/op/debuginfo.t Thu Oct 22 12:16:38 2009 (r42019)
+++ trunk/t/op/debuginfo.t Thu Oct 22 12:35:07 2009 (r42020)
@@ -163,15 +163,9 @@
called from Sub 'main' pc (\d+|-1) \(.*?:(\d+|-1)\)$/
OUTPUT
-$nolineno = $ENV{TEST_PROG_ARGS} =~ /--runcore=fast/
+$nolineno = $ENV{TEST_PROG_ARGS} =~ /--runcore=(fast|cgoto)/
? '\(\(unknown file\):-1\)' : '\(xyz.pir:126\)';
-#SKIP: {
-#skip "disabled on this core",2 if $ENV{TEST_PROG_ARGS} =~ /--runcore=(fast|cgoto|jit|switch)/;
-TODO: {
- local $TODO = q|Not yet passing on 'cgoto', 'jit' or 'switch' runcores|
- if $ENV{TEST_PROG_ARGS} =~ /--runcore=(cgoto|jit|switch)/;
-
# See "RT #43269 and .annotate
pir_error_output_like( <<'CODE', <<"OUTPUT", "setfile and setline" );
.sub main :main
@@ -185,13 +179,7 @@
/$nolineno/
OUTPUT
-} # END TODO
-
-TODO: {
- local $TODO = q|Not yet passing on 'jit' or 'switch' runcores|
- if $ENV{TEST_PROG_ARGS} =~ /--runcore=(jit|switch)/;
-
-$nolineno = $ENV{TEST_PROG_ARGS} =~ /--runcore=(fast|cgoto|jit|switch)/
+$nolineno = $ENV{TEST_PROG_ARGS} =~ /--runcore=(fast|cgoto)/
? '\(\(unknown file\):-1\)' : '\(foo.p6:128\)';
# See "RT #43269 and .annotate
pir_error_output_like( <<'CODE', <<"OUTPUT", "setfile and setline" );
@@ -212,8 +200,6 @@
/$nolineno/
OUTPUT
-} # END TODO
-
# Local Variables:
# mode: cperl
# cperl-indent-level: 4
More information about the parrot-commits
mailing list