rofi/test/run_dmenu_normal_window_tes...

35 lines
692 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 17:40:39 +00:00
ulimit -c unlimited
2016-07-18 22:16:49 +00:00
echo -e -n "aap\nnoot\nmies" | rofi -dmenu -normal-window -multi-select > output.txt &
RPID=$!
sleep 4
2016-01-05 16:14:47 +00: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 09:10:50 +00:00
xdotool key Shift+Return
xdotool key Return
# Get result, kill xvfb
wait ${RPID}
RETV=$?
2016-08-19 17:40:39 +00:00
if [ "${RETV}" == "139" ]
then
echo "thread apply all bt" | gdb rofi core.*
fi
2019-02-02 11:35:37 +00:00
OUTPUT=$( tr '\n' ' ' < output.txt )
if [ "${OUTPUT}" != 'noot mies ' ]
then
echo "Got: '${OUTPUT}' expected 'noot mies '"
exit 1
fi
echo ${RETV}
exit ${RETV}