Skip to content
Gavin Fielder edited this page May 7, 2019 · 2 revisions
  • ./test help shows some help text and usage examples

The executable accepts the following as queries:

  • ./test mix runs all the enabled tests whose name starts with a string, in this case 'mix'
  • ./test "d_*prec" is a wildcard search; this one runs all the enabled tests that have start with 'd_' and have 'prec' in the name.
  • ./test 42 84 runs (enabled) test #42 through test #84
  • ./test 42 runs test #42 (also turns on debugger compatibility mode.)
  • ./test runs all the enabled tests
  • ./test -d [any of the above queries] runs the selected test(s) in debugger compatibility mode.

See Also