*** empty log message ***
authorsr
Thu, 12 Oct 2017 13:04:36 +0200
changeset 425 1378afa7824b
parent 424 a96e3e463c10
child 426 537fcbdbd712
*** empty log message ***
quickSelfTest/RunUnitTests.st
--- a/quickSelfTest/RunUnitTests.st	Thu Oct 12 11:34:50 2017 +0200
+++ b/quickSelfTest/RunUnitTests.st	Thu Oct 12 13:04:36 2017 +0200
@@ -49,6 +49,17 @@
     corruptedUnitTestClassNames := self corruptedUnitTestClassNames.
 
     cmdArgs := Smalltalk commandLineArguments.
+    (cmdArgs includesAny:#('--help' '/?')) ifTrue:[
+	Stdout showCR:'--help............................this infromation'.
+	Stdout showCR:'--settingsFile....................path to a stx settings file (may to set compiler options)'.
+	Stdout showCR:'--runOnlyExpeccoUnitTests.........run only expecco related test cases'.
+	Stdout showCR:'--resultFile......................path to a file for storing the result as xml'.
+	Stdout showCR:'--forceTestCase...................class name of a test case (only this test case will be executed)'.
+
+	Smalltalk exit.
+    ].
+
+
     index := cmdArgs indexOf:'--settingsFile'.
     index > 0 ifTrue:[
 	settingsFilePathName := cmdArgs at:index + 1.