| D | dsl.py | 50 def f(config, *args, **kwargs): argument 51 cacheRoot = os.path.join(config.test_exec_root, '__config_cache__') 62 cacheKey = pickle.dumps(extractCacheKey(config, *args, **kwargs)) 64 cache[cacheKey] = function(config, *args, **kwargs) 110 def _makeConfigTest(config): argument 113 sourceRoot = os.path.join(config.test_exec_root, '__config_src__') 114 execRoot = os.path.join(config.test_exec_root, '__config_exec__') 122 suite = lit.Test.TestSuite('__config__', sourceRoot, execRoot, config) 135 return TestWrapper(suite, pathInSuite, config) 138 def sourceBuilds(config, source, additionalFlags=[]): argument [all …]
|