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

15 lines
248 B
Bash
Raw Normal View History

2015-12-31 16:45:36 -05:00
#!/usr/bin/env bash
2015-12-31 17:02:13 -05:00
TOP_DIR=$1
xrdb -retain -load ${TOP_DIR}/doc/test_xr.txt
2015-12-31 16:45:36 -05:00
rofi -dump-xresources > temp.txt
2015-12-31 17:02:13 -05:00
if ! diff temp.txt ${TOP_DIR}/doc/test_xr.txt > /dev/null
2015-12-31 16:45:36 -05:00
then
echo "Dump xresources does not match."
exit 1;
fi
exit ${RETV}