• Home
Name Date Size #Lines LOC

..--

cts-template/12-May-2024-101,13390,283

generator/12-May-2024-746492

runner/12-May-2024-1,011741

CMakeLists.txtD12-May-20247.9 KiB193166

README.mdD12-May-20245 KiB163120

generate-cts.rbD12-May-20242.3 KiB8048

test-runner.rbD12-May-202410.2 KiB309247

verifier.debug.configD12-May-2024678 3938

README.md

1# Test generator and test runner tools
2
3
4##
5
6Tests are being generated during building.
7
8* `CTS_TEST_SELECT_OPTION` - options, passed to test-runner.rb.
9Useful for defining `--exclude-tag` and `--include-tag` options.
10* `PANDA_CTS_JOBS_NUMBER` - amount of parallel jobs for test execution. Default is 8.
11
12## Test generator
13
14Options:
15
16```
17Usage: generate-cts.rb [options]
18    -t, --template FILE              Path to template yaml file to generate tests (required)
19    -s, --schema FILE                Path to json schema for template yaml (required)
20    -k, --skip                       Skip yaml schema validation
21    -o, --output DIR                 Path to directory where tests will be generated (required)
22    -h, --help                       Prints this help
23```
24
25Usage example:
26
27```
28 ${PANDA_SRC_ROOT}/tests/cts-generator/generate-cts.rb \
29   -t ${PANDA_SRC_ROOT}/tests/cts-generator/cts-template/template.yaml \
30   -s ${PANDA_SRC_ROOT}/tests/cts-generator/cts-template/yaml-schema.json \
31   -o cts-generated
32```
33
34This command will generate CTS tests using provided template file. Template is validated using schema file.
35
36## Test runner
37
38Options:
39
40```
41Usage: test-runner.rb [options]
42    -p, --panda-build DIR            Path to panda build directory (required)
43    -t, --test-dir DIR               Path to test directory to search tests recursively, or path to single test (required)
44    -v, --verbose LEVEL              Set verbose level 1..5
45        --timeout SECONDS            Set process timeout
46        --global-timeout SECONDS     Set testing timeout, default is 0 (ulimited)
47    -a, --run-all                    Run all tests, ignore "runner-option: ignore" tag in test definition
48        --run-ignored                Run ignored tests, which have "runner-option: ignore" tag in test definition
49    -e, --exclude-tag TAG            Exclude tags for tests
50    -o, --panda-options OPTION       Panda options
51    -i, --include-tag TAG            Include tags for tests
52    -b, --bug_id BUGID               Include tests with specified bug ids
53    -j, --jobs N                     Amount of concurrent jobs for test execution (default 8)
54    --prlimit='OPTS'                 Run panda via prlimit with options
55    --verifier-debug-config PATH     Path to verifier debug config file. By default, internal embedded verifier debug config is used.
56
57    -H, --host-toolspath PATH        Directory with host-tools
58
59    -h, --help                       Prints this help
60```
61
62Usage example:
63
64```
65${PANDA_SRC_ROOT}/tests/cts-generator/test-runner.rb
66   -t cts-generated \
67   -p ${PANDA_BUILD_ROOT} \
68   -e release -e debug \
69   -i clang_release_sanitizer,wrong-tag
70```
71
72This command will start all tests in `cts-generated` directory. Tests which have runner options `ignore` will be ignored.
73Tests that have `release` and `clang_release_sanitizer` will be excluded.
74
75To run all tests, add `-a` options.
76
77To run only tests with `ignore` runner option, add `--run-ignored` options.
78
79## Tips
80
81### How to specify options for cmake cts-generator target?
82
83`CTS_TEST_SELECT_OPTION` variable can be used.
84
85```
86cmake -DCTS_TEST_SELECT_OPTION="-b 1316 -a" ../panda
87```
88
89Run all tests marked with bugid 1316.
90
91### How to generate all test not using cmake/make?
92
93```
94cd ${ROOT_PATH}/tests/cts-generator
95./generate-cts.rb \
96   -t ./cts-template/template.yaml \
97   -s ./cts-template/yaml-schema.json \
98   -o cts-generated
99```
100
101### How to run all tests?
102
103All test can be executed using `make cts-generated` command, test with `ignore` runner options will be ignored by test runner.
104If you want to run all tests, you can do the following:
105
106```
107cmake ${ROOT_PATH} -DCTS_TEST_SELECT_OPTION="--run-all"
108make cts-generator
109```
110
111Also you can start test-runner.rb directly:
112
113```
114cd ${BUILD_DIR}/tests/cts-generator
115./test-runner.rb
116  -p ${BUILD_DIR} \
117  -t ./cts-generated/ \
118  -v 2 -j 8 \
119  -i release \
120  -e clang_release_sanitizer
121```
122
123Tests with `release` tag will be included to test execution, with `clang_release_sanitizer` will be excluded.
124
125### How to run test with specified bug id runner-option?
126
127Example:
128```
129test-runner.rb \
130  -t ./cts-generated/ \
131  -p ${BUILD_DIR} \
132  -b 977 \
133  -v 2 \
134  -a
135```
136
137Please note that `-a` options (`--run-all`) is defined, otherwise tests will be excluded, if they have `ignore` runner option.
138
139### How to run panda via prlimit?
140
141Example:
142```
143test-runner.rb \
144  -t ./cts-generated/ \
145  -p ${BUILD_DIR} \
146  --prlimit='--stack=8000000:8000000 --nproc=512'
147```
148
149
150### What should I do with failed/passed tests after bug-fixing?
151
1521. Run all tests using regular build or using `tests` or `cts-geerator` targets.
1532. Run tests related to bug.
154    ```
155    cmake -DCTS_TEST_SELECT_OPTION="-b 1316 -a" ../panda
156    make cts-generator
157    ```
1583. If all test passed, congrats! Now you can enable tests for regular
159execution. Update all tests that have `bugid: [number]` and `ignore: true` - remove bugid relation and `ignore` tag
160to allow test runner to execute test.
161
1624. If some tests failed, you can update them, if there are problems with tests. If tests are correct, continue with bugfixing and repeat all steps.
163