Home
last modified time | relevance | path

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

/third_party/vk-gl-cts/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.py160 def getCaseDict (buildCfg, generator, module): argument
161 build(buildCfg, generator, [module.binName])
162 genCaseList(buildCfg, generator, module, "txt")
163 return readCaseDict(getCaseListPath(buildCfg, module, "txt"))
455 def genMustpassLists (mustpassLists, generator, buildCfg): argument
462 moduleCaseDicts[package.module] = getCaseDict(buildCfg, generator, package.module)
/third_party/vk-gl-cts/external/openglcts/scripts/
Dbuild_caselists.py109 def getModulesPath (buildCfg): argument
110 return os.path.join(buildCfg.getBuildDir(), GLCTS_DIR_NAME)
118 def getCaseListPath (buildCfg, module, caseListType): argument
119 workDir = getModulesPath(buildCfg)
123 def genCaseList (buildCfg, generator, caseListType): argument
124 workDir = getModulesPath(buildCfg)
129 binPath = generator.getBinaryPath(buildCfg.getBuildType(), os.path.join(".", GLCTS_BIN_NAME))
134 def genAndCopyCaseList (buildCfg, generator, module, dstDir, caseListType): argument
136 srcPath = getCaseListPath(buildCfg, module, caseListType)
142 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/
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)