seatd/.builds/smoketest-builtin.sh

35 lines
535 B
Bash
Raw Normal View History

2020-07-31 00:23:15 +02:00
#!/bin/sh
res=0
# Devices that exist on sr.ht
if [ -e "/dev/input/event0" ]
then
file="/dev/input/event0"
elif [ -e "/dev/dri/card0" ]
then
file="/dev/dri/card0"
else
echo "No useful device file found"
exit 1
fi
2020-07-31 00:23:15 +02:00
#
# Run simpletest a few times
#
cnt=0
while [ "$cnt" -lt 5 ]
do
echo "Simpletest run $cnt"
if ! sudo LIBSEAT_BACKEND=builtin LIBSEAT_LOGLEVEL=debug SEATD_SOCK=./seatd.sock ./build/simpletest $file
2020-07-31 00:23:15 +02:00
then
echo "Simpletest failed"
res=1
break
fi
cnt=$((cnt+1))
done
exit $res