/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 | 149 def getCaseList (buildCfg, generator, module): argument 150 build(buildCfg, generator, [module.binName]) 151 genCaseList(buildCfg, generator, module, "txt") 152 return readCaseList(getCaseListPath(buildCfg, module, "txt")) 386 def genMustpassLists (mustpassLists, generator, buildCfg): argument 393 moduleCaseLists[package.module] = getCaseList(buildCfg, generator, package.module)
|
/external/deqp/external/openglcts/scripts/ |
D | build_caselists.py | 105 def getModulesPath (buildCfg): argument 106 return os.path.join(buildCfg.getBuildDir(), GLCTS_DIR_NAME) 114 def getCaseListPath (buildCfg, module, caseListType): argument 115 workDir = getModulesPath(buildCfg) 119 def genCaseList (buildCfg, generator, caseListType): argument 120 workDir = getModulesPath(buildCfg) 125 binPath = generator.getBinaryPath(buildCfg.getBuildType(), os.path.join(".", GLCTS_BIN_NAME)) 130 def genAndCopyCaseList (buildCfg, generator, module, dstDir, caseListType): argument 132 srcPath = getCaseListPath(buildCfg, module, caseListType) 138 genCaseList(buildCfg, generator, module, caseListType)
|
D | mustpass.py | 142 def getCaseList (buildCfg, generator, module): argument 143 return readCaseList(getCaseListPath(buildCfg, module, "txt")) 425 def genMustpassLists (mustpassLists, generator, buildCfg): argument 429 build(buildCfg, generator, [GLCTS_BIN_NAME]) 430 genCaseList(buildCfg, generator, "txt") 434 moduleCaseLists[package.module] = getCaseList(buildCfg, generator, package.module)
|
/external/deqp/external/vulkancts/scripts/ |
D | build_spirv_binaries.py | 62 def execBuildPrograms (buildCfg, generator, module, dstPath, vulkanVersion): argument 64 workDir = os.path.join(buildCfg.getBuildDir(), "modules", module.dirName) 69 binPath = generator.getBinaryPath(buildCfg.getBuildType(), os.path.join(".", "vk-build-programs")) 109 buildCfg = getBuildConfig(args.buildDir, args.targetName, args.buildType) variable 112 build(buildCfg, generator, ["vk-build-programs"]) 117 execBuildPrograms(buildCfg, generator, module, args.dstPath, args.vulkanVersion)
|