Lines Matching refs:run
4 This directory contains testing infrastructure and test cases to run
28 These test cases are run automatically against the hostap.git commits
53 Alternatively, the build.sh script here can be used to run these steps
76 control interface, but the run-tests.py script adds the (relative)
95 scripts are currently using sudo to achieve this. To be able to run the
116 run-tests.py to allow other names to be used.
132 Simplest way to run a full set of the test cases is by running
133 run-all.sh in tests/hwsim directory. This will use start.sh to load the
135 test tools. run-tests.sh is then used to run through all the defined
139 run-all.sh can be used to run the same test cases under different
142 # run normal test cases
143 ./run-all.sh
145 # run normal test cases under valgrind
146 ./run-all.sh valgrind
148 # run normal test cases with Linux tracing
149 ./run-all.sh trace
151 # run normal test cases with multi channel support (see details below)
152 ./run-all.sh channels=<num of channels>
154 run-all.sh directs debug logs into the logs subdirectory (or $LOGDIR if
170 programs and run-tests.py to execute one or more test
171 cases. run-tests.py output verbosity can be controlled with -d (more
175 run. Test name as the last command line argument can be specified that a
176 single test case is to be run (e.g., "./run-tests.py ap_pmf_required").
179 operation on multi channels in order to run. These tests will be skipped
182 argument to run-all.sh or start.sh
194 new test, run-tests.py with -d and the test case name on the command
197 run-tests.py will automatically import all test cases from the test_*.py
206 run-tests.py can be requested to write results from the execution of
212 CREATE TABLE results (test,result,run,time,duration,build,commitid);
214 CREATE INDEX results_idx2 ON results (run);
217 CREATE TABLE logs (test,run,type,contents);
219 CREATE INDEX logs_idx2 ON logs (run);