Home
last modified time | relevance | path

Searched refs:alltests (Results 1 – 9 of 9) sorted by relevance

/external/linux-kselftest/tools/testing/selftests/tc-testing/
Dtdc.py534 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 …]
Dtdc_helper.py8 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/
DMakefile27 .PHONY: compile listtests alltests configure $(TESTS)
40 alltests: $(TESTS) target
/external/python/cpython3/Lib/test/libregrtest/
Dmain.py244 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/
Dregress_main.c452 const char *alltests[] = { "+..", NULL }; variable
468 { "all", alltests },
/external/python/cpython2/Lib/bsddb/test/
Dtest_all.py599 alltests = unittest.TestSuite()
606 alltests.addTest(module.test_suite())
608 alltests.addTest(unittest.makeSuite(timing_check))
609 return alltests
/external/python/cpython2/Lib/test/
Dregrtest.py606 alltests = findtests(testdir, stdtests, nottests)
607 selected = tests or args or alltests
611 next_single_test = alltests[alltests.index(selected[0])+1]
/external/ltp/
Drunltp592 cat $scenfile >> "$TMP/alltests" || {
710 -n $$ $PRETTY_PRT -f ${TMP}/alltests $LOGFILE $OUTPUTFILE $FAILCMDFILE $TCONFCMDFILE"
/external/python/cpython2/Doc/library/
Dunittest.rst489 alltests = unittest.TestSuite([suite1, suite2])