/external/deqp/scripts/ |
D | build_caselists.py | 66 def getModulesPath (buildCfg): argument 67 return os.path.join(buildCfg.getBuildDir(), "modules") 69 def getBuiltModules (buildCfg): argument 71 modulesDir = getModulesPath(buildCfg) 83 def getCaseListPath (buildCfg, module, caseListType): argument 84 …return os.path.join(getModulesPath(buildCfg), module.dirName, getCaseListFileName(module, caseList… 86 def genCaseList (buildCfg, generator, module, caseListType): argument 87 workDir = os.path.join(getModulesPath(buildCfg), module.dirName) 92 binPath = generator.getBinaryPath(buildCfg.getBuildType(), os.path.join(".", module.binName)) 97 def genAndCopyCaseList (buildCfg, generator, module, dstDir, caseListType): argument [all …]
|
D | mustpass.py | 148 def getCaseList (buildCfg, generator, module): argument 149 build(buildCfg, generator, [module.binName]) 150 genCaseList(buildCfg, generator, module, "txt") 151 return readCaseList(getCaseListPath(buildCfg, module, "txt")) 381 def genMustpassLists (mustpassLists, generator, buildCfg): argument 388 moduleCaseLists[package.module] = getCaseList(buildCfg, generator, package.module)
|
/external/deqp/external/openglcts/scripts/ |
D | build_caselists.py | 102 def getModulesPath (buildCfg): argument 103 return os.path.join(buildCfg.getBuildDir(), GLCTS_DIR_NAME) 111 def getCaseListPath (buildCfg, module, caseListType): argument 112 workDir = getModulesPath(buildCfg) 116 def genCaseList (buildCfg, generator, caseListType): argument 117 workDir = getModulesPath(buildCfg) 122 binPath = generator.getBinaryPath(buildCfg.getBuildType(), os.path.join(".", GLCTS_BIN_NAME)) 127 def genAndCopyCaseList (buildCfg, generator, module, dstDir, caseListType): argument 129 srcPath = getCaseListPath(buildCfg, module, caseListType) 135 genCaseList(buildCfg, generator, module, caseListType)
|
D | mustpass.py | 141 def getCaseList (buildCfg, generator, module): argument 142 return readCaseList(getCaseListPath(buildCfg, module, "txt")) 415 def genMustpassLists (mustpassLists, generator, buildCfg): argument 419 build(buildCfg, generator, [GLCTS_BIN_NAME]) 420 genCaseList(buildCfg, generator, "txt") 424 moduleCaseLists[package.module] = getCaseList(buildCfg, generator, package.module)
|
/external/deqp/external/vulkancts/scripts/ |
D | build_spirv_binaries.py | 63 def execBuildPrograms (buildCfg, generator, module, dstPath, vulkanVersion): argument 65 workDir = os.path.join(buildCfg.getBuildDir(), "modules", module.dirName) 70 binPath = generator.getBinaryPath(buildCfg.getBuildType(), os.path.join(".", "vk-build-programs")) 110 buildCfg = getBuildConfig(args.buildDir, args.targetName, args.buildType) variable 113 build(buildCfg, generator, ["vk-build-programs"]) 118 execBuildPrograms(buildCfg, generator, module, args.dstPath, args.vulkanVersion)
|