mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-08 09:40:10 +00:00
8f0b38b462
One of our tests counts our settings. Not super-useful, but lets keep it working.
21 lines
420 B
Bash
Executable File
21 lines
420 B
Bash
Executable File
#! /bin/bash
|
|
|
|
GTK_QUERY_SETTINGS=${GTK_QUERY_SETTINGS:-gtk4-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
|
|
EXPECTED=52
|
|
SEEN=$(wc -l $result | cut -f1 -d' ')
|
|
|
|
if [ $SEEN -eq $EXPECTED ]; then
|
|
echo "ok 1 $name."
|
|
else
|
|
echo "not ok 1 $name. Expected: $EXPECTED. Seen: $SEEN"
|
|
fi
|