Home
last modified time | relevance | path

Searched refs:set_match_tests (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython3/Lib/test/
Dtest_support.py533 support.set_match_tests([])
538 support.set_match_tests(None, None)
543 support.set_match_tests([test_access.id()], None)
548 support.set_match_tests(['test_os'], None)
553 support.set_match_tests(['test_*'], None)
558 support.set_match_tests(['filetests'], None)
560 support.set_match_tests(['FileTests'], None)
564 support.set_match_tests(['*test_os.*.test_*'], None)
569 support.set_match_tests([test_access.id(), test_chdir.id()], None)
573 support.set_match_tests(['test_access', 'DONTMATCH'], None)
[all …]
/external/python/cpython2/Lib/test/
Dtest_test_support.py376 support.set_match_tests([])
381 support.set_match_tests(None)
386 support.set_match_tests([test_access.id()])
391 support.set_match_tests(['test_os'])
396 support.set_match_tests(['test_*'])
401 support.set_match_tests(['filetests'])
403 support.set_match_tests(['FileTests'])
407 support.set_match_tests(['*test_os.*.test_*'])
412 support.set_match_tests([test_access.id(), test_chdir.id()])
416 support.set_match_tests(['test_access', 'DONTMATCH'])
Dregrtest.py1118 support.set_match_tests(match_tests)
1697 support.set_match_tests(match_tests)
/external/python/cpython3/Lib/test/libregrtest/
Druntest.py126 support.set_match_tests(ns.match_tests, ns.ignore_tests)
Dmain.py290 support.set_match_tests(self.ns.match_tests, self.ns.ignore_tests)
/external/python/cpython2/Lib/test/support/
D__init__.py1571 def set_match_tests(patterns): function
/external/python/cpython3/Doc/library/
Dtest.rst541 Match *test* to patterns set in :func:`set_match_tests`.
544 .. function:: set_match_tests(patterns)
/external/python/cpython3/Lib/test/support/
D__init__.py1839 def set_match_tests(accept_patterns=None, ignore_patterns=None): function