1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-10-27 05:23:18 -04:00
rofi/test/run_script_test.sh
Dave Davenport ca6b1a8178 Fixing path.
2015-11-28 12:59:10 +01:00

26 lines
451 B
Bash
Executable file

#!/usr/bin/env bash
SP=$(readlink -f "$0")
DIR=$(dirname "$SP")
echo "$DIR/test_script.sh"
# wait till it is up, run rofi with error message
sleep 1;
rofi -modi "custom:$DIR/test_script.sh" -show custom &
RPID=$!
# send enter.
sleep 5;
xdotool key 'Down'
sleep 0.4
xdotool key Return
# Get result, kill xvfb
wait ${RPID}
RETV=$?
OUTPUT=$(cat output.txt | tr '\n' ' ')
echo ${OUTPUT}
if [ "${OUTPUT}" != 'noot ' ]
then
exit 1
fi
exit ${RETV}