summaryrefslogtreecommitdiffstats
path: root/test/xr_dump_test.sh
blob: 1c4f6caa6b34c57bed56f3112f45c4e6fd49b669 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env bash

TOP_DIR=$1

xrdb -retain -load ${TOP_DIR}/doc/test_xr.txt
rofi -config ${TOP_DIR}/doc/test_xr.txt -dump-xresources | grep -v "rofi.display-" | grep -v "The display name of this browser"  > temp.txt

if ! diff temp.txt ${TOP_DIR}/doc/test_xr.txt > /dev/null
then
    echo "Dump xresources does not match."
    diff temp.txt ${TOP_DIR}/doc/test_xr.txt 
    exit 1;
fi

exit ${RETV}