freebsd_amp_hwpstate/contrib/gdtoa/test
David Schultz c88250a57d Import of the latest gdtoa sources, which include fixes for minor
problems relating to NaNs and rounding.
2007-01-03 04:58:54 +00:00
..
Q.ou0
Q.ou1
Qtest.c Import of the latest gdtoa sources, which include fixes for minor 2007-01-03 04:58:54 +00:00
README
d.out
dI.out
dIsi.out
dItest.c Import of the latest gdtoa sources, which include fixes for minor 2007-01-03 04:58:54 +00:00
dd.out
ddsi.out
ddtest.c Import of the latest gdtoa sources, which include fixes for minor 2007-01-03 04:58:54 +00:00
dt.c Import of the latest gdtoa sources, which include fixes for minor 2007-01-03 04:58:54 +00:00
dtest.c Import of the latest gdtoa sources, which include fixes for minor 2007-01-03 04:58:54 +00:00
dtst.out Import of the latest gdtoa sources, which include fixes for minor 2007-01-03 04:58:54 +00:00
f.out
ftest.c Import of the latest gdtoa sources, which include fixes for minor 2007-01-03 04:58:54 +00:00
getround.c Import of the latest gdtoa sources, which include fixes for minor 2007-01-03 04:58:54 +00:00
makefile Import of the latest gdtoa sources, which include fixes for minor 2007-01-03 04:58:54 +00:00
rtestnos
strtoIdSI.c
strtoIddSI.c
strtodISI.c
strtodt.c Import of the latest gdtoa sources, which include fixes for minor 2007-01-03 04:58:54 +00:00
strtopddSI.c
strtorddSI.c
testnos
testnos1
testnos3
x.ou0 Import of the latest gdtoa sources, which include fixes for minor 2007-01-03 04:58:54 +00:00
x.ou1 Import of the latest gdtoa sources, which include fixes for minor 2007-01-03 04:58:54 +00:00
xL.ou0
xL.ou1 Import of the latest gdtoa sources, which include fixes for minor 2007-01-03 04:58:54 +00:00
xLtest.c Import of the latest gdtoa sources, which include fixes for minor 2007-01-03 04:58:54 +00:00
xQtest.c
xsum0.out Import of the latest gdtoa sources, which include fixes for minor 2007-01-03 04:58:54 +00:00
xtest.c Import of the latest gdtoa sources, which include fixes for minor 2007-01-03 04:58:54 +00:00

README

This directory contains source for several test programs:

dt is for conversion to/from double; it permits input of pairs of
32-bit hex integers as #hhhhhhhh hhhhhhhh (i.e., the initial '#'
indicates hex input).  No initial # ==> decimal input.
After the input number is an optional : mode ndigits
(colon, and decimal integers for parameters "mode" and "ndigits"
to gdtoa).

Qtest, ddtest, dtest, ftest, xLtest and xtest are for conversion to/from

	f	IEEE single precision
	d	IEEE double precision
	xL	IEEE extended precision, as on Motorola 680x0 chips
	x	IEEE extended precision, as on Intel 80x87 chips or
			software emulation of Motorola 680x0 chips
	Q	quad precision, as on Sun Sparc chips
	dd	double double, pairs of IEEE double numbers
		whose sum is the desired value

They're all similar, except for the precision.  They test both
directed roundings and interval input (the strtoI* routines).
Lines that begin with "r" specify or interrogate the desired rounding
direction:

	0 = toward 0
	1 = nearest (default)
	2 = toward +Infinity
	3 = toward -Infinity

These are the FPI_Round_* values in gdota.h.  The "r" value is sticky:
it stays in effect til changed.  To change the value, give a line that
starts with r followed by 0, 1, 2, or 3.  To check the value, give "r"
by itself.

Lines that begin with n followed by a number specify the ndig
argument for subsequent calls to the relevant g_*fmt routine.

Lines that start with # followed by the appropriate number of
hexadecimal strings (see the comments) give the big-endian
internal representation of the desired number.

When routines Qtest, xLtest, and xtest are used on machines whose
long double is of type "quad" (for Qtest) or "extended" (for x*test),
they try to print with %Lg as another way to show binary values.

Program ddtest also accepts (white-space separated) pairs of decimal
input numbers; it converts both with strtod and feeds the result
to g_ddfmt.

Program dItest exercises strtodI and strtoId.

Programs dItestsi and ddtestsi are for testing the sudden-underflow
logic (on double and double-double conversions).

Program strtodt tests strtod on some hard cases (in file testnos3)
posted by Fred Tydeman to comp.arch.arithmetic on 26 Feb. 1996.

These are simple test programs, not meant for exhaustive testing,
but for manually testing "interesting" cases.  Paxson's testbase
is good for more exhaustive testing, in part with random inputs.