From: Petr Špaček Date: Tue, 5 Jan 2021 14:32:33 +0000 (+0100) Subject: Document new system test output format after build system rewrite X-Git-Tag: v9.18.0~8^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=631ee5801007dbc5d5265281039b335ff2de1a67;p=thirdparty%2Fbind9.git Document new system test output format after build system rewrite Fixup to MR !985. --- diff --git a/doc/dev/dev.md b/doc/dev/dev.md index 1c4e6e6d1ef..9da3b9f1a4f 100644 --- a/doc/dev/dev.md +++ b/doc/dev/dev.md @@ -143,7 +143,7 @@ To run the tests, build BIND (be sure to use --with-atf to run unit tests), then run `make` `check`. An easy way to check the results: $ make check 2>&1 | tee /tmp/check.out - $ grep '^R:' /tmp/check.out | sort | uniq -c + $ grep -A 10 'Testsuite summary' /tmp/check.out This will show all of the test results. One or two "R:SKIPPED" is okay; if there are a lot of them, then you probably forgot to create the loopback @@ -153,6 +153,10 @@ unit tests, so you can't rely on it to catch everything.) To run only the system tests, omitting unit tests: + $ make test + +Or: + $ cd bin/tests/system $ sh runall.sh