Home
last modified time | relevance | path

Searched refs:buildCfg (Results 1 – 3 of 3) sorted by relevance

/external/deqp/scripts/
Dbuild_caselists.py66 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 …]
Dmustpass.py148 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"))
368 def genMustpassLists (mustpassLists, generator, buildCfg): argument
375 moduleCaseLists[package.module] = getCaseList(buildCfg, generator, package.module)
/external/deqp/external/vulkancts/scripts/
Dbuild_spirv_binaries.py62 def execBuildPrograms (buildCfg, generator, module, dstPath): argument
64 workDir = os.path.join(buildCfg.getBuildDir(), "modules", module.dirName)
69 binPath = generator.getBinaryPath(buildCfg.getBuildType(), os.path.join(".", "vk-build-programs"))
103 buildCfg = getBuildConfig(args.buildDir, args.targetName, args.buildType) variable
106 build(buildCfg, generator, ["vk-build-programs"])
111 execBuildPrograms(buildCfg, generator, module, args.dstPath)