Lines Matching refs:alltests
440 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:
486 for t in alltests:
594 ucat, idlist, testcases, alltests = get_test_cases(args)
598 alltests = generate_case_ids(alltests)
603 duplicate_ids = check_case_id(alltests)
611 for atest in alltests:
622 list_test_cases(alltests)
625 if len(alltests):
626 catresults = test_runner(pm, args, alltests)