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

TOP_DIR=$1

xrdb -retain -load ${TOP_DIR}/doc/test_xr.txt
rofi -dump-xresources > temp.txt

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

exit ${RETV}