| /edtt-latest/src/ |
| D | edttool.py | 79 def run_one_test(args, xtra_args, transport, trace, test_mod, test_spec, nameLen, packets): argument 80 trace.trace(4, test_spec); 82 if test_spec.number_devices > transport.n_devices: 84 (test_spec.number_devices, transport.n_devices)); 86 trace.btsnoop.send_user_data(0, BtsnoopPriority.INFO, test_spec.name) 87 result = test_mod.run_a_test(args, transport, trace, test_spec, packets); 88 …trace.trace(2, "%-*s %s %s" % (nameLen, test_spec.name, test_spec.description[1:], ("PASSED" if re… 89 …end_user_data(0, BtsnoopPriority.INFO, "%-*s %s %s" % (nameLen, test_spec.name, test_spec.descript… 110 for _,test_spec in tests_list: 111 …result = run_one_test(args, xtra_args, transport, trace, test_mod, test_spec, nameLen, Packets(dum…
|
| /edtt-latest/src/tests/ |
| D | echo_test.py | 5 from components.test_spec import TestSpec; 37 def run_a_test(args, transport, trace, test_spec): argument 38 return test_spec.test_private(transport, trace);
|
| D | le_transceiver_test.py | 8 from components.test_spec import TestSpec; 52 def run_a_test(args, transport, trace, test_spec): argument 53 return not test_spec.test_private(transport, trace);
|
| D | ll_multiple_connections.py | 10 from components.test_spec import TestSpec; 113 def run_a_test(args, transport, trace, test_spec): argument
|
| D | hci_verification.py | 18 from components.test_spec import TestSpec; 1128 def run_a_test(args, transport, trace, test_spec, device_dumps): argument 1135 …trace.trace(2, "%-*s %s test started..." % (_maxNameLength, test_spec.name, test_spec.description[… 1136 test_f = test_spec.test_private;
|
| D | ial_verification.py | 17 from components.test_spec import TestSpec 2357 def run_a_test(args, transport, trace, test_spec, device_dumps): argument 2364 …trace.trace(2, "%-*s %s test started..." % (_maxNameLength, test_spec.name, test_spec.description[… 2365 test_f = test_spec.test_private
|
| D | gap_verification.py | 19 from components.test_spec import TestSpec; 1923 def run_a_test(args, transport, trace, test_spec, device_dumps): argument 1930 …trace.trace(2, "%-*s %s test started..." % (_maxNameLength, test_spec.name, test_spec.description[… 1931 test_f = test_spec.test_private;
|
| D | gatt_verification.py | 24 from components.test_spec import TestSpec; 3208 def run_a_test(args, transport, trace, test_spec, device_dumps): argument 3215 …trace.trace(2, "%-*s %s test started..." % (_maxNameLength, test_spec.name, test_spec.description[… 3216 test_f = test_spec.test_private;
|
| D | ll_verification.py | 25 from components.test_spec import TestSpec; 9547 def run_a_test(args, transport, trace, test_spec, device_dumps): argument 9554 …trace.trace(2, "%-*s %s test started..." % (_maxNameLength, test_spec.name, test_spec.description[… 9557 test_f = test_spec.test_private; 9559 if test_spec.require_low_level_device and not transport.low_level_device:
|
| /edtt-latest/docs/ |
| D | EDTT_framework_Babblesim.md | 178 …ry of type TestSpec TestSpec is defined in the supporting Python module test_spec.py from componen…
|