Running only certain parameterizations

Created by Yuval Shavit
Keywords:

To run only certain parameterizations (useful for debugging), just set the System property "test.params". For most strings, this will cause the runner to execute only the test whose name matches the test.params property exactly. If the property starts and ends with a slash ( / ), it will be interpreted as a Java regex. The runner will run any tests which have even a partial match against the regex (if you want a full match, just put in the ^ and $ anchors).

For example, say you had parameterizations named "foo", "bar" and "foobar":
- test.params="foo" would execute only "foo"
- test.params="/foo/" would execute "foo" and "foobar"
- test.params="/^foo$/" would execute only "foo"