MCPcopy Create free account
hub / github.com/F-Stack/f-stack / get_fast_test_params

Function get_fast_test_params

dpdk/buildtools/get-test-suites.py:17–21  ·  view source on GitHub ↗

Extract the extra fast-test parameters from the line

(test_name, ln)

Source from the content-addressed store, hash-verified

15non_suite_tests = []
16
17def get_fast_test_params(test_name, ln):
18 "Extract the extra fast-test parameters from the line"
19 (_, rest_of_line) = ln.split(test_name, 1)
20 (_, nohuge, asan, _func) = rest_of_line.split(',', 3)
21 return f":{nohuge.strip().lower()}:{asan.strip().lower()}"
22
23for fname in input_list:
24 with open(fname, "r", encoding="utf-8") as f:

Callers 1

get-test-suites.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected