[svn:parrot] r45132 - in trunk/t: op pmc

mikehh at svn.parrot.org mikehh at svn.parrot.org
Tue Mar 23 17:09:14 UTC 2010


Author: mikehh
Date: Tue Mar 23 17:09:02 2010
New Revision: 45132
URL: https://trac.parrot.org/parrot/changeset/45132

Log:
convert .tailcall not thawed properly in testr from TODO to SKIP in 2 tests that are hanging

Modified:
   trunk/t/op/exceptions.t
   trunk/t/pmc/exception-old.t

Modified: trunk/t/op/exceptions.t
==============================================================================
--- trunk/t/op/exceptions.t	Tue Mar 23 14:46:21 2010	(r45131)
+++ trunk/t/op/exceptions.t	Tue Mar 23 17:09:02 2010	(r45132)
@@ -427,6 +427,14 @@
 my @todo = $ENV{TEST_PROG_ARGS} =~ /--run-pbc/
     ? ( todo => '.tailcall and lexical maps not thawed from PBC, TT #1172' )
     : ();
+#
+# this test is hanging in testr since pcc_hackathon_6Mar10 branch merge at r45108
+# converting to skip at the moment
+#
+
+SKIP: {
+    skip ".tailcall and lexical maps not thawed from PBC - hangs", 1 if @todo;
+
 pir_output_is( <<'CODE', <<'OUTPUT', "exit_handler via exit exception", @todo );
 .sub main :main
     .local pmc a
@@ -451,6 +459,8 @@
 a = 42
 OUTPUT
 
+}
+
 ## Regression test for r14697.  This probably won't be needed when PDD23 is
 ## fully implemented.
 pir_error_output_like( <<'CODE', <<'OUTPUT', "invoke handler in calling sub" );

Modified: trunk/t/pmc/exception-old.t
==============================================================================
--- trunk/t/pmc/exception-old.t	Tue Mar 23 14:46:21 2010	(r45131)
+++ trunk/t/pmc/exception-old.t	Tue Mar 23 17:09:02 2010	(r45132)
@@ -448,6 +448,14 @@
 my @todo = $ENV{TEST_PROG_ARGS} =~ /--run-pbc/
     ? ( todo => '.tailcall and lexical maps not thawed from PBC, TT #1172' )
     : ();
+#
+# this test is hanging in testr since pcc_hackathon_6Mar10 branch merge at r45108
+# converting to skip at the moment
+#
+
+SKIP: {
+    skip ".tailcall and lexical maps not thawed from PBC - hangs", 1 if @todo;
+
 pir_output_is( <<'CODE', <<'OUTPUT', "exit_handler via exit exception", @todo );
 .sub main :main
     .local pmc a
@@ -472,6 +480,8 @@
 a = 42
 OUTPUT
 
+}
+
 ## Regression test for r14697.  This probably won't be needed when PDD23 is
 ## fully implemented.
 pir_error_output_like( <<'CODE', <<'OUTPUT', "invoke handler in calling sub", todo => "deprecate rethrow" );


More information about the parrot-commits mailing list