1#!/bin/sh 2 3# This test script groups together a bunch of fast dEQP variant runs 4# to amortize the cost of rebooting the board. 5 6set -ex 7 8EXIT=0 9 10# Run reset tests without parallelism: 11if ! env \ 12 DEQP_RESULTS_DIR=results/reset \ 13 FDO_CI_CONCURRENT=1 \ 14 DEQP_CASELIST_FILTER='.*reset.*' \ 15 /install/deqp-runner.sh; then 16 EXIT=1 17fi 18 19# Then run everything else with parallelism: 20if ! env \ 21 DEQP_RESULTS_DIR=results/nonrobustness \ 22 DEQP_CASELIST_INV_FILTER='.*reset.*' \ 23 /install/deqp-runner.sh; then 24 EXIT=1 25fi 26 27