As noted by apb, don't slip in local pathes.
[netbsd-mini2440.git] / regress / README
blob08f8b54fa76b857115af08727b570607d1c3d3ae
1 $NetBSD$
3 This part of the source tree contains regression tests. There are special
4 make targets and rules to follow. Most of these, however, are currently not
5 enforced, and most tests available are not conforming.
7 We hope to fix this someday. If you add new tests, please try to be conforming.
9 What is a regression test?
11   A regression test is run by a makefile in a test directory (see below).
12   Each makefile may run multiple tests.
14 What is a test directory?
16   A directory in this part of the tree is a regression test directory. It
17   contains a Makefile which implements the additional "regress" target,
18   and runs all it's regression tests during this target.
20 May the make progress be stopped on failures?
22   No, the "make regress" target should succeed, unless some regression 
23   binaries could not be build, disk is full or other catastrophic failures
24   outside of the tested subsystem happen. A failing regression test should
25   log the failure (see below), but not make the target itself fail.
27 What are the possible results of a regression test?
29   A test may either
31   - succeed, in which case it logs "PASSED" (see below for logging details)
32   - fail, in which case it logs "FAILED"
33   - not be able to run, in which case it logs "SKIPPED" and the reason
34     for the skip in the comment field (see below)
36   Typical reasons for tests to not being run are missing kernel options,
37   or missing privileges (test needs root, "make regress" is invoked by
38   mere mortal or vice versa). A test may not fail because of such
39   environmental issues, it must detect and properly log the problem.
41   If a test directory contains tests that may be skipped, it should have
42   a README file explaining the prerequisites (e.g. needed kernel options)
44   In future, we will mark affected makefiles and optimize run/skipped test
45   during repeated runs with differing privileges - but currently there is no
46   make framework in place to handle this.
48 How and when does a test log results?
50   If the make/environment variable ${REGRESS_LOG} is defined, the final
51   results (and only those) should be logged to the file named by that
52   variable. We will, in the future, add make targets for this purpose.
53   The log format is line oriented, one line used per test. Each line
54   consists of the directory where the Makefile lives, followed by the
55   test name and the result (see above: PASSED, FAILED, SKIPPED).
56   Following this an optional comment may be added. For SKIPPED tests the
57   comment is not optional. Fields are separated by spaces.