1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-11-03 04:23:42 -05:00
rofi/test/run_test.sh
Dave Davenport 06c7f30b7e Use timeout.
2016-01-08 23:15:28 +01:00

43 lines
615 B
Bash
Executable file

#!/usr/bin/env bash
XPID=
FPID=
function create_fake_x ( )
{
export DISPLAY=":$1"
echo "Starting fake X: ${DISPLAY}"
Xvfb ${DISPLAY} &
XPID=$!
sleep 1;
timeout -k 30s 30s fluxbox &
FPID=$!
sleep 1
}
function destroy_fake_x ( )
{
if [ -n "${XPID}" ]
then
echo "Stopping fake X: ${XPID} - ${FPID}"
kill ${FPID}
echo " wait flux"
wait ${FPID}
kill ${XPID}
echo "wait x"
wait ${XPID}
fi
}
if [ -n "$3" ]
then
export PATH=$3:$PATH
fi
create_fake_x "$1"
echo "$DISPLAY"
$2 $4
RES=$?
destroy_fake_x
exit ${RES}