Module: Mesa Branch: main Commit: 97663bac2eee9db00476b0145a5abf1da195fe32 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=97663bac2eee9db00476b0145a5abf1da195fe32
Author: Pierre-Eric Pelloux-Prayer <[email protected]> Date: Thu Sep 16 16:38:17 2021 +0200 radeonsi/test: fix typo in the test script glcts results were copied over deqp results. Reviewed-by: Marek Olšák <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12899> --- src/gallium/drivers/radeonsi/ci/radeonsi-run-tests.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gallium/drivers/radeonsi/ci/radeonsi-run-tests.py b/src/gallium/drivers/radeonsi/ci/radeonsi-run-tests.py index 5b386b26bef..71ec64aa1b1 100755 --- a/src/gallium/drivers/radeonsi/ci/radeonsi-run-tests.py +++ b/src/gallium/drivers/radeonsi/ci/radeonsi-run-tests.py @@ -312,9 +312,10 @@ if args.deqp: print_yellow("Running dEQP tests", args.verbose > 0) # Generate a test-suite file + out = os.path.join(output_folder, "deqp") suite_filename = os.path.join(output_folder, "deqp-suite.toml") suite = open(suite_filename, "w") - os.mkdir(os.path.join(output_folder, "deqp")) + os.mkdir(out) baseline = os.path.join(base, "{}-deqp-fail.csv".format(gpu_name)) new_baseline = os.path.join( new_baseline_folder, "{}-deqp-fail.csv".format(gpu_name)
