# HG changeset patch # User Jan Vrany # Date 1392218117 -3600 # Node ID 9e0098682d8c825fa48854cc68bb75ea25eb4ce2 # Parent 4bdbefcf84a878a47bee8d7d9a5e37784e7bc53a 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) diff -r 4bdbefcf84a8 -r 9e0098682d8c 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 " + "Modified: / 12-02-2014 / 15:13:31 / Jan Vrany " ! ! !ReportRunner class methodsFor:'documentation'!