mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-07 23:03:06 +00:00
27 lines
521 B
Bash
27 lines
521 B
Bash
|
#!/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 \
|
||
|
DEQP_PARALLEL=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
|
||
|
|