andrej@1820: #!/bin/sh
andrej@1820: 
andrej@1825: LC_ALL=ru_RU.utf-8
andrej@1820: 
andrej@1820: export DISPLAY=:42
andrej@1820: Xvfb $DISPLAY -screen 0 1280x1024x24 &
andrej@1820: sleep 1
andrej@1820: 
andrej@1820: ret=0
andrej@1820: DELAY=400
andrej@1820: KILL_DELAY=$(($DELAY + 30))
andrej@1820: timeout -k $KILL_DELAY $DELAY pytest --timeout=10 ./tests/tools
andrej@1820: ret=$?
andrej@1820: 
andrej@1820: pkill -9 Xvfb
andrej@1820: 
andrej@1820: exit $ret