Lines Matching refs:path
34 BASE_NIGHTLY_DIR = os.path.normpath(os.path.join(DEQP_DIR, "..", "deqp-nightly"))
35 BASE_BUILD_DIR = os.path.join(BASE_NIGHTLY_DIR, "build")
36 BASE_LOGS_DIR = os.path.join(BASE_NIGHTLY_DIR, "logs")
37 BASE_REFS_DIR = os.path.join(BASE_NIGHTLY_DIR, "refs")
43 CASELIST_PATH = os.path.join(DEQP_DIR, "Candy", "Data")
98 return os.path.join(self.buildConfig.getBuildDir(), self.generator.getBinaryPath(self.buildConfig.getBuildType(), basePath))
102 BuildConfig.__init__(self, os.path.join(BASE_BUILD_DIR, name), buildType, args)
133 batchResult = BatchResult(batchResultName if batchResultName != None else os.path.basename(filename))
143 fullPath = os.path.join(logsDir, file)
144 if os.path.isfile(fullPath) and fnmatch.fnmatch(file, "*.csv"):
279 logDir = os.path.join(BASE_LOGS_DIR, config.name)
280 testLogPath = os.path.join(logDir, timestamp + ".qpa")
281 infoLogPath = os.path.join(logDir, timestamp + ".txt")
282 csvLogPath = os.path.join(logDir, timestamp + ".csv")
283 compareLogPath = os.path.join(BASE_REFS_DIR, config.name + ".csv")
286 if not os.path.exists(logDir):
289 if os.path.exists(testLogPath) or os.path.exists(infoLogPath):
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))
319 if os.path.exists(compareLogPath):