libvirt/tests/test_conf.sh
Daniel P. Berrange e8ac4a79f1 Make test suite output less verbose
Only print out '.' for each test case, full test output can be
re-enabled with VIR_TEST_VERBOSE=1, or VIR_TEST_DEBUG=XXXX

Sample output now looks like

  TEST: statstest
        ........................................ 40
        ...................................      75  OK
  PASS: statstest
  TEST: qparamtest
        ................................         32  OK
  PASS: qparamtest
  TEST:
        ............                             12  OK
2010-01-15 16:28:05 +00:00

29 lines
504 B
Bash
Executable File

#!/bin/sh
test -z "$srcdir" && srcdir=$(pwd)
. "$srcdir/test-lib.sh"
test_intro $this_test
fail=0
i=0
data_dir=$abs_srcdir/confdata
for f in $(cd "$data_dir" && echo *.conf)
do
i=`expr $i + 1`
"$abs_builddir/conftest" "$data_dir/$f" > "$f-actual"
expected="$data_dir"/`echo "$f" | sed s+\.conf$+\.out+`
if compare "$expected" "$f-actual"; then
ret=0
else
ret=1
fail=1
fi
test_result $i "$f" $ret
done
test_final $i $fail
(exit $fail); exit $fail