• Home
  • Raw
  • Download

Lines Matching refs:package

106 def getCaseListFileName (package, configuration):  argument
107 return "%s-%s.txt" % (getModuleShorthand(package.module), configuration.name)
109 def getDstCaseListPath (mustpass, package, configuration): argument
110 return os.path.join(CTS_DATA_DIR, mustpass.version, getCaseListFileName(package, configuration))
112 def getCTSPackageName (package, splitName): argument
114 return "com.drawelements.deqp." + getModuleShorthand(package.module)
115 return "com.drawelements.deqp." + getModuleShorthand(package.module) + "." + splitName
194 for package in mustpass.packages:
195 for cfg in package.configurations:
265 def genCTSPackageXML (package, root, name): argument
302 name = package.module.name,
307 pkgElem.set("deqp:glesVersion", str(getModuleGLESVersion(package.module).encode()))
317 for package in mustpass.packages:
318 packageElem = ElementTree.SubElement(mustpassElem, "TestPackage", name = package.module.name)
320 for config in package.configurations:
323 caseListFile = getCaseListFileName(package, config),
328 def genCTSPackage (package, cases, matchingByConfig, packageName, xmlFilename): argument
332 for config in package.configurations:
337 packageXml = genCTSPackageXML(package, root, packageName)
347 for package in mustpass.packages:
348 allCasesInPkg = moduleCaseLists[package.module]
352 for config in package.configurations:
354 dstFile = getDstCaseListPath(mustpass, package, config)
363 splitFilters = package.splitFilters
367 packageName = getCTSPackageName(package, splitName)
369 genCTSPackage(package, splitCases, matchingByConfig, packageName, xmlFilename)
374 packageName = getCTSPackageName(package, None)
376 genCTSPackage(package, restOfCases, matchingByConfig, packageName, xmlFilename)
391 for package in mustpass.packages:
392 if not package.module in moduleCaseLists:
393 moduleCaseLists[package.module] = getCaseList(mustpass, package.module)