Lines Matching defs:config
24 from build.config import *
150 def parseAsCSV (logPath, config):
151 args = [config.getBinaryPath(LOG_TO_CSV_PATH), "--mode=all", "--format=csv", logPath]
274 def runNightly (config):
275 build(config.buildConfig, config.generator)
279 logDir = os.path.join(BASE_LOGS_DIR, config.name)
283 compareLogPath = os.path.join(BASE_REFS_DIR, config.name + ".csv")
293 binaryName = config.generator.getBinaryPath(config.buildConfig.getBuildType(), os.path.basename(config.binaryName))
294 workingDir = os.path.join(config.buildConfig.getBuildDir(), os.path.dirname(config.binaryName))
297 config.getBinaryPath(EXECUTOR_PATH),
298 '--start-server=%s' % config.getBinaryPath(EXECSERVER_PATH),
301 '--cmdline=%s' % string.join([shellquote(arg) for arg in config.args], " "),
304 '--testset=%s' % string.join(config.testset, ","),
310 if len(config.exclude) > 0:
311 execArgs += ['--exclude=%s' % string.join(config.exclude, ",")]
316 lastResultCsv = parseAsCSV(testLogPath, config)
331 writeFile(COMPARE_REPORT_NAME, genCompareReport(batchResults, config.name, config.ignore))
338 failedCases = compareBatchResults(refBatchResult, curBatchResult, config.ignore)
368 args = ['--deqp-gl-config-name=rgba8888d24s8ms0'] + BASE_ARGS,
382 args = ['--deqp-gl-config-name=rgba8888d24s8ms0'] + BASE_ARGS,
401 args = ['--deqp-gl-config-name=rgba8888d24s8ms0'] + BASE_ARGS,
424 args = ['--deqp-gl-config-name=rgba8888d24s8ms0'] + BASE_ARGS,
477 config = None
483 config = curCfg
486 if config != None:
487 isOk = runNightly(config)
491 print "%s: [config]" % sys.argv[0]
494 for config in CONFIGS:
495 print " %s" % config.name