Home
last modified time | relevance | path

Searched refs:buildCfg (Results 1 – 5 of 5) 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"))
381 def genMustpassLists (mustpassLists, generator, buildCfg): argument
388 moduleCaseLists[package.module] = getCaseList(buildCfg, generator, package.module)
/external/deqp/external/openglcts/scripts/
Dbuild_caselists.py102 def getModulesPath (buildCfg): argument
103 return os.path.join(buildCfg.getBuildDir(), GLCTS_DIR_NAME)
111 def getCaseListPath (buildCfg, module, caseListType): argument
112 workDir = getModulesPath(buildCfg)
116 def genCaseList (buildCfg, generator, caseListType): argument
117 workDir = getModulesPath(buildCfg)
122 binPath = generator.getBinaryPath(buildCfg.getBuildType(), os.path.join(".", GLCTS_BIN_NAME))
127 def genAndCopyCaseList (buildCfg, generator, module, dstDir, caseListType): argument
129 srcPath = getCaseListPath(buildCfg, module, caseListType)
135 genCaseList(buildCfg, generator, module, caseListType)
Dmustpass.py141 def getCaseList (buildCfg, generator, module): argument
142 return readCaseList(getCaseListPath(buildCfg, module, "txt"))
415 def genMustpassLists (mustpassLists, generator, buildCfg): argument
419 build(buildCfg, generator, [GLCTS_BIN_NAME])
420 genCaseList(buildCfg, generator, "txt")
424 moduleCaseLists[package.module] = getCaseList(buildCfg, generator, package.module)
/external/deqp/external/vulkancts/scripts/
Dbuild_spirv_binaries.py63 def execBuildPrograms (buildCfg, generator, module, dstPath, vulkanVersion): argument
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)