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 e102e11637 Update test
2015-12-31 23:02:13 +01:00

35 lines
451 B
Bash
Executable file

#!/usr/bin/env bash
XPID=
function create_fake_x ( )
{
export DISPLAY=":$1"
echo "Starting fake X: ${DISPLAY}"
Xvfb ${DISPLAY} &
XPID=$!
sleep 1
}
function destroy_fake_x ( )
{
if [ -n "${XPID}" ]
then
echo "Stopping fake X: ${XPID}"
kill ${XPID}
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}