summaryrefslogtreecommitdiff
path: root/.gitlab-ci/bare-metal/arm64_a630_egl.sh
blob: b97dc1e3b726e9bc6f0fb8681813d095d323c3ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/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