From 97663bac2eee9db00476b0145a5abf1da195fe32 Mon Sep 17 00:00:00 2001 From: Pierre-Eric Pelloux-Prayer Date: Thu, 16 Sep 2021 16:38:17 +0200 Subject: [PATCH] radeonsi/test: fix typo in the test script MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit glcts results were copied over deqp results. Reviewed-by: Marek Olšák Part-of: --- 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)