Searched refs:buildCfg (Results 1 - 6 of 6) sorted by relevance
/third_party/vk-gl-cts/scripts/ |
H A D | build_caselists.py | 67 def getModulesPath (buildCfg): 68 return os.path.join(buildCfg.getBuildDir(), "modules") 70 def getBuiltModules (buildCfg): 72 modulesDir = getModulesPath(buildCfg) 84 def getCaseListPath (buildCfg, module, caseListType): 85 return os.path.join(getModulesPath(buildCfg), module.dirName, getCaseListFileName(module, caseListType)) 87 def genCaseList (buildCfg, generator, module, caseListType): 88 workDir = os.path.join(getModulesPath(buildCfg), module.dirName) 93 binPath = generator.getBinaryPath(buildCfg.getBuildType(), os.path.join(".", module.binName)) 98 def genAndCopyCaseList (buildCfg, generato 147 buildCfg = getBuildConfig(args.buildDir, args.targetName, args.buildType) global() variable [all...] |
H A D | mustpass.py | 125 def readAndSortCaseList (buildCfg, generator, module): 126 build(buildCfg, generator, [module.binName]) 127 genCaseList(buildCfg, generator, module, "txt") 128 filePath = getCaseListPath(buildCfg, module, "txt") 419 def genMustpassLists (mustpassLists, generator, buildCfg): 426 moduleCaseLists[package.module] = readAndSortCaseList(buildCfg, generator, package.module)
|
/third_party/vk-gl-cts/external/openglcts/scripts/ |
H A D | build_caselists.py | 111 def getModulesPath (buildCfg): 112 return os.path.join(buildCfg.getBuildDir(), GLCTS_DIR_NAME) 120 def getCaseListPath (buildCfg, module, caseListType): 121 workDir = getModulesPath(buildCfg) 125 def genCaseList (buildCfg, generator, caseListType): 126 workDir = getModulesPath(buildCfg) 131 binPath = generator.getBinaryPath(buildCfg.getBuildType(), os.path.join(".", GLCTS_BIN_NAME)) 136 def genAndCopyCaseList (buildCfg, generator, module, dstDir, caseListType): 138 srcPath = getCaseListPath(buildCfg, module, caseListType) 144 genCaseList(buildCfg, generato [all...] |
H A D | mustpass.py | 143 def getCaseList (buildCfg, generator, module): 144 return readCaseList(getCaseListPath(buildCfg, module, "txt")) 428 def genMustpassLists (mustpassLists, generator, buildCfg): 432 build(buildCfg, generator, [GLCTS_BIN_NAME]) 433 genCaseList(buildCfg, generator, "txt") 437 moduleCaseLists[package.module] = getCaseList(buildCfg, generator, package.module)
|
/third_party/vk-gl-cts/external/vulkancts/scripts/ |
H A D | amber_verify.py | 53 def execBuildPrograms (buildCfg, generator, module): 54 workDir = os.path.join(buildCfg.getBuildDir(), "modules", module.dirName) 59 binPath = generator.getBinaryPath(buildCfg.getBuildType(), os.path.join(".", "deqp-vk")) 93 buildCfg = getBuildConfig(args.buildDir, args.targetName, args.buildType) variable 96 build(buildCfg, generator, ["deqp-vk"]) 101 execBuildPrograms(buildCfg, generator, module)
|
H A D | build_spirv_binaries.py | 63 def execBuildPrograms (buildCfg, generator, module, dstPath, vulkanVersion): 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)
|
Completed in 3 milliseconds