Index: build/make/targets/reg.test.run.xml =================================================================== --- build/make/targets/reg.test.run.xml (revision 513151) +++ build/make/targets/reg.test.run.xml (working copy) @@ -34,16 +34,34 @@ ===================================== - - - + + + + + + + + + + + + + + + - - + Index: src/test/regression/README.txt =================================================================== --- src/test/regression/README.txt (revision 513151) +++ src/test/regression/README.txt (working copy) @@ -110,6 +110,24 @@ > build reg.test -in build directory of DRLVM workspace. +in build directory of DRLVM workspace. This will execute all non-excluded +regression tests for your platform configuration. +Also by providing the value for 'check.regression' property you can choose +which particular regression tests to execute. +For example, to run only H1234 regression test type the following +on your command line: + > build -Dcheck.regression=H1234 reg.test + +To check for several regressions use coma or space separated list as a value for +the property. So the following command: + + > build -Dcheck.regression="H1234,H4321" reg.test + +will execute two regression tests - H1234 and H4321. + + Note: If some of the tests selected by check.regression property are in + ----- exclude list, they will be executed anyway. So you can use this property + to go around exclude lists. +