*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Mon, 01 Aug 2011 10:29:52 +0200
changeset 8 7a691ced6334
parent 7 dbf69a604f15
child 9 99d5004cb28f
*** empty log message ***
quickSelfTest/SelfTest.st
--- a/quickSelfTest/SelfTest.st	Mon Aug 01 09:46:36 2011 +0200
+++ b/quickSelfTest/SelfTest.st	Mon Aug 01 10:29:52 2011 +0200
@@ -1,10 +1,10 @@
 "/
 "/ execute this script using the following command line:
 "/
-"/ stx -nobanner -I --quick --execute SelfTest.st
+"/ stx --noBanner -I --execute SelfTest.st
 "/
 "/ to use with jenkins (+ perfPublisher plugin):
-"/ use the following buildscript:
+"/ use the following buildscript (in jenkins):
 "/ (after checkout of stx)
 "/      cd stx
 "/      call bmake
@@ -44,13 +44,12 @@
 suite addTest:(RegressionTests::EnumerationTests suite).
 suite addTest:(RegressionTests::ExceptionTest suite).
 
-result := suite runBeforeEachDo:[:test | Stdout << ('running ',test printString). Stdout cr ].
-TestResultReporter report:result format:#xml_perfPublisher as:'testresult.xml'.
-
-"/Autoload allSubclassesDo:[:cls |
-"/    cls package = 'exept:regression' ifTrue:[
-"/        Stdout << cls name; cr.
-"/        cls runTests.
-"/    ].
-"/].
+result := suite
+	    runBeforeEachDo:[:test |
+		Stdout << ('running ',test printString). Stdout cr
+	    ].
+TestResultReporter
+    report:result
+    format:#xml_perfPublisher
+    as:'testresult.xml'.
 !