Searched refs:alltests (Results 1 – 11 of 11) sorted by relevance
/external/linux-kselftest/tools/testing/selftests/tc-testing/ |
D | tdc.py | 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: [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)) 23 def get_test_categories(alltests): argument 26 for t in alltests:
|
/external/v8/tools/release/ |
D | script_test.py | 43 alltests = map(unittest.TestLoader().loadTestsFromTestCase, [ 47 unittest.TextTestRunner(verbosity=2).run(unittest.TestSuite(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 | 230 alltests = findtests(self.ns.testdir, list(), set()) 232 alltests = findtests(self.ns.testdir, stdtests, nottests) 235 self.selected = self.tests or self.ns.args or alltests 241 pos = alltests.index(self.selected[0]) 242 self.next_single_test = alltests[pos + 1]
|
/external/libevent/test/ |
D | regress_main.c | 394 const char *alltests[] = { "+..", NULL }; variable 410 { "all", alltests },
|
/external/autotest/client/site_tests/kernel_LTP/ |
D | control.sample | 19 # A single expression used in a grep to filter tests from 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 | 593 cat $scenfile >> "$TMP/alltests" || { 711 -n $$ $PRETTY_PRT -f ${TMP}/alltests $LOGFILE $OUTPUTFILE $FAILCMDFILE $TCONFCMDFILE"
|
/external/python/cpython2/Doc/library/ |
D | unittest.rst | 489 alltests = unittest.TestSuite([suite1, suite2])
|