Fix in Builder::ReportRunner>>#main:
authorJan Vrany <jan.vrany@fit.cvut.cz>
Wed, 12 Feb 2014 16:15:17 +0100
changeset 230 9e0098682d8c
parent 229 4bdbefcf84a8
child 231 9551cb7cfe38
Fix in Builder::ReportRunner>>#main: Install emergency handler (aborting) when running tests (for tests that spawn processes - will be replaced by SUnit XProcPatterns in future)
reports/Builder__ReportRunner.st
--- a/reports/Builder__ReportRunner.st	Tue Feb 11 16:54:13 2014 +0100
+++ b/reports/Builder__ReportRunner.st	Wed Feb 12 16:15:17 2014 +0100
@@ -343,6 +343,10 @@
         ]
     ].
 
+    debugging ifFalse:[ 
+        NoHandlerError emergencyHandler:(NoHandlerError abortingEmergencyHandler)
+    ].
+
     [
         setup notNil ifTrue:[Compiler evaluate: setup].
         [
@@ -367,7 +371,7 @@
         ]
     ]
 
-    "Modified: / 22-01-2014 / 10:01:35 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 12-02-2014 / 15:13:31 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !ReportRunner class methodsFor:'documentation'!