]> git.ipfire.org Git - thirdparty/glibc.git/blame - math/README.libm-test
i686: Add INTERNAL_SYSCALL_NCS 6 argument support
[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
1c15464c
AZ
38double, float and long double implementation of libm. Each driver
39selects the desired real floating type to exercise the math functions
40to test with (float, double, or long double) by defining a small set
41of macros just before including the generic "libm-test.c" file. Each
42driver also either defines or undefines the __NO_MATH_INLINES macro
43just before including "libm-test-<func>.c" to select either the real
44or inline functions, respectively. Each driver is compiled into a
45single executable test program with the corresponding name.
527de9e4 46
2813e41e 47As mentioned above, the "gen-libm-test.py" script looks for a file
527de9e4
MS
48named "libm-test-ulps" in the platform specific sysdep directory (or
49its fpu or nofpu subdirectory) and for each variant (real floating
50type and rounding mode) of every tested function reads from it the
51maximum difference expressed as Units of Least Precision (ULP) the
52actual result of the function may deviate from the expected result
53before it's considered incorrect.
54
4f1bc131
JM
55The "auto-libm-test-out-<func>" files contain sets of test cases to
56exercise, the conditions under which to exercise each, and the
57expected results. The files are generated by the
58"gen-auto-libm-tests" program from the "auto-libm-test-in" file. See
59the comments in gen-auto-libm-tests.c for details about the content
60and format of the -in and -out files.
a9b5d2ee
UD
61
62How can I generate "libm-test-ulps"?
63====================================
64
26510bdd
CD
65To automatically generate a new "libm-test-ulps" run "make regen-ulps".
66This generates the file "math/NewUlps" in the build directory. The file
67contains the sorted results of all the tests. You can use the "NewUlps"
68file as the machine's updated "libm-test-ulps" file. Copy "NewUlps" to
69"libm-test-ulps" in the appropriate machine sysdep directory. Verify
70the changes, post your patch, and check it in after review.
71
72To manually generate a new "libm-test-ulps" file, first remove "ULPs"
73file in the current directory, then you can execute for example:
085b2d41 74 ./testrun.sh math/test-double -u --ignore-max-ulp=yes
a9b5d2ee 75This generates a file "ULPs" with all double ULPs in it, ignoring any
26510bdd
CD
76previously calculated ULPs, and running with the newly built dynamic
77loader and math library (assumes you didn't install your build). Now
78generate the ULPs for all other formats, the tests will be appending the
2813e41e 79data to the "ULPs" file. As final step run "gen-libm-test.py" with the
26510bdd
CD
80file as input and ask to generate a pretty printed output in the file
81"NewUlps":
2813e41e 82 gen-libm-test.py -u ULPs -n NewUlps
26510bdd
CD
83Copy "NewUlps" to "libm-test-ulps" in the appropriate machine sysdep
84directory.
85
86Note that the test drivers have an option "-u" to output an unsorted
87list of all epsilons that the functions have. The output can be read
88in directly but it's better to pretty print it first.
2813e41e 89"gen-libm-test.py" has an option to generate a pretty-printed and
26510bdd 90sorted new ULPs file from the output of the test drivers.
a9b5d2ee
UD
91
92Contents of libm-test-ulps
93==========================
a9b5d2ee 94
e6b6a857
JM
95Since libm-test-ulps can be generated automatically, just a few notes.
96The file contains lines for maximal errors of single functions, like:
97
a9b5d2ee 98Function "yn":
1c15464c 99double: 6
a9b5d2ee 100
1c15464c 101The keywords are float, double, and ldouble.
a9b5d2ee 102
5cbb5849
JM
103Adding tests to libm-test-<func>.inc
104====================================
a9b5d2ee
UD
105
106The tests are evaluated by a set of special test macros. The macros
107start with "TEST_" followed by a specification the input values, an
108underscore and a specification of the output values. As an example,
109the test macro for a function with input of type FLOAT (FLOAT is
110either float, double, long double) and output of type FLOAT is
111"TEST_f_f". The macro's parameter are the name of the function, the
112input parameter, output parameter and optionally one exception
113parameter.
114
115The accepted parameter types are:
116- "f" for FLOAT
76475eae 117- "j" for long double.
8e554659 118- "a" for ARG_FLOAT, the argument type for narrowing functions.
a9b5d2ee
UD
119- "b" for boolean - just tests if the output parameter evaluates to 0
120 or 1 (only for output).
121- "c" for complex. This parameter needs two values, first the real,
122 then the imaginary part.
123- "i" for int.
124- "l" for long int.
125- "L" for long long int.
76475eae
JM
126- "u" for unsigned int.
127- "M" for intmax_t.
128- "U" for uintmax_t.
129- "p" for an argument (described in the previous character) passed
130 through a pointer rather than directly.
a9b5d2ee
UD
131- "F" for the address of a FLOAT (only as input parameter)
132- "I" for the address of an int (only as input parameter)
76475eae
JM
133- "1" for an additional output (either output through a pointer passed
134 as an argument, or to a global variable such as signgam).
527de9e4
MS
135
136How to read the test output
137===========================
138
139Running each test on its own at the default level of verbosity will
140print on stdout a line describing the implementation of math functions
1c15464c
AZ
141exercised by the test (float, double, or long double). This is then
142followed by the details of test failures (if any). The output concludes
143by a summary listing the number of test cases exercised and the number
527de9e4
MS
144of test failures uncovered.
145
146For each test failure (and for each test case at higher levels of
147verbosity), the output contains the name of the function under test
148and its arguments or conditions that triggered the failure. Note
149that the name of the function in the output need not correspond
150exactly to the name of the math function actually invoked. For example,
151the output will refer to the "acos" function even if the actual function
152under test is acosf (for the float version) or acosl (for the long
153double version). Also note that the function arguments may be shown
154in either the decimal or the hexadecimal floating point format which
155may or may not correspond to the format used in the auto-libm-test-in
156file. Besides the name of the function, for each test failure the
157output contains the actual and expected results and the difference
158between the two, printed in both the decimal and hexadecimal
159floating point format, and the ULP and maximum ULP for the test
160case.