forked from AuroraMiddleware/gtk
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:
parent
0682a5e45e
commit
e411081c84
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user