Home
last modified time | relevance | path

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

/Linux-v5.4/tools/testing/selftests/tc-testing/
Dtdc.py534 def get_id_list(alltests): argument
538 return [x["id"] for x in alltests]
541 def check_case_id(alltests): argument
545 idl = get_id_list(alltests)
549 def does_id_exist(alltests, newid): argument
553 idl = get_id_list(alltests)
557 def generate_case_ids(alltests): argument
563 for c in alltests:
567 if (does_id_exist(alltests, newid)):
574 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))
26 def get_test_categories(alltests): argument
29 for t in alltests: