gtk2/testsuite/tools/settings.in
Matthias Clasen f8f94ab329 Install tools tests
At the same time, update the expected test output to match
the current tools output, and write diff and ref files in /tmp.
2017-10-18 17:30:20 +02:00

18 lines
354 B
Bash
Executable File

#! /bin/bash
GTK_QUERY_SETTINGS=${GTK_QUERY_SETTINGS:-gtk-query-settings}
TEST_RESULT_DIR=${TEST_RESULT_DIR:-/tmp}
shopt -s nullglob
echo "1..1"
name=gtk-query-settings
result=$TEST_RESULT_DIR/$name.out
$GTK_QUERY_SETTINGS 2>/dev/null >$result
if [ $(wc -l $result | cut -f1 -d' ') -eq 882 ]; then
echo "ok 1 $name"
else
echo "not ok 1 $name"
fi