Lines Matching refs:alltests
658 def get_id_list(alltests): argument
662 return [x["id"] for x in alltests]
665 def check_case_id(alltests): argument
669 idl = get_id_list(alltests)
673 def does_id_exist(alltests, newid): argument
677 idl = get_id_list(alltests)
681 def generate_case_ids(alltests): argument
687 for c in alltests:
691 if (does_id_exist(alltests, newid)):
698 for c in alltests:
704 for t in alltests:
813 ucat, idlist, testcases, alltests = get_test_cases(args)
817 alltests = generate_case_ids(alltests)
822 duplicate_ids = check_case_id(alltests)
830 for atest in alltests:
840 list_test_cases(alltests)
844 if len(alltests):
845 req_plugins = pm.get_required_plugins(alltests)
851 catresults = test_runner(pm, args, alltests)