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);
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to