Searched refs:alltests (Results 1 – 13 of 13) sorted by relevance
/external/linux-kselftest/tools/testing/selftests/tc-testing/ |
D | tdc.py | 248 def get_id_list(alltests): argument 252 return [x["id"] for x in alltests] 255 def check_case_id(alltests): argument 259 idl = get_id_list(alltests) 263 def does_id_exist(alltests, newid): argument 267 idl = get_id_list(alltests) 271 def generate_case_ids(alltests): argument 277 for c in alltests: 281 if (does_id_exist(alltests, newid)): 288 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/ltp/testscripts/ |
D | runEALtests.sh | 186 cat ${LTPROOT}/../runtest/admin_tools > ${TMP}/alltests 188 cat $cmdfile > ${TMP}/alltests 193 cat ${LTPROOT}/../runtest/network_commands >> ${TMP}/alltests 201 cat ${LTPROOT}/../runtest/fsx >> ${TMP}/alltests 207 …/ltp-pan $quiet_mode -e -S $instances $duration -a $$ -n $$ $pretty_prt -f ${TMP}/alltests $logfile
|
/external/ltp/ |
D | runltplite.sh | 244 cat $CMDFILE > ${TMP}/alltests || \ 290 cat ${LTPROOT}/runtest/fsx >> ${TMP}/alltests || 309 cat "$scenfile" >> ${TMP}/alltests || \ 322 sed -i "/\<${test_name}\>/c\\${test_name} exit 32;" alltests 351 -n $$ $PRETTY_PRT -f ${TMP}/alltests $LOGFILE $OUTPUTFILE
|
D | runltp | 630 cat $scenfile >> "$TMP/alltests" || { 754 -n $$ $PRETTY_PRT -f ${TMP}/alltests $LOGFILE $OUTPUTFILE $FAILCMDFILE $TCONFCMDFILE"
|
/external/v8/tools/release/ |
D | script_test.py | 43 alltests = map(unittest.TestLoader().loadTestsFromTestCase, [ 48 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 | 210 alltests = findtests(self.ns.testdir, list(), set()) 212 alltests = findtests(self.ns.testdir, stdtests, nottests) 215 self.selected = self.tests or self.ns.args or alltests 221 pos = alltests.index(self.selected[0]) 222 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 | 446 alltests = findtests(testdir, stdtests, nottests) 447 selected = tests or args or alltests 451 next_single_test = alltests[alltests.index(selected[0])+1]
|
/external/python/cpython2/Doc/library/ |
D | unittest.rst | 489 alltests = unittest.TestSuite([suite1, suite2])
|