Lines Matching refs:alltests
448 def get_id_list(alltests): argument
452 return [x["id"] for x in alltests]
455 def check_case_id(alltests): argument
459 idl = get_id_list(alltests)
463 def does_id_exist(alltests, newid): argument
467 idl = get_id_list(alltests)
471 def generate_case_ids(alltests): argument
477 for c in alltests:
481 if (does_id_exist(alltests, newid)):
488 for c in alltests:
494 for t in alltests:
602 ucat, idlist, testcases, alltests = get_test_cases(args)
606 alltests = generate_case_ids(alltests)
611 duplicate_ids = check_case_id(alltests)
619 for atest in alltests:
630 list_test_cases(alltests)
633 if len(alltests):
634 catresults = test_runner(pm, args, alltests)