Module Name: src
Committed By: martin
Date: Sun Feb 2 08:16:22 UTC 2014
Modified Files:
src/tests/lib/libc/gen: t_floatunditf.c
Log Message:
Add a few more test values from the range that sparc64 previously would
have got wrong.
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/tests/lib/libc/gen/t_floatunditf.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/tests/lib/libc/gen/t_floatunditf.c
diff -u src/tests/lib/libc/gen/t_floatunditf.c:1.4 src/tests/lib/libc/gen/t_floatunditf.c:1.5
--- src/tests/lib/libc/gen/t_floatunditf.c:1.4 Sat Feb 1 13:53:16 2014
+++ src/tests/lib/libc/gen/t_floatunditf.c Sun Feb 2 08:16:22 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: t_floatunditf.c,v 1.4 2014/02/01 13:53:16 martin Exp $ */
+/* $NetBSD: t_floatunditf.c,v 1.5 2014/02/02 08:16:22 martin Exp $ */
/*-
* Copyright (c) 2014 The NetBSD Foundation, Inc.
@@ -37,6 +37,9 @@ static const struct {
long double ld;
} testcases[] = {
{ 0xffffffffffffffffULL, 0xf.fffffffffffffffp+60L },
+ { 0xfffffffffffffffeULL, 0xf.ffffffffffffffep+60L },
+ { 0xfffffffffffffffdULL, 0xf.ffffffffffffffdp+60L },
+ { 0xfffffffffffffffcULL, 0xf.ffffffffffffffcp+60L },
{ 0x7fffffffffffffffULL, 0xf.ffffffffffffffep+59L },
{ 0x3fffffffffffffffULL, 0xf.ffffffffffffffcp+58L },
{ 0x1fffffffffffffffULL, 0xf.ffffffffffffff8p+57L },