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