radeonsi/test: use -t for deqp tests

deqp-runner added support for this.

Acked-by: Marek Olšák <marek.olsak@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12899>
This commit is contained in:
Pierre-Eric Pelloux-Prayer 2021-09-20 16:58:30 +02:00 committed by Marge Bot
parent ac9ab028ce
commit 7405b7fbcd

View file

@ -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)