svn commit: r251120 - head/tools/regression/lib/msun
David Schultz
das at FreeBSD.org
Thu May 30 04:47:03 UTC 2013
Author: das
Date: Thu May 30 04:47:03 2013
New Revision: 251120
URL: http://svnweb.freebsd.org/changeset/base/251120
Log:
Fix some harmless bugs in a test.
Modified:
head/tools/regression/lib/msun/test-rem.c
Modified: head/tools/regression/lib/msun/test-rem.c
==============================================================================
--- head/tools/regression/lib/msun/test-rem.c Thu May 30 04:46:36 2013 (r251119)
+++ head/tools/regression/lib/msun/test-rem.c Thu May 30 04:47:03 2013 (r251120)
@@ -67,8 +67,8 @@ main(int argc, char *argv[])
test(4, 4, 0, 1);
test(0, 3.0, 0, 0);
- testd(0x1p-1074, 1, 0x1p-1074, 0x1p-1074);
- testf(0x1p-149, 1, 0x1p-149, 0x1p-149);
+ testd(0x1p-1074, 1, 0x1p-1074, 0);
+ testf(0x1p-149, 1, 0x1p-149, 0);
test(3.0, 4, -1, 1);
test(3.0, -4, -1, -1);
testd(275 * 1193040, 275, 0, 1193040);
More information about the svn-src-head
mailing list