|
NAMEtests —
introduction to the FreeBSD Test
Suite
DESCRIPTIONThe FreeBSD Test Suite provides a collection of automated tests for two major purposes. On one hand, the test suite aids developers to detect bugs and regressions when they modify the source tree. On the other hand, it allows end users (and, in particular, system administrators) to verify that fresh installations of the FreeBSD operating system behave correctly on their hardware platform and also to ensure that the system does not suffer from regressions during regular operation and maintenance.The FreeBSD Test Suite can be found in the /usr/tests hierarchy. This manual page describes how to run the test suite and how to configure some of its optional features. For information on writing the tests, see atf(7). Installing the test suiteIf the /usr/tests directory is missing, then you will have to enable the build of the test suite, rebuild your system and install the results. You can do so by setting ‘WITH_TESTS=yes’ in your /etc/src.conf file (see src.conf(5) for details) and rebuilding the system as described in build(7).When to run the tests?Before diving into the details of how to run the test suite, here are some scenarios in which you should run it:
Running the testsUse the following command to run the whole test suite:$ kyua test -k /usr/tests/Kyuafile The above will iterate through all test programs in /usr/tests recursively, execute them, store their results and debugging data in Kyua's database (by default in ~/.kyua/store.db), and print a summary of the results. This summary includes a brief count of all total tests run and how many of them failed. It is possible to restrict which tests to run by providing their names in the command line. For example, this would execute the tests for the cp(1) and cut(1) utilities: $ kyua test -k /usr/tests/Kyuafile bin/cp usr.bin/cut Obtaining reports of the tests executionAdditional information about the test results can be retrieved by using Kyua's various reporting commands. For example, the following would print a plain-text report of the executed tests and show which ones failed:$ kyua report This example would generate an HTML report ready to be published on a web server: $ kyua report-html --output ~/public_html/tests For further details on the command-line interface of Kyua, please refer to its manual page kyua(1). Configuring the testsSome test cases in the FreeBSD Test Suite require manual configuration by the administrator before they can be run. Unless certain properties are defined, the tests that require them will be skipped.Test suites are configured by defining their configuration variables in /etc/kyua/kyua.conf. The format of this file is detailed in kyua.conf(5). The following configuration variables are available in the FreeBSD Test Suite:
What to do if something fails?If there is any failure during the execution of the test suite, please consider reporting it to the FreeBSD developers so that the failure can be analyzed and fixed. To do so, either send a message to the appropriate mailing list or file a problem report. For more details please refer to:FILES
SEE ALSOkyua(1), atf(7), build(7), development(7)HISTORYThe FreeBSD Test Suite first appeared in FreeBSD 10.1 and was installed by default in FreeBSD 11.0.The The test driver, kyua(1), was imported as part of the base system in FreeBSD 13.0, previously being available only in ports(7). AUTHORSJulio Merino <jmmv@FreeBSD.org>
Visit the GSP FreeBSD Man Page Interface. |