Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision | |||
codebase:debugging [2024/09/28 22:52] – [Generate the state graph] fponzi | codebase:debugging [2024/10/18 20:18] (current) – fponzi | ||
---|---|---|---|
Line 37: | Line 37: | ||
</ | </ | ||
- | ====== CustomBuild parameters ====== | + | ===== More options |
- | + | Check [[codebase: | |
- | customBuild.xml supports different parameters to tune the tests. These can also be combined. | + | |
- | + | ||
- | ===== Running a test with a debugger ===== | + | |
- | + | ||
- | '' | + | |
- | + | ||
- | < | + | |
- | ant -f customBuild.xml compile-test test-set -Dtest.suspend=y -Dtest.testcases=" | + | |
- | </ | + | |
- | + | ||
- | ===== Specify number of threads ===== | + | |
- | + | ||
- | By default uses all your cores. You can specify a custom amount using '' | + | |
- | + | ||
- | < | + | |
- | ant -f customBuild.xml test -Dthreads=4 | + | |
- | </ | + | |
- | + | ||
- | ===== Halt tests when a failure is found ===== | + | |
- | + | ||
- | By default the test target will run all the test and report success or failure only at the end. It can be convinient to just stop execution as soon as an error is found, with'' | + | |
- | + | ||
- | < | + | |
- | ant -f customBuild.xml test -Dtest.halt=true | + | |
- | </ | + |