mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
- Show the output of the exact .rpl run that failed with 'make test'.
This commit is contained in:
parent
9e6b838d0b
commit
9177867d07
2 changed files with 8 additions and 7 deletions
12
Makefile.in
12
Makefile.in
|
|
@ -345,14 +345,12 @@ test: unittest$(EXEEXT) testbound$(EXEEXT)
|
||||||
./unittest$(EXEEXT)
|
./unittest$(EXEEXT)
|
||||||
./testbound$(EXEEXT) -s
|
./testbound$(EXEEXT) -s
|
||||||
for x in $(srcdir)/testdata/*.rpl; do \
|
for x in $(srcdir)/testdata/*.rpl; do \
|
||||||
printf "%s" "$$x "; \
|
output=`./testbound$(EXEEXT) -p $$x -o -vvvvv 2>&1`; \
|
||||||
if ./testbound$(EXEEXT) -p $$x >/dev/null 2>&1; then \
|
if test $$? -eq 0; then \
|
||||||
echo OK; \
|
printf "%s OK\n" "$$x "; \
|
||||||
else \
|
else \
|
||||||
echo failed; \
|
printf "%s\n" "$$output "; \
|
||||||
./testbound$(EXEEXT) -p $$x -o -vvvvv; \
|
printf "%s failed\n" "$$x "; \
|
||||||
printf "%s" "$$x "; \
|
|
||||||
echo failed; \
|
|
||||||
exit 1; \
|
exit 1; \
|
||||||
fi; \
|
fi; \
|
||||||
done
|
done
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,6 @@
|
||||||
|
28 June 2022: George
|
||||||
|
- Show the output of the exact .rpl run that failed with 'make test'.
|
||||||
|
|
||||||
23 June 2022: Tom
|
23 June 2022: Tom
|
||||||
- Clarify -v flag manpage entry (#705)
|
- Clarify -v flag manpage entry (#705)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue