rofi/test/xr_dump_test.sh

15 lines
248 B
Bash
Raw Normal View History

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