settings test: Print expected and seen values

That test breaks locally (and in CI it seems?), so at least print the
values we see.
This commit is contained in:
Timm Bäder 2021-12-13 15:26:00 +01:00
parent 0682a5e45e
commit e411081c84

View File

@ -10,8 +10,11 @@ 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 50 ]; then
echo "ok 1 $name"
EXPECTED=50
SEEN=$(wc -l $result | cut -f1 -d' ')
if [ $SEEN -eq $EXPECTED ]; then
echo "ok 1 $name."
else
echo "not ok 1 $name"
echo "not ok 1 $name. Expected: $EXPECTED. Seen: $SEEN"
fi