source: branches/libc-0.6/src/libctests/glibc/math/README.libm-test

Last change on this file was 2036, checked in by bird, 20 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 4.1 KB
Line 
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
6brief 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
8available with --help (for the test drivers) and -h for
9"gen-libm-test.pl".
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
24The main file is "libm-test.inc". It is platform and floating point
25format independent. The file must be preprocessed by the Perl script
26"gen-libm-test.pl". The results are "libm-test.c" and a file
27"libm-test-ulps.h" with platform specific deltas.
28
29The test drivers test-double.c, test-float.c, test-ldouble.c test the
30normal double, float and long double implementation of libm. The test
31drivers with an i in it (test-idouble.c, test-ifloat.c,
32test-ildoubl.c) test the corresponding inline functions (where
33available - otherwise they also test the real functions in libm).
34
35"gen-libm-test.pl" needs a platform specific files with ULPs (Units of
36Last Precision). The file is called "libm-test-ulps" and lives in
37platform specific sysdep directory.
38
39How can I generate "libm-test-ulps"?
40====================================
41
42The test drivers have an option "-u" to output an unsorted list of all
43epsilons that the functions have. The output can be read in directly
44but it's better to pretty print it first. "gen-libm-test.pl" has an option
45to generate a pretty-printed and sorted new ULPs file from the output
46of the test drivers.
47
48To generate a new "libm-test-ulps" file, first remove "ULPs" file in the
49current directory, then you can execute for example:
50test-double -u --ignore-max-ulp=yes
51This generates a file "ULPs" with all double ULPs in it, ignoring any
52previous calculated ULPs.
53Now generate the ULPs for all other formats, the tests will be appending
54the data to the "ULPs" file. As final step run "gen-libm-test.pl" with the
55file as input and ask to generate a pretty printed output in the file "NewUlps":
56 gen-libm-test.pl -u ULPs -n
57
58Now you can rename "NewUlps" to "libm-test-ulps" and move it into
59sysdeps.
60
61Contents of libm-test-ulps
62==========================
63Since libm-test-ulps can be generated automatically, just a few
64notes. The file contains lines for single tests, like:
65Test "cos (pi/2) == 0":
66float: 1
67
68and lines for maximal errors of single functions, like:
69Function "yn":
70idouble: 6.0000
71
72The keywords are float, ifloat, double, idouble, ldouble and ildouble
73(the prefix i stands for inline). You can also specify known
74failures, e.g.:
75
76Test "cos (pi/2) == 0":
77float: 1
78float: fail
79
80Adding tests to libm-test.inc
81=============================
82
83The tests are evaluated by a set of special test macros. The macros
84start with "TEST_" followed by a specification the input values, an
85underscore and a specification of the output values. As an example,
86the test macro for a function with input of type FLOAT (FLOAT is
87either float, double, long double) and output of type FLOAT is
88"TEST_f_f". The macro's parameter are the name of the function, the
89input parameter, output parameter and optionally one exception
90parameter.
91
92The accepted parameter types are:
93- "f" for FLOAT
94- "b" for boolean - just tests if the output parameter evaluates to 0
95 or 1 (only for output).
96- "c" for complex. This parameter needs two values, first the real,
97 then the imaginary part.
98- "i" for int.
99- "l" for long int.
100- "L" for long long int.
101- "F" for the address of a FLOAT (only as input parameter)
102- "I" for the address of an int (only as input parameter)
103
104Some functions need special handling. For example gamma sets the
105global variable signgam and frexp takes an argument to &int. This
106special treatment is coded in "gen-libm-test.pl" and used while
107parsing "libm-test.inc".
Note: See TracBrowser for help on using the repository browser.