1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2025-01-27 15:25:24 -05:00
rofi/test/run_dmenu_normal_window_test.sh

35 lines
694 B
Bash
Raw Normal View History

#!/usr/bin/env bash
# wait till it is up, run rofi with error message
sleep 1;
2016-08-19 19:40:39 +02:00
ulimit -c unlimited
2016-07-19 00:16:49 +02:00
echo -e -n "aap\nnoot\nmies" | rofi -dmenu -normal-window -multi-select > output.txt &
RPID=$!
sleep 4
2016-01-05 17:14:47 +01:00
xdotool getactivewindow windowsize 100% 100%
echo "Window resized"
# send enter.
sleep 1
xdotool key 'Down'
sleep 0.4
xdotool key Shift+Return
2016-06-26 11:10:50 +02:00
xdotool key Shift+Return
xdotool key Return
# Get result, kill xvfb
wait ${RPID}
RETV=$?
2016-08-19 19:40:39 +02:00
if [ "${RETV}" == "139" ]
then
echo "thread apply all bt" | gdb rofi core.*
fi
OUTPUT=$(cat output.txt | tr '\n' ' ')
if [ "${OUTPUT}" != 'noot mies ' ]
then
echo "Got: '${OUTPUT}' expected 'noot mies '"
exit 1
fi
echo ${RETV}
exit ${RETV}