Home
last modified time | relevance | path

Searched refs:litConfig (Results 1 – 14 of 14) sorted by relevance

/llvm-project-15.0.7/llvm/utils/lit/lit/
H A Ddiscovery.py25 def getTestSuite(item, litConfig, cache): argument
61 if litConfig.debug:
64 cfg = TestingConfig.fromdefaults(litConfig)
65 cfg.load_from_path(cfgpath, litConfig)
113 if litConfig.debug:
115 config.load_from_path(cfgpath, litConfig)
127 def getTests(path, litConfig, testSuiteCache, argument
135 if litConfig.debug:
142 def getTestsInSuite(ts, path_in_suite, litConfig, argument
176 litConfig.error(
[all …]
H A DTestingConfig.py11 def fromdefaults(litConfig): argument
19 'PATH' : os.pathsep.join(litConfig.path +
83 if litConfig.useValgrind:
85 if litConfig.valgrindLeakCheck:
102 def load_from_path(self, path, litConfig): argument
122 cfg_globals['lit_config'] = litConfig
126 if litConfig.debug:
127 litConfig.note('... loaded config %r' % path)
136 litConfig.fatal(
139 self.finish(litConfig)
[all …]
H A DTestRunner.py961 if litConfig.maxIndividualTestTime == 0 and \
991 if litConfig.isWindows and result.exitCode < 0:
1004 bashPath = litConfig.getBashPath()
1005 isWin32CMDEXE = (litConfig.isWindows and not bashPath)
1013 if litConfig.isWindows and not isWin32CMDEXE:
1026 if litConfig.echo_all_commands:
1040 if litConfig.echo_all_commands:
1056 if litConfig.useValgrind:
1059 command = litConfig.valgrindArgs + command
1723 def executeShTest(test, litConfig, useExternalSh, argument
[all …]
/llvm-project-15.0.7/libcxx/utils/libcxx/test/
H A Dformat.py197 def execute(self, test, litConfig): argument
204 return self._executeShTest(test, litConfig, steps)
209 return self._executeShTest(test, litConfig, steps)
214 return self._executeShTest(test, litConfig, steps)
219 return self._executeShTest(test, litConfig, steps)
225 return self._executeShTest(test, litConfig, steps)
235 return self._executeShTest(test, litConfig, steps)
243 return self._executeShTest(test, litConfig, steps)
256 return self._executeShTest(test, litConfig, steps)
265 def _executeShTest(self, test, litConfig, steps): argument
[all …]
H A Dgooglebenchmark.py26 def getBenchmarkTests(self, path, litConfig, localConfig): argument
44 litConfig.warning(
73 litConfig, localConfig): argument
83 testnames = self.getBenchmarkTests(execpath, litConfig, localConfig)
89 def execute(self, test, litConfig): argument
99 if litConfig.noExecute:
105 timeout=litConfig.maxIndividualTestTime)
109 litConfig.maxIndividualTestTime)
H A Ddsl.py80 litConfig = lit.LitConfig.LitConfig(
94 res = lit.TestRunner.executeScriptInternal(test, litConfig, tmpBase, parsedCommands, execDir)
/llvm-project-15.0.7/libcxx/test/libcxx/selftest/dsl/
H A Ddsl.sh.py53 self.litConfig = lit.LitConfig.LitConfig(
398 self.litConfig.params['std'] = 'c++03'
407 self.litConfig.params['std'] = 'c++11'
428 self.litConfig.params['std'] = 'c++03'
437 self.litConfig.params['std'] = 'c++03'
444 self.litConfig.params['enable_exceptions'] = "True"
450 self.litConfig.params['enable_exceptions'] = True
456 self.litConfig.params['enable_exceptions'] = "False"
464 self.litConfig.params['enable_exceptions'] = False
472 self.litConfig.params['additional_features'] = ""
[all …]
/llvm-project-15.0.7/clang/test/Analysis/
H A Danalyzer_test.py11 def execute(self, test, litConfig): argument
20 saved_test, litConfig, '-analyzer-constraints=range'))
29 saved_test, litConfig, '-analyzer-constraints=z3 -DANALYZER_CM_Z3'))
41 def executeWithAnalyzeSubstitution(self, test, litConfig, substitution): argument
44 result = lit.TestRunner.executeShTest(test, litConfig,
/llvm-project-15.0.7/llvm/utils/lit/lit/formats/
H A Dgoogletest.py29 def get_num_tests(self, path, litConfig, localConfig): argument
36 litConfig.warning(
44 def getTestsInDirectory(self, testSuite, path_in_suite, litConfig, argument
57 num_tests = self.get_num_tests(execpath, litConfig,
97 def execute(self, test, litConfig): argument
111 use_shuffle = TestOrder(litConfig.order) == TestOrder.RANDOM
122 if litConfig.useValgrind:
123 cmd = litConfig.valgrindArgs + cmd
125 if litConfig.noExecute:
137 timeout=litConfig.maxIndividualTestTime, redirect_stderr=True)
H A Dbase.py14 litConfig, localConfig): argument
52 litConfig, localConfig): argument
85 def execute(self, test, litConfig): argument
124 def execute(self, test, litConfig): argument
H A Dshtest.py26 def execute(self, test, litConfig): argument
27 return lit.TestRunner.executeShTest(test, litConfig,
/llvm-project-15.0.7/lldb/test/API/
H A Dlldbtest.py16 def getTestsInDirectory(self, testSuite, path_in_suite, litConfig, argument
35 def execute(self, test, litConfig): argument
36 if litConfig.noExecute:
67 timeout=litConfig.maxIndividualTestTime)
73 litConfig.maxIndividualTestTime)
/llvm-project-15.0.7/llvm/utils/lit/examples/many-tests/
H A DManyTests.py8 def getTestsInDirectory(self, testSuite, path_in_suite, litConfig, localConfig): argument
13 def execute(self, test, litConfig): argument
/llvm-project-15.0.7/llvm/utils/lit/tests/unit/
H A DTestRunner.py39 TestIntegratedTestKeywordParser.litConfig = lit_config