[svn:parrot] r36528 - trunk/t/pmc

NotFound at svn.parrot.org NotFound at svn.parrot.org
Tue Feb 10 04:09:42 UTC 2009


Author: NotFound
Date: Tue Feb 10 04:09:41 2009
New Revision: 36528
URL: https://trac.parrot.org/parrot/changeset/36528

Log:
[test] fixed an untodoed a exceptionhandler test, TT #154

Modified:
   trunk/t/pmc/exceptionhandler.t

Modified: trunk/t/pmc/exceptionhandler.t
==============================================================================
--- trunk/t/pmc/exceptionhandler.t	Tue Feb 10 04:09:16 2009	(r36527)
+++ trunk/t/pmc/exceptionhandler.t	Tue Feb 10 04:09:41 2009	(r36528)
@@ -123,7 +123,7 @@
     push_eh outcatch
     $I0 = subclass_handler_catches(myhandler)
   outcatch:
-    todo($I0, 'Exception Handler subclass catch exception')
+    ok($I0, 'Exception Handler subclass catch exception')
 .end
 
 .sub subclass_exception_handler
@@ -178,9 +178,11 @@
     throw $P0
 
   subclassed_failed:
+    .get_results($P0)
     .return(0)
 
   subclassed_handler:
+    .get_results($P0)
     .return(1)
 .end
 
@@ -200,9 +202,11 @@
     throw $P0
 
   subclassed_failed:
+    .get_results($P0)
     .return(0)
 
   subclassed_handler:
+    .get_results($P0)
     .return(1)
 .end
 


More information about the parrot-commits mailing list