Home
last modified time | relevance | path

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

/external/linux-kselftest/tools/testing/selftests/tc-testing/
Dtdc.py248 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 …]
Dtdc_helper.py8 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/
DrunEALtests.sh186 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/
Drunltplite.sh244 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
Drunltp630 cat $scenfile >> "$TMP/alltests" || {
754 -n $$ $PRETTY_PRT -f ${TMP}/alltests $LOGFILE $OUTPUTFILE $FAILCMDFILE $TCONFCMDFILE"
/external/v8/tools/release/
Dscript_test.py43 alltests = map(unittest.TestLoader().loadTestsFromTestCase, [
48 unittest.TextTestRunner(verbosity=2).run(unittest.TestSuite(alltests))
/external/iproute2/testsuite/
DMakefile27 .PHONY: compile listtests alltests configure $(TESTS)
40 alltests: $(TESTS) target
/external/python/cpython3/Lib/test/libregrtest/
Dmain.py210 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/
Dregress_main.c394 const char *alltests[] = { "+..", NULL }; variable
410 { "all", alltests },
/external/autotest/client/site_tests/kernel_LTP/
Dcontrol.sample19 # A single expression used in a grep to filter tests from 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.py446 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/
Dunittest.rst489 alltests = unittest.TestSuite([suite1, suite2])