| H A D | dsl.py | 71 def _makeConfigTest(config, testPrefix=''): argument 72 sourceRoot = os.path.join(config.test_exec_root, '__config_src__') 73 execRoot = os.path.join(config.test_exec_root, '__config_exec__') 74 suite = lit.Test.TestSuite('__config__', sourceRoot, execRoot, config) 84 return TestWrapper(suite, pathInSuite, config) 87 def sourceBuilds(config, source): argument 94 with _makeConfigTest(config) as test: 102 def programOutput(config, program, args=None, testPrefix=''): argument 113 with _makeConfigTest(config, testPrefix=testPrefix) as test: 133 def hasCompileFlag(config, flag): argument [all …]
|