Lines Matching refs:package
115 def getCaseListFileName (package, configuration): argument
116 return "%s-%s.txt" % (getModuleShorthand(package.module), configuration.name)
118 def getDstCaseListPath (mustpass, package, configuration): argument
119 …return os.path.join(mustpass.project.path, mustpass.version, getCaseListFileName(package, configur…
121 def getCTSPackageName (package): argument
122 return "com.drawelements.deqp." + getModuleShorthand(package.module)
210 for package in mustpass.packages:
211 for cfg in package.configurations:
290 for package in mustpass.packages:
291 packageElem = ElementTree.SubElement(mustpassElem, "TestPackage", name = package.module.name)
293 for config in package.configurations:
296 caseListFile = getCaseListFileName(package, config),
311 for package in mustpass.packages:
312 for config in package.configurations:
315 addOptionElement(testElement, "deqp-package", package.module.name)
316 addOptionElement(testElement, "deqp-caselist-file", getCaseListFileName(package,config))
342 for package in mustpass.packages:
343 allCasesInPkg = moduleCaseLists[package.module]
345 for config in package.configurations:
347 dstFile = getDstCaseListPath(mustpass, package, config)
373 for package in mustpass.packages:
374 if not package.module in moduleCaseLists:
375 moduleCaseLists[package.module] = getCaseList(buildCfg, generator, package.module)