2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-22 10:10:06 +00:00

Switch autoconf references to meson in readme

This commit is contained in:
Aydın Mercan 2025-06-16 11:15:40 +03:00
parent 5c9b4f3163
commit b4c1f9ee09
No known key found for this signature in database

View File

@ -120,10 +120,10 @@ Administrator Reference Manual.
### <a name="testing"/> Automated testing ### <a name="testing"/> Automated testing
A system test suite can be run with `make check`. The system tests require A system test suite can be run with `pytest bin/tests/system`. The system
you to configure a set of virtual IP addresses on your system (this allows tests require you to configure a set of virtual IP addresses on your system
multiple servers to run locally and communicate with each other). These (this allows multiple servers to run locally and communicate with each other).
IP addresses can be configured by running the command These IP addresses can be configured by running the command
`bin/tests/system/ifconfig.sh up` as root. `bin/tests/system/ifconfig.sh up` as root.
Some tests require Perl and the `Net::DNS` and/or `IO::Socket::IP` modules, Some tests require Perl and the `Net::DNS` and/or `IO::Socket::IP` modules,
@ -132,8 +132,8 @@ and the `dnspython` module and are skipped if these are not available.
See bin/tests/system/README for further details. See bin/tests/system/README for further details.
Unit tests are implemented using the CMocka unit testing framework. To build Unit tests are implemented using the CMocka unit testing framework. To build
them, use `configure --with-cmocka`. Execution of tests is done by the automake them, use the option `-Dcmocka=enabled`. Execution of unit tests is done by the
parallel test driver; unit tests are also run by `make check`. meson's test functionality; run by `meson test`.
### <a name="doc"/> Documentation ### <a name="doc"/> Documentation