about summary refs log tree commit diff
path: root/stdlib/tst-strtod.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-10-29 17:38:14 +0000
committerUlrich Drepper <drepper@redhat.com>1999-10-29 17:38:14 +0000
commitcd33623e19125a1c68fdb3866828d1dc31502cf5 (patch)
tree219ea89721650635534cba563523eb05048b54c5 /stdlib/tst-strtod.c
parent061d137bd7c64e3f80ec524685c4bccf98248f58 (diff)
downloadglibc-cd33623e19125a1c68fdb3866828d1dc31502cf5.tar.gz
glibc-cd33623e19125a1c68fdb3866828d1dc31502cf5.tar.xz
glibc-cd33623e19125a1c68fdb3866828d1dc31502cf5.zip
Update.
1999-10-29  Andreas Jaeger  <aj@suse.de>

	* math/gen-libm-test.pl: New file to generate a table of
	libm-test-ulps values.

1999-10-29  Ulrich Drepper  <drepper@cygnus.com>

	* sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: New file.
	* sysdeps/unix/sysv/linux/sparc/sparc64/profil-counter.h: Expect
	struct sigcontext* object as second parameter for profil_counter.
	Patches by Jakub Jelinek <jakub@redhat.com>.

1999-10-29  Andreas Jaeger  <aj@suse.de>

	* sysdeps/unix/sysv/linux/fpathconf.c (__fpathconf): Handle reiserfs.
	* sysdeps/unix/sysv/linux/pathconf.c: Likewise.

	* sysdeps/unix/sysv/linux/linux_fsinfo.h: Add values for devpts,
	efs, qnx4 and reiser file systems.

1999-10-29  Andreas Jaeger  <aj@suse.de>

	* locale/Makefile (others): Set to localedef and locale for make
	clean.

	* debug/Makefile (generated): Add xtrace for make clean to work.

1999-10-29  Andreas Jaeger  <aj@suse.de>

	* stdlib/tst-strtod.c: Add two testcases for hexadecimal input.

1999-10-25  Andreas Jaeger  <aj@suse.de>

	* math/libm-test.inc: Added code to ignore the given max ulps.
	(print_max_error): Check for ignore_max_ulp.
	(check_float_internal): Likewise.
	(parse_opt): Parse --ignore-max-ulp.
	(main): Initialize ignore_max_ulp.
Diffstat (limited to 'stdlib/tst-strtod.c')
-rw-r--r--stdlib/tst-strtod.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/stdlib/tst-strtod.c b/stdlib/tst-strtod.c
index 4f0ea34367..ac4394886e 100644
--- a/stdlib/tst-strtod.c
+++ b/stdlib/tst-strtod.c
@@ -39,6 +39,8 @@ static const struct ltest tests[] =
     { "0e-19", 0, '\0', 0 },
     { "4\00012", 4.0, '\0', 0 },
     { "5.9e-76", 5.9e-76, '\0', 0 },
+    { "0x1.4p+3", 10.0, '\0', 0 },
+    { "0x0A", 10.0, '\0', 0 },
     { NULL, 0, '\0', 0 }
   };