1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-11-03 04:23:42 -05:00

test-x: Try to run tests without fluxbox

Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net>
This commit is contained in:
Quentin Glidic 2017-05-30 15:07:48 +02:00
parent f6e1c8fe15
commit faa88343f0
No known key found for this signature in database
GPG key ID: AC203F96E2C34BB7

View file

@ -9,9 +9,11 @@ function create_fake_x ( )
Xvfb +extension XINERAMA +xinerama -screen 0 1280x1024x24 -screen 1 800x600x24 ${DISPLAY} &>test-x-logs/xserver-:$1.log &
XPID=$!
sleep 1;
timeout -k 30s 30s fluxbox &>test-x-logs/fluxbox-:$1.log &
FPID=$!
sleep 1
if [ -x "$(which fluxbox 2>/dev/null)" ]; then
timeout -k 30s 30s fluxbox &>test-x-logs/fluxbox-:$1.log &
FPID=$!
sleep 1
fi
}
function destroy_fake_x ( )
@ -19,9 +21,11 @@ function destroy_fake_x ( )
if [ -n "${XPID}" ]
then
echo "Stopping fake X: ${XPID} - ${FPID}"
kill ${FPID}
echo " wait flux"
wait ${FPID}
if [ -n "${FPID}" ]; then
kill ${FPID}
echo " wait flux"
wait ${FPID}
fi
kill ${XPID}
echo "wait x"
wait ${XPID}