1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-11-11 13:50:48 -05:00
rofi/test/run_dmenu_normal_window_test.sh

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