Home
last modified time | relevance | path

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

/third_party/vk-gl-cts/scripts/
Dbuild_caselists.py67 def getModulesPath (buildCfg): argument
68 return os.path.join(buildCfg.getBuildDir(), "modules")
70 def getBuiltModules (buildCfg): argument
72 modulesDir = getModulesPath(buildCfg)
84 def getCaseListPath (buildCfg, module, caseListType): argument
85 …return os.path.join(getModulesPath(buildCfg), module.dirName, getCaseListFileName(module, caseList…
87 def genCaseList (buildCfg, generator, module, caseListType): argument
88 workDir = os.path.join(getModulesPath(buildCfg), module.dirName)
93 binPath = generator.getBinaryPath(buildCfg.getBuildType(), os.path.join(".", module.binName))
98 def genAndCopyCaseList (buildCfg, generator, module, dstDir, caseListType): argument
[all …]
Dmustpass.py197 def getCaseDict (buildCfg, generator, module): argument
198 build(buildCfg, generator, [module.binName])
199 genCaseList(buildCfg, generator, module, "txt")
200 return readCaseDict(getCaseListPath(buildCfg, module, "txt"))
623 def genMustpassLists (mustpassLists, generator, buildCfg): argument
630 moduleCaseDicts[package.module] = getCaseDict(buildCfg, generator, package.module)
/third_party/vk-gl-cts/external/openglcts/scripts/
Dbuild_caselists.py110 def getModulesPath (buildCfg): argument
111 return os.path.join(buildCfg.getBuildDir(), GLCTS_DIR_NAME)
119 def getCaseListPath (buildCfg, module, caseListType): argument
120 workDir = getModulesPath(buildCfg)
124 def genCaseList (buildCfg, generator, caseListType): argument
125 workDir = getModulesPath(buildCfg)
130 binPath = generator.getBinaryPath(buildCfg.getBuildType(), os.path.join(".", GLCTS_BIN_NAME))
135 def genAndCopyCaseList (buildCfg, generator, module, dstDir, caseListType): argument
137 srcPath = getCaseListPath(buildCfg, module, caseListType)
143 genCaseList(buildCfg, generator, module, caseListType)
Dmustpass.py142 def getCaseList (buildCfg, generator, module): argument
143 return readCaseList(getCaseListPath(buildCfg, module, "txt"))
427 def genMustpassLists (mustpassLists, generator, buildCfg): argument
431 build(buildCfg, generator, [GLCTS_BIN_NAME])
432 genCaseList(buildCfg, generator, "txt")
436 moduleCaseLists[package.module] = getCaseList(buildCfg, generator, package.module)
/third_party/vk-gl-cts/external/vulkancts/scripts/
Damber_verify.py52 def execBuildPrograms (buildCfg, generator, module): argument
53 workDir = os.path.join(buildCfg.getBuildDir(), "modules", module.dirName)
58 binPath = generator.getBinaryPath(buildCfg.getBuildType(), os.path.join(".", "deqp-vk"))
92 buildCfg = getBuildConfig(args.buildDir, args.targetName, args.buildType) variable
95 build(buildCfg, generator, ["deqp-vk"])
100 execBuildPrograms(buildCfg, generator, module)
Dbuild_spirv_binaries.py62 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)