Lines Matching refs:alltests
534 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:
580 for t in alltests:
689 ucat, idlist, testcases, alltests = get_test_cases(args)
693 alltests = generate_case_ids(alltests)
698 duplicate_ids = check_case_id(alltests)
706 for atest in alltests:
717 list_test_cases(alltests)
720 if len(alltests):
721 req_plugins = pm.get_required_plugins(alltests)
727 catresults = test_runner(pm, args, alltests)