mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2024-12-04 15:44:06 +08:00
9ddfd297e0
We can use the general "how parallel should we go on this runner?" env var and save a bunch of massaging env var names. Fixes how PIGLIT_PARALLEL looked like it was useful but actually wasn't passed through to HW runners. Reviewed-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com> Reviewed-by: Tomeu Vizoso <tomeu.vizoso@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/13372>
27 lines
525 B
Bash
Executable File
27 lines
525 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# This test script groups together a bunch of fast dEQP variant runs
|
|
# to amortize the cost of rebooting the board.
|
|
|
|
set -ex
|
|
|
|
EXIT=0
|
|
|
|
# Run reset tests without parallelism:
|
|
if ! env \
|
|
DEQP_RESULTS_DIR=results/reset \
|
|
FDO_CI_CONCURRENT=1 \
|
|
DEQP_CASELIST_FILTER='.*reset.*' \
|
|
/install/deqp-runner.sh; then
|
|
EXIT=1
|
|
fi
|
|
|
|
# Then run everything else with parallelism:
|
|
if ! env \
|
|
DEQP_RESULTS_DIR=results/nonrobustness \
|
|
DEQP_CASELIST_INV_FILTER='.*reset.*' \
|
|
/install/deqp-runner.sh; then
|
|
EXIT=1
|
|
fi
|
|
|