/third_party/python/Lib/unittest/ |
D | loader.py | 242 def discover(self, start_dir, pattern='test*.py', top_level_dir=None): argument 276 top_level_dir = start_dir 291 if os.path.isdir(os.path.abspath(start_dir)): 292 start_dir = os.path.abspath(start_dir) 293 if start_dir != top_level_dir: 294 is_not_importable = not os.path.isfile(os.path.join(start_dir, '__init__.py')) 298 __import__(start_dir) 302 the_module = sys.modules[start_dir] 303 top_part = start_dir.split('.')[0] 305 start_dir = os.path.abspath( [all …]
|
D | __init__.py | 80 return loader.discover(start_dir=this_dir, pattern=pattern)
|
/third_party/skia/buildtools/checkdeps/ |
D | checkdeps.py | 76 def CheckDirectory(self, start_dir): argument 94 for rules, file_paths in self.GetAllRulesAndFiles(start_dir): 261 start_dir = base_directory 265 start_dir = os.path.abspath(os.path.join(base_directory, args[0])) 272 if not start_dir.startswith(deps_checker.base_directory): 274 print('but %s is not a subdirectory of %s' % (start_dir, base_directory)) 278 print('Checking:', start_dir) 289 deps_checker.CheckDirectory(start_dir)
|
/third_party/boost/libs/process/example/ |
D | start_dir.cpp | 19 bp::start_dir="../foo" in main() 25 bp::start_dir="../foo" in main()
|
D | Jamfile.jam | 24 compile start_dir.cpp ;
|
/third_party/ltp/lib/tests/ |
D | tst_tmpdir_test.c | 52 char *start_dir = getcwd(NULL, PATH_MAX); in main() local 62 strcmp(tmp_dir, start_dir) != 0) { in main()
|
/third_party/python/Lib/unittest/test/ |
D | test_discovery.py | 335 start_dir=this_dir, pattern=pattern) 398 def _find_tests(start_dir, pattern, namespace=None): argument 399 _find_tests_args.append((start_dir, pattern)) 407 start_dir = os.path.abspath('/foo/bar/baz') 410 self.assertEqual(_find_tests_args, [(start_dir, 'pattern')]) 636 def discover(self, start_dir, pattern, top_level_dir): argument 637 self.args.append((start_dir, pattern, top_level_dir)) 649 def discover(self, start_dir, pattern, top_level_dir): argument 650 self.args.append((start_dir, pattern, top_level_dir)) 763 start_dir='foo', pattern='foo.py' [all …]
|
D | __main__.py | 11 package_tests = loader.discover(start_dir=this_dir, pattern=pattern,
|
D | test_program.py | 20 def _find_tests(start_dir, pattern): argument 22 self.assertEqual(start_dir, expectedPath)
|
/third_party/python/Lib/idlelib/idle_test/ |
D | __init__.py | 14 package_tests = loader.discover(start_dir=this_dir, pattern='test*.py',
|
/third_party/python/Lib/unittest/test/testmock/ |
D | __main__.py | 11 package_tests = loader.discover(start_dir=this_dir, pattern=pattern,
|
/third_party/python/Lib/ |
D | zipfile.py | 1154 self._zipfile.start_dir = self._fileobj.tell() 1167 self._zipfile.start_dir = self._fileobj.tell() 1170 self._fileobj.seek(self._zipfile.start_dir) 1263 self.start_dir = self.fp.tell() 1266 self.start_dir = 0 1271 self.fp.seek(self.start_dir) 1279 self.fp.seek(self.start_dir) 1287 self.start_dir = self.fp.tell() 1341 self.start_dir = offset_cd + concat 1342 fp.seek(self.start_dir, 0) [all …]
|
/third_party/boost/libs/process/test/ |
D | start_dir.cpp | 43 bp::start_dir = dir.s_, in BOOST_AUTO_TEST_CASE()
|
D | Jamfile.jam | 113 …[ run start_dir.cpp filesystem system : [ test-options start_dir ] : sparring_…
|
/third_party/boost/boost/process/ |
D | start_dir.hpp | 107 constexpr ::boost::process::detail::start_dir_ start_dir; variable
|
/third_party/ltp/lib/ |
D | tst_test.c | 1095 const char *start_dir; in add_paths() local 1098 start_dir = tst_get_startwd(); in add_paths() 1101 SAFE_ASPRINTF(&new_path, "%s::%s", old_path, start_dir); in add_paths() 1103 SAFE_ASPRINTF(&new_path, "::%s", start_dir); in add_paths()
|
/third_party/python/Doc/library/ |
D | unittest.rst | 1812 .. method:: discover(start_dir, pattern='test*.py', top_level_dir=None) 1846 *start_dir* can be a dotted module name as well as a directory. 2299 package_tests = loader.discover(start_dir=this_dir, pattern=pattern)
|
/third_party/python/Lib/test/support/ |
D | __init__.py | 236 package_tests = loader.discover(start_dir=pkg_dir,
|
/third_party/boost/doc/html/ |
D | doc_HTML.manifest | 1986 boost/process/start_dir.html
|
/third_party/python/Misc/ |
D | NEWS | 25019 - bpo-22457: Honour load_tests in the start_dir of discovery.
|