Add sysdeps/ieee754/soft-fp.
[glibc.git] / math / README.libm-test
blob0271f83f3b744c04d9329b1d44c456e4a3d5e371
1 README for libm-test math test suite
2 ====================================
4 The libm-test math test suite tests a number of function points of
5 math functions in the GNU C library.  The following sections contain a
6 brief overview.  Please note that the test drivers and the Perl script
7 "gen-libm-test.pl" have some options.  A full list of options is
8 available with --help (for the test drivers) and -h for
9 "gen-libm-test.pl".
12 What is tested?
13 ===============
14 The tests just evaluate the functions at specified points and compare
15 the results with precomputed values and the requirements of the ISO
16 C99 standard.
18 Besides testing the special values mandated by IEEE 754 (infinities,
19 NaNs and minus zero), some more or less random values are tested.
21 Files that are part of libm-test
22 ================================
24 The main files are "libm-test-<func>.inc".  They are independent of
25 the target platform and the specific real floating type and format and
26 contain placeholder test "templates" for math functions defined in
27 libm.  These files, along with generated files named
28 "auto-libm-test-out-<func>", are preprocessed by the Perl script
29 "gen-libm-test.pl" to expand the templates and produce a set of test
30 cases for each math function that are specific to the target platform
31 but still independent of the real floating type.  The results of the
32 processing are "libm-test-<func>.c" and a file "libm-test-ulps.h" with
33 platform specific deltas by which the actual math function results may
34 deviate from the expected results and still be considered correct.
36 The test drivers "test-double-<func>.c", "test-float-<func>.c", and
37 "test-ldouble-<func>.c", generated by the Makefile, test the normal
38 double, float and long double implementation of libm.  The test
39 drivers with an 'i' in their name ("test-idouble-<func>.c",
40 "test-ifloat-<func>.c", and "test-ildoubl-<func>.c") test the
41 corresponding inline functions (where available - otherwise they also
42 test the real functions in libm).  Each driver selects the desired
43 real floating type to exercise the math functions to test with (float,
44 double, or long double) by defining a small set of macros just before
45 including the generic "libm-test.c" file.  Each driver also either
46 defines or undefines the __NO_MATH_INLINES macro just before including
47 "libm-test-<func>.c" to select either the real or inline functions,
48 respectively.  Each driver is compiled into a single executable test
49 program with the corresponding name.
51 As mentioned above, the "gen-libm-test.pl" script looks for a file
52 named "libm-test-ulps" in the platform specific sysdep directory (or
53 its fpu or nofpu subdirectory) and for each variant (real floating
54 type and rounding mode) of every tested function reads from it the
55 maximum difference expressed as Units of Least Precision (ULP) the
56 actual result of the function may deviate from the expected result
57 before it's considered incorrect.
59 The "auto-libm-test-out-<func>" files contain sets of test cases to
60 exercise, the conditions under which to exercise each, and the
61 expected results.  The files are generated by the
62 "gen-auto-libm-tests" program from the "auto-libm-test-in" file.  See
63 the comments in gen-auto-libm-tests.c for details about the content
64 and format of the -in and -out files.
66 How can I generate "libm-test-ulps"?
67 ====================================
69 To automatically generate a new "libm-test-ulps" run "make regen-ulps".
70 This generates the file "math/NewUlps" in the build directory.  The file
71 contains the sorted results of all the tests.  You can use the "NewUlps"
72 file as the machine's updated "libm-test-ulps" file.  Copy "NewUlps" to
73 "libm-test-ulps" in the appropriate machine sysdep directory.  Verify
74 the changes, post your patch, and check it in after review.
76 To manually generate a new "libm-test-ulps" file, first remove "ULPs"
77 file in the current directory, then you can execute for example:
78     ./testrun.sh math/test-double -u --ignore-max-ulp=yes
79 This generates a file "ULPs" with all double ULPs in it, ignoring any
80 previously calculated ULPs, and running with the newly built dynamic
81 loader and math library (assumes you didn't install your build).  Now
82 generate the ULPs for all other formats, the tests will be appending the
83 data to the "ULPs" file.  As final step run "gen-libm-test.pl" with the
84 file as input and ask to generate a pretty printed output in the file
85 "NewUlps":
86   gen-libm-test.pl -u ULPs -n NewUlps
87 Copy "NewUlps" to "libm-test-ulps" in the appropriate machine sysdep
88 directory.
90 Note that the test drivers have an option "-u" to output an unsorted
91 list of all epsilons that the functions have.  The output can be read
92 in directly but it's better to pretty print it first.
93 "gen-libm-test.pl" has an option to generate a pretty-printed and
94 sorted new ULPs file from the output of the test drivers.
96 Contents of libm-test-ulps
97 ==========================
99 Since libm-test-ulps can be generated automatically, just a few notes.
100 The file contains lines for maximal errors of single functions, like:
102 Function "yn":
103 idouble: 6
105 The keywords are float, ifloat, double, idouble, ldouble and ildouble
106 (the prefix i stands for inline).
108 Adding tests to libm-test-<func>.inc
109 ====================================
111 The tests are evaluated by a set of special test macros.  The macros
112 start with "TEST_" followed by a specification the input values, an
113 underscore and a specification of the output values.  As an example,
114 the test macro for a function with input of type FLOAT (FLOAT is
115 either float, double, long double) and output of type FLOAT is
116 "TEST_f_f".  The macro's parameter are the name of the function, the
117 input parameter, output parameter and optionally one exception
118 parameter.
120 The accepted parameter types are:
121 - "f" for FLOAT
122 - "j" for long double.
123 - "b" for boolean - just tests if the output parameter evaluates to 0
124   or 1 (only for output).
125 - "c" for complex.  This parameter needs two values, first the real,
126   then the imaginary part.
127 - "i" for int.
128 - "l" for long int.
129 - "L" for long long int.
130 - "u" for unsigned int.
131 - "M" for intmax_t.
132 - "U" for uintmax_t.
133 - "p" for an argument (described in the previous character) passed
134   through a pointer rather than directly.
135 - "F" for the address of a FLOAT (only as input parameter)
136 - "I" for the address of an int (only as input parameter)
137 - "1" for an additional output (either output through a pointer passed
138   as an argument, or to a global variable such as signgam).
140 How to read the test output
141 ===========================
143 Running each test on its own at the default level of verbosity will
144 print on stdout a line describing the implementation of math functions
145 exercised by the test (float, double, or long double), along with
146 whether the inline set has been selected, regardless of whether or
147 not any inline functions actually exist.  This is then followed by
148 the details of test failures (if any).  The output concludes by
149 a summary listing the number of test cases exercised and the number
150 of test failures uncovered.
152 For each test failure (and for each test case at higher levels of
153 verbosity), the output contains the name of the function under test
154 and its arguments or conditions that triggered the failure.  Note
155 that the name of the function in the output need not correspond
156 exactly to the name of the math function actually invoked. For example,
157 the output will refer to the "acos" function even if the actual function
158 under test is acosf (for the float version) or acosl (for the long
159 double version).  Also note that the function arguments may be shown
160 in either the decimal or the  hexadecimal floating point format which
161 may or may not correspond to the format used in the auto-libm-test-in
162 file. Besides the name of the function, for each test failure the
163 output contains the actual and expected results and the difference
164 between the two, printed in both the decimal and hexadecimal
165 floating point format, and the ULP and maximum ULP for the test
166 case.