Searched refs:alltests (Results 1 – 9 of 9) sorted by relevance
/external/linux-kselftest/tools/testing/selftests/tc-testing/ |
D | tdc.py | 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: [all …]
|
D | tdc_helper.py | 8 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:
|
/external/iproute2/testsuite/ |
D | Makefile | 27 .PHONY: compile listtests alltests configure $(TESTS) 40 alltests: $(TESTS) target
|
/external/python/cpython3/Lib/test/libregrtest/ |
D | main.py | 244 alltests = findtests(self.ns.testdir, list(), set()) 246 alltests = findtests(self.ns.testdir, stdtests, nottests) 249 self.selected = self.tests or self.ns.args or alltests 255 pos = alltests.index(self.selected[0]) 256 self.next_single_test = alltests[pos + 1]
|
/external/libevent/test/ |
D | regress_main.c | 452 const char *alltests[] = { "+..", NULL }; variable 468 { "all", alltests },
|
/external/python/cpython2/Lib/bsddb/test/ |
D | test_all.py | 599 alltests = unittest.TestSuite() 606 alltests.addTest(module.test_suite()) 608 alltests.addTest(unittest.makeSuite(timing_check)) 609 return alltests
|
/external/python/cpython2/Lib/test/ |
D | regrtest.py | 606 alltests = findtests(testdir, stdtests, nottests) 607 selected = tests or args or alltests 611 next_single_test = alltests[alltests.index(selected[0])+1]
|
/external/ltp/ |
D | runltp | 592 cat $scenfile >> "$TMP/alltests" || { 710 -n $$ $PRETTY_PRT -f ${TMP}/alltests $LOGFILE $OUTPUTFILE $FAILCMDFILE $TCONFCMDFILE"
|
/external/python/cpython2/Doc/library/ |
D | unittest.rst | 489 alltests = unittest.TestSuite([suite1, suite2])
|