Home
last modified time | relevance | path

Searched refs:path_in_suite (Results 1 – 10 of 10) sorted by relevance

/openbsd/src/gnu/llvm/llvm/utils/lit/lit/
Ddiscovery.py94 def getLocalConfig(ts, path_in_suite, litConfig, cache): argument
95 def search1(path_in_suite): argument
97 if not path_in_suite:
100 parent = search(path_in_suite[:-1])
103 source_path = ts.getSourcePath(path_in_suite)
118 def search(path_in_suite): argument
119 key = (ts, path_in_suite)
122 cache[key] = res = search1(path_in_suite)
125 return search(path_in_suite)
130 ts,path_in_suite = getTestSuite(path, litConfig, testSuiteCache)
[all …]
DTest.py222 def __init__(self, suite, path_in_suite, config, file_path = None, gtest_json_file = None): argument
224 self.path_in_suite = path_in_suite
261 if suite.test_times and '/'.join(path_in_suite) in suite.test_times:
262 time = suite.test_times['/'.join(path_in_suite)]
291 return self.suite.config.name + ' :: ' + '/'.join(self.path_in_suite)
299 return self.suite.getSourcePath(self.path_in_suite)
302 return self.suite.getExecPath(self.path_in_suite)
Dreports.py14 return (test.suite.name, id(test.suite), test.path_in_suite)
115 path = '/'.join(test.path_in_suite[:-1]).replace('.', '_')
117 name = test.path_in_suite[-1]
DTestTimes.py31 times_by_suite[t.suite.exec_root]['/'.join(t.path_in_suite)] = time
Dmain.py203 test_file = os.sep.join(t.path_in_suite)
/openbsd/src/gnu/llvm/llvm/utils/lit/lit/formats/
Dbase.py13 def getTestsInDirectory(self, testSuite, path_in_suite, argument
15 source_path = testSuite.getSourcePath(path_in_suite)
26 yield lit.Test.Test(testSuite, path_in_suite + (filename,),
51 def getTestsInDirectory(self, testSuite, path_in_suite, argument
55 dir = testSuite.getSourcePath(path_in_suite)
76 testSuite, path_in_suite + tuple(suffix.split(os.sep)),
Dgoogletest.py45 def getTestsInDirectory(self, testSuite, path_in_suite, litConfig, argument
49 source_path = testSuite.getSourcePath(path_in_suite)
76 testPath = path_in_suite + (subdir, fn, str(idx),
97 testPath = path_in_suite + (
260 testPath = test.path_in_suite[:-2] + (testcase['name'],
/openbsd/src/gnu/llvm/llvm/utils/lit/examples/many-tests/
DManyTests.py8 def getTestsInDirectory(self, testSuite, path_in_suite, litConfig, localConfig): argument
11 yield Test.Test(testSuite, path_in_suite + (test_name,), localConfig)
/openbsd/src/gnu/llvm/libcxx/utils/libcxx/test/
Dgooglebenchmark.py72 def getTestsInDirectory(self, testSuite, path_in_suite, argument
74 source_path = testSuite.getSourcePath(path_in_suite)
85 testPath = path_in_suite + (subdir, fn, testname)
Dformat.py209 filename = test.path_in_suite[-1]