Home
last modified time | relevance | path

Searched refs:gitLog (Results 1 – 4 of 4) sorted by relevance

/external/deqp/scripts/verify/
Dpackage.py34 …def __init__ (self, basePath, statement, testLogs, gitStatus, gitLog, patches, summary, conformVer… argument
39 self.gitLog = gitLog
51 gitLog = []
67 gitLog.append((item, '.'))
76 …return PackageDescription(packagePath, statement, testLogs, gitStatus, gitLog, patches, summary, c…
Dverify.py159 def isGitLogEmpty (package, gitLog): argument
160 logPath = os.path.join(package.basePath, gitLog)
168 if len(package.gitLog) > 0:
169 for log, path in package.gitLog:
181 for log, path in package.gitLog:
/external/deqp/external/openglcts/scripts/verify/
Dverify_es.py235 def isGitLogFileEmpty (package, modulePath, gitLog): argument
236 logPath = os.path.join(package.basePath, gitLog)
250 if len(package.gitLog) > 0:
251 for log, path in package.gitLog:
269 for log, path in package.gitLog:
285 if len(package.gitLog) != numFiles:
286 …age.basePath, "Exactly %s must be present, found %s" % (errorDict[numFiles], len(package.gitLog))))
288 for i, gitLog in enumerate(package.gitLog):
289 if "kc-cts" in gitLog[0] and numFiles > 1:
290 package.gitLog[i] = gitLog[:1] + ("external/kc-cts/src",) + gitLog[2:]
/external/deqp/external/vulkancts/scripts/
Dverify_submission.py45 if len(package.gitLog) > 1:
46 …rror(package.basePath, "Exactly one git log file must be present, found %s" % len(package.gitLog)))