mirror of
https://github.com/NLnetLabs/unbound.git
synced 2026-01-31 10:49:27 -05:00
- Fix test tdir skip report printout.
This commit is contained in:
parent
a102fb1df8
commit
9842fbf760
2 changed files with 5 additions and 2 deletions
|
|
@ -1,5 +1,6 @@
|
|||
3 October 2022: Wouter
|
||||
- Fix to remove erroneous TC flag from TCP upstream.
|
||||
- Fix test tdir skip report printout.
|
||||
|
||||
26 September 2022: George
|
||||
- Better output for skipped tdir tests.
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@ if test "$1" = "-f" && test "$2" = "report"; then
|
|||
fi
|
||||
elif test -f ".skip-$name"; then
|
||||
echo ".. SKIPPED.. $timelen $name: $desc"
|
||||
skip=`expr $pass + 1`
|
||||
skip=`expr $skip + 1`
|
||||
else
|
||||
if test -f "result.$name"; then
|
||||
echo "!! FAILED !! $timelen $name: $desc"
|
||||
|
|
@ -92,7 +92,9 @@ if test "$1" = "report" || test "$2" = "report"; then
|
|||
if test -f "result.$name"; then
|
||||
echo "!! FAILED !! : $name"
|
||||
else
|
||||
echo ".. SKIPPED.. : $name"
|
||||
if test $quiet = 0; then
|
||||
echo ".. SKIPPED.. : $name"
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
done
|
||||
|
|
|
|||
Loading…
Reference in a new issue