HomeSort by relevance Sort by last modified time
    Searched refs:path_in_suite (Results 1 - 3 of 3) sorted by null

  /external/llvm/utils/lit/lit/
Test.py 47 def __init__(self, suite, path_in_suite, config):
49 self.path_in_suite = path_in_suite
73 return self.suite.config.name + ' :: ' + '/'.join(self.path_in_suite)
76 return self.suite.getSourcePath(self.path_in_suite)
79 return self.suite.getExecPath(self.path_in_suite)
TestFormats.py 57 def getTestsInDirectory(self, testSuite, path_in_suite,
59 source_path = testSuite.getSourcePath(path_in_suite)
77 testPath = path_in_suite + (filename, subfilename, name)
103 def getTestsInDirectory(self, testSuite, path_in_suite,
105 source_path = testSuite.getSourcePath(path_in_suite)
116 yield Test.Test(testSuite, path_in_suite + (filename,),
153 def getTestsInDirectory(self, testSuite, path_in_suite,
157 dir = testSuite.getSourcePath(path_in_suite)
178 path_in_suite + tuple(suffix.split(os.sep)),
main.py 202 def getLocalConfig(ts, path_in_suite, litConfig, cache):
203 def search1(path_in_suite):
205 if not path_in_suite:
208 parent = search(path_in_suite[:-1])
211 source_path = ts.getSourcePath(path_in_suite)
219 def search(path_in_suite):
220 key = (ts, path_in_suite)
223 cache[key] = res = search1(path_in_suite)
226 return search(path_in_suite)
230 ts,path_in_suite = getTestSuite(path, litConfig, testSuiteCache
    [all...]

Completed in 74 milliseconds