beremiz
Clone
Summary
Browse
Changes
Graph
Make Beremiz_service print version information
2018-08-20, Andrey Skvortsov
da288f63612f
file is
Executable
Make Beremiz_service print version information
Add support for long options '--help' and '--version' as
is recommended by GNU Coding Standards.
#!/bin/sh
LC_ALL=ru_RU.utf-8
export DISPLAY=:42
Xvfb $DISPLAY -screen 0 1280x1024x24 &
sleep 1
ret=0
DELAY=400
KILL_DELAY=$(($DELAY + 30))
timeout -k $KILL_DELAY $DELAY pytest --timeout=10 ./tests/tools
ret=$?
pkill -9 Xvfb
exit $ret