Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
codebase:debugging [2024/09/28 15:58] – created - external edit 127.0.0.1 | codebase:debugging [2024/10/18 20:18] (current) – fponzi | ||
---|---|---|---|
Line 11: | Line 11: | ||
===== Generate the state graph ===== | ===== Generate the state graph ===== | ||
- | See [[../using/ | + | See [[using: |
===== Run your spec with assertion turned on. ===== | ===== Run your spec with assertion turned on. ===== | ||
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 | + | |
- | </ | + |