radeonsi/test: fix test script args handling

Fixes: 20055a307d ("radeonsi: add -t option to the test script")
Acked-by: Marek Olšák <marek.olsak@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12306>
This commit is contained in:
Pierre-Eric Pelloux-Prayer 2021-08-10 14:04:02 +02:00
parent fd62e0b799
commit ac321c6fcf
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ parser.add_argument(
default=os.getenv("MAREKO_BUILD_PATH"),
)
parser.add_argument('--verbose', '-v', action='count', default=0)
parser.add_argument('--include-tests', '-t', action='append', dest="include_tests")
parser.add_argument('--include-tests', '-t', action='append', dest="include_tests", default=[])
parser.add_argument(
"--no-piglit", dest="piglit", help="Disable piglit tests", action="store_false"