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

  /external/llvm/utils/lit/tests/unit/
TestRunner.py 26 lit_config = lit.LitConfig.LitConfig(progname='lit',
37 TestIntegratedTestKeywordParser.litConfig = lit_config
  /external/llvm/utils/lit/lit/
discovery.py 11 from lit import LitConfig, Test
21 def getTestSuite(item, litConfig, cache):
22 """getTestSuite(item, litConfig, cache) -> (suite, relative_path)
32 cfgpath = dirContainsTestSuite(path, litConfig)
44 if litConfig.debug:
45 litConfig.note('loading suite config %r' % cfgpath)
47 cfg = TestingConfig.fromdefaults(litConfig)
48 cfg.load_from_path(cfgpath, litConfig)
76 def getLocalConfig(ts, path_in_suite, litConfig, cache):
86 cfgpath = os.path.join(source_path, litConfig.local_config_name
    [all...]
LitConfig.py 11 # LitConfig must be a new style class for properties to work
12 class LitConfig(object):
13 """LitConfig - Configuration data for a 'lit' test runner instance, shared
16 The LitConfig object is also used to communicate with client configuration
main.py 13 import lit.LitConfig
291 litConfig = lit.LitConfig.LitConfig(
306 run = lit.run.Run(litConfig,
307 lit.discovery.find_tests_for_inputs(litConfig, inputs))
313 if opts.maxIndividualTestTime != litConfig.maxIndividualTestTime:
314 litConfig.note(('The test suite configuration requested an individual'
318 .format(litConfig.maxIndividualTestTime,
320 litConfig.maxIndividualTestTime = opts.maxIndividualTestTim
    [all...]
  /external/swiftshader/third_party/LLVM/utils/lit/lit/
LitConfig.py 1 class LitConfig:
2 """LitConfig - Configuration data for a 'lit' test runner instance, shared
5 The LitConfig object is also used to communicate with client configuration
main.py 16 import LitConfig
104 def __init__(self, litConfig, provider, display):
106 self.litConfig = litConfig
122 self.litConfig)
129 if self.litConfig.debug:
148 def getTestSuite(item, litConfig, cache):
149 """getTestSuite(item, litConfig, cache) -> (suite, relative_path)
171 if litConfig.debug:
172 litConfig.note('loading suite config %r' % cfgpath
    [all...]

Completed in 145 milliseconds