/third_party/protobuf/ |
H A D | build_files_updated_unittest.sh | 27 test_root="${TEST_TMPDIR}/build_files_updated_unittest" 28 mkdir "${test_root}" 31 test_root=$(mktemp -d) 39 rm -rf "${test_root}" 44 golden_dir="${test_root}/golden" 51 test_dir="${test_root}/test" 56 cd "${test_root}/test"
|
/third_party/openssl/test/ |
H A D | crltest.c | 183 static X509 *test_root = NULL; variable 315 && TEST_int_eq(verify(test_leaf, test_root, in test_basic_crl() 318 && TEST_int_eq(verify(test_leaf, test_root, in test_basic_crl() 328 return TEST_int_eq(verify(test_leaf, test_root, NULL, in test_no_crl() 339 && TEST_int_eq(verify(test_leaf, test_root, in test_bad_issuer_crl() 353 && TEST_int_eq(verify(test_leaf, test_root, in test_known_critical_crl() 366 && TEST_int_eq(verify(test_leaf, test_root, in test_unknown_critical_crl() 396 if (!TEST_ptr(test_root = X509_from_strings(kCRLTestRoot)) in setup_tests() 411 X509_free(test_root); in cleanup_tests()
|
/third_party/node/deps/v8/tools/testrunner/local/ |
H A D | testsuite.py | 87 def __init__(self, suite, test_class, test_config, test_root): 91 self.test_root = test_root 154 return [self.test_root] 187 def _to_relpath(self, abspath, test_root): 188 return os.path.relpath(abspath, test_root) 192 test_root = os.path.join(self.test_root, test_dir) 193 for dirname, dirs, files in os.walk(test_root, followlinks=True): 203 yield self._to_relpath(abspath, test_root) [all...] |
H A D | utils.py | 52 def GetSuitePaths(test_root): 53 return [ f for f in os.listdir(test_root) if isdir(join(test_root, f)) ]
|
H A D | testsuite_test.py | 26 self.test_root = os.path.join(test_dir, "fake_testsuite") 41 self.suite = TestSuite.Load(self.test_root, self.test_config,
|
/third_party/node/tools/ |
H A D | test.py | 877 def __init__(self, tests_repos, test_root): 880 self.test_root = test_root 903 root = TestConfiguration(context, self.test_root, 'root') 1410 help='Optional path to change test directory', dest='test_root', default=None) 1518 def GetSuites(test_root): 1521 return [ f for f in os.listdir(test_root) if IsSuite(join(test_root, f)) ] 1561 def ArgsToTestPaths(test_root, args, suites): 1609 test_root [all...] |
/third_party/node/deps/v8/third_party/test262-harness/src/ |
H A D | test262.py | 430 self.test_root = path.join(root, 'test') 440 if not path.exists(self.test_root): 473 logging.info("Listing tests in %s", self.test_root) 475 for root, dirs, files in os.walk(self.test_root): 482 if full_path.startswith(self.test_root): 483 rel_path = full_path[len(self.test_root)+1:]
|
/third_party/node/deps/v8/tools/testrunner/ |
H A D | base_runner.py | 627 def _args_to_suite_names(self, args, test_root): 629 all_names = set(utils.GetSuitePaths(test_root)) 637 names = self._args_to_suite_names(args, options.test_root) 647 os.path.join(options.test_root, name), test_config,
|
/third_party/node/test/parallel/ |
H A D | test-fs-realpath.js | 547 function test_root(realpath, realpathSync, cb) { function 583 test_root,
|
/third_party/selinux/libsepol/cil/test/unit/ |
H A D | CilTest.c | 88 void gen_test_tree(struct cil_tree **test_root, char *line[]) { in gen_test_tree() argument 129 *test_root = new_tree; in gen_test_tree()
|
/third_party/python/Lib/test/ |
H A D | test_pathlib.py | 711 def test_root(self): member in PurePosixPathTest 978 def test_root(self): member in PureWindowsPathTest
|