# HG changeset patch # User Claus Gittinger # Date 1312187392 -7200 # Node ID 7a691ced6334f3c498c3136201bb518c81700785 # Parent dbf69a604f15f6ba505009562a2b2dcc212c38d4 *** empty log message *** diff -r dbf69a604f15 -r 7a691ced6334 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'. !