summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/panfrost/ci/deqp-runner.sh
blob: 68d9bc1fc878fd6c1935176b70d352a8af8da46f (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/bin/sh

set -x

# To prevent memory leaks from slowing throughput, restart everything between batches
BATCH_SIZE=5000

DEQP_OPTIONS="--deqp-surface-width=256 --deqp-surface-height=256"
DEQP_OPTIONS="$DEQP_OPTIONS --deqp-visibility=hidden"
DEQP_OPTIONS="$DEQP_OPTIONS --deqp-log-images=disable"
DEQP_OPTIONS="$DEQP_OPTIONS --deqp-watchdog=enable"
DEQP_OPTIONS="$DEQP_OPTIONS --deqp-crashhandler=enable"

export XDG_RUNTIME_DIR=/tmp
export LIBGL_DRIVERS_PATH=/mesa/lib/dri/
export LD_LIBRARY_PATH=/mesa/lib/
export XDG_CONFIG_HOME=$(pwd)

echo "[core]\nidle-time=0\nrequire-input=false\n[shell]\nlocking=false" > weston.ini

cd /deqp/modules/gles2

# Generate test case list file
weston --tty=7 &
sleep 1  # Give some time for Weston to start up
./deqp-gles2 $DEQP_OPTIONS --deqp-runmode=stdout-caselist | grep "TEST: dEQP-GLES2" | cut -d ' ' -f 2 > /tmp/case-list.txt

# Disable for now tests that are very slow, either by just using lots of CPU or by crashing
sed -i '/dEQP-GLES2.performance/d' /tmp/case-list.txt
sed -i '/dEQP-GLES2.functional.texture.filtering.2d.linear_mipmap_linear_/d' /tmp/case-list.txt
sed -i '/dEQP-GLES2.functional.texture.filtering.cube.linear_mipmap_linear_/d' /tmp/case-list.txt
sed -i '/dEQP-GLES2.functional.texture.filtering.cube.linear_mipmap_nearest_/d' /tmp/case-list.txt

# Cannot use tee because dash doesn't have pipefail
touch /tmp/result.txt
tail -f /tmp/result.txt &

while [ -s /tmp/case-list.txt ]; do
	head -$BATCH_SIZE /tmp/case-list.txt > /tmp/next-batch.txt
	./deqp-gles2 $DEQP_OPTIONS --deqp-log-filename=/dev/null --deqp-caselist-file=/tmp/next-batch.txt >> /tmp/result.txt
	if [ $? -ne 0 ]; then
		# Continue from the subtest after the failing one
		crashed_test=$(grep "Test case" /tmp/result.txt | tail -1 | sed "s/Test case '\(.*\)'\.\./\1/")
		sed -i "0,/^$crashed_test$/d" /tmp/case-list.txt

		# So LAVA knows what happened
		echo "Test case '$crashed_test'.."
		echo "  Crash"
	else
		# Consume a whole batch
	    sed -i '1,'$BATCH_SIZE'd' /tmp/case-list.txt
	fi
done