From 7405b7fbcd47c55015ebb06292e56260b3c5e10b Mon Sep 17 00:00:00 2001 From: Pierre-Eric Pelloux-Prayer Date: Mon, 20 Sep 2021 16:58:30 +0200 Subject: [PATCH] radeonsi/test: use -t for deqp tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit deqp-runner added support for this. Acked-by: Marek Olšák Part-of: --- src/gallium/drivers/radeonsi/ci/radeonsi-run-tests.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/gallium/drivers/radeonsi/ci/radeonsi-run-tests.py b/src/gallium/drivers/radeonsi/ci/radeonsi-run-tests.py index 8266375b38e..3889061857a 100755 --- a/src/gallium/drivers/radeonsi/ci/radeonsi-run-tests.py +++ b/src/gallium/drivers/radeonsi/ci/radeonsi-run-tests.py @@ -309,10 +309,6 @@ if args.glcts: verify_results(baseline, new_baseline) if args.deqp: - if args.include_tests: - print_yellow("dEQP tests cannot be run with the -t/--include-tests option yet.") - sys.exit(0) - print_yellow("Running dEQP tests", args.verbose > 0) # Generate a test-suite file @@ -367,7 +363,7 @@ if args.deqp: os.path.join(output_folder, "deqp"), "--suite", suite_filename, - ] + ] + filters_args run_cmd(cmd, args.verbose) shutil.copy(os.path.join(out, "failures.csv"), new_baseline) verify_results(baseline, new_baseline)