[svn:parrot] r39512 - trunk/t/op

jkeenan at svn.parrot.org jkeenan at svn.parrot.org
Thu Jun 11 23:42:56 UTC 2009


Author: jkeenan
Date: Thu Jun 11 23:42:54 2009
New Revision: 39512
URL: https://trac.parrot.org/parrot/changeset/39512

Log:
Change handling of 3 tests from SKIP to TODO.  Cf.:  https://trac.parrot.org/parrot/ticket/281?#comment21.

Modified:
   trunk/t/op/debuginfo.t

Modified: trunk/t/op/debuginfo.t
==============================================================================
--- trunk/t/op/debuginfo.t	Thu Jun 11 19:25:10 2009	(r39511)
+++ trunk/t/op/debuginfo.t	Thu Jun 11 23:42:54 2009	(r39512)
@@ -27,8 +27,10 @@
 my $nolineno = $ENV{TEST_PROG_ARGS} =~ /--runcore=(fast|cgoto)/
     ? "\\(unknown file\\)\n-1" : "debuginfo_\\d+\\.pasm\n\\d";
 
-SKIP: {
-skip "disabled on fast-core",1 if $ENV{TEST_PROG_ARGS} =~ /--runcore=(fast|cgoto)/;
+#SKIP: {
+#skip "disabled on fast-core",1 if $ENV{TEST_PROG_ARGS} =~ /--runcore=(fast|cgoto)/;
+TODO: {
+    local $TODO = q|Not yet passing on 'fast' or 'cgoto' runcores|;
 
 pasm_output_like( <<'CODE', <<"OUTPUT", "getline, getfile" );
 .pcc_sub main:
@@ -40,7 +42,8 @@
 CODE
 /$nolineno/
 OUTPUT
-}
+
+} # END TODO
 
 pir_error_output_like( <<'CODE', <<'OUTPUT', "debug backtrace - Null PMC access" );
 .sub main
@@ -167,8 +170,10 @@
 $nolineno = $ENV{TEST_PROG_ARGS} =~ /--runcore=fast/
     ? '\(\(unknown file\):-1\)' : '\(xyz.pir:126\)';
 
-SKIP: {
-skip "disabled on this core",2 if $ENV{TEST_PROG_ARGS} =~ /--runcore=(fast|cgoto|jit|switch)/;
+#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 'fast', 'cgoto', 'jit' or 'switch' runcores|;
 
 # See "RT #43269 and .annotate
 pir_error_output_like( <<'CODE', <<"OUTPUT", "setfile and setline" );
@@ -204,7 +209,7 @@
 /$nolineno/
 OUTPUT
 
-}
+} # END TODO
 
 # Local Variables:
 #   mode: cperl


More information about the parrot-commits mailing list