Home
last modified time | relevance | path

Searched refs:alltests (Results 1 – 2 of 2) sorted by relevance

/Linux-v4.19/tools/testing/selftests/tc-testing/
Dtdc.py440 def get_id_list(alltests): argument
444 return [x["id"] for x in alltests]
447 def check_case_id(alltests): argument
451 idl = get_id_list(alltests)
455 def does_id_exist(alltests, newid): argument
459 idl = get_id_list(alltests)
463 def generate_case_ids(alltests): argument
469 for c in alltests:
473 if (does_id_exist(alltests, newid)):
480 for c in alltests:
[all …]
Dtdc_helper.py8 def get_categorized_testlist(alltests, ucat): argument
13 testcases[category] = list(filter(lambda x: category in x['category'], alltests))
23 def get_test_categories(alltests): argument
26 for t in alltests: