Lines Matching defs:run
16 # Requirements to run the script:
111 help="Recipes to only run parts of script.",
112 choices=["run-deqp", "check-comparison"],
113 default="run-deqp",
121 help="Compare two different run results.",
143 # Check that we have everything needed to run the script when using recipe run-deqp.
144 if ARGS.recipe == "run-deqp":
232 run(["./run_testlist.sh", deqpVkParam, validationLayerParam, testListParam], working_dir=REGRES_DIR)
235 def run(command: str, working_dir: str = Path.cwd()) -> None:
236 """Run command using subprocess.run()"""
237 subprocess.run(command, cwd=working_dir, check=True)
401 run([which("python3"), FETCH_SOURCES], working_dir=VK_GL_CTS_ROOT_DIR)
405 run([which("cmake"), "-GNinja", str(VK_GL_CTS_ROOT_DIR), buildType], working_dir=VK_GL_CTS_BUILD_DIR)
406 run([which("ninja"), "deqp-vk"], working_dir=VK_GL_CTS_BUILD_DIR)
414 run([which("git"), "clone", SWIFTSHADER_URL, SWS_SRC_DIR])
416 run([which("git"), "pull", "origin"], working_dir=SWS_SRC_DIR)
419 run([which("cmake"),
430 run([which("cmake"), "--build", ".", "--target", "vk_swiftshader"], working_dir=SWS_BUILD_DIR)
437 run([which("git"), "clone", LAYERS_URL, LAYERS_SRC_DIR])
439 run([which("git"), "pull", "origin"], working_dir=LAYERS_SRC_DIR)
444 run([which("python3"), UPDATE_DEPS], working_dir=LAYERS_BUILD_DIR)
445 run([which("cmake"),
451 run([which("cmake"), "--build", "."], working_dir=LAYERS_BUILD_DIR)
470 if ARGS.recipe == "run-deqp":