This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.17-678-gb861c6c


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  b861c6c4c95126758339f5684431f77352381f59 (commit)
      from  86ee76a086527ac1041aee824937256c3af0a17f (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=b861c6c4c95126758339f5684431f77352381f59

commit b861c6c4c95126758339f5684431f77352381f59
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Wed May 15 16:58:41 2013 +0000

    Consistently use TEST_f_L in tests of llrint and llround.

diff --git a/ChangeLog b/ChangeLog
index c238afd..d14d73e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,13 @@
 2013-05-15  Joseph Myers  <joseph@codesourcery.com>
 
+	* math/libm-test.inc (llrint_test): Consistently use TEST_f_L
+	instead of TEST_f_l.
+	(llrint_test_tonearest): Likewise.
+	(llrint_test_towardzero): Likewise.
+	(llrint_test_downward): Likewise.
+	(llrint_test_upward): Likewise.
+	(llround_test): Likewise.
+
 	* math/libm-test.inc (struct test_f_i_data): Add comment.
 	(RUN_TEST_LOOP_f_b): New macro.
 	(RUN_TEST_LOOP_f_b_tg): Likewise.
diff --git a/math/libm-test.inc b/math/libm-test.inc
index f1e122d..af6d28c 100644
--- a/math/libm-test.inc
+++ b/math/libm-test.inc
@@ -10560,7 +10560,7 @@ llrint_test (void)
   TEST_f_L (llrint, 8388600.3L, 8388600);
   TEST_f_L (llrint, -8388600.3L, -8388600);
 
-  TEST_f_l (llrint, 1071930.0008, 1071930);
+  TEST_f_L (llrint, 1071930.0008, 1071930);
 
   /* Test boundary conditions.  */
   /* 0x1FFFFF */
@@ -10695,7 +10695,7 @@ llrint_test_tonearest (void)
       TEST_f_L (llrint, 8388600.3L, 8388600);
       TEST_f_L (llrint, -8388600.3L, -8388600);
 
-      TEST_f_l (llrint, 1071930.0008, 1071930);
+      TEST_f_L (llrint, 1071930.0008, 1071930);
 
       /* Test boundary conditions.  */
       /* 0x1FFFFF */
@@ -10833,7 +10833,7 @@ llrint_test_towardzero (void)
       TEST_f_L (llrint, 8388600.3L, 8388600);
       TEST_f_L (llrint, -8388600.3L, -8388600);
 
-      TEST_f_l (llrint, 1071930.0008, 1071930);
+      TEST_f_L (llrint, 1071930.0008, 1071930);
 
       /* Test boundary conditions.  */
       /* 0x1FFFFF */
@@ -10971,7 +10971,7 @@ llrint_test_downward (void)
       TEST_f_L (llrint, 8388600.3L, 8388600);
       TEST_f_L (llrint, -8388600.3L, -8388601);
 
-      TEST_f_l (llrint, 1071930.0008, 1071930);
+      TEST_f_L (llrint, 1071930.0008, 1071930);
 
       /* Test boundary conditions.  */
       /* 0x1FFFFF */
@@ -11105,7 +11105,7 @@ llrint_test_upward (void)
       TEST_f_L (llrint, 8388600.3L, 8388601);
       TEST_f_L (llrint, -8388600.3L, -8388600);
 #ifndef TEST_FLOAT
-      TEST_f_l (llrint, 1071930.0008, 1071931);
+      TEST_f_L (llrint, 1071930.0008, 1071931);
 #endif
       /* Test boundary conditions.  */
       /* 0x1FFFFF */
@@ -11505,7 +11505,7 @@ llround_test (void)
   TEST_f_L (llround, -1.5, -2);
   TEST_f_L (llround, 22514.5, 22515);
   TEST_f_L (llround, -22514.5, -22515);
-  TEST_f_l (llround, 1071930.0008, 1071930);
+  TEST_f_L (llround, 1071930.0008, 1071930);
 #ifndef TEST_FLOAT
   TEST_f_L (llround, 2097152.5, 2097153);
   TEST_f_L (llround, -2097152.5, -2097153);

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog          |    8 ++++++++
 math/libm-test.inc |   12 ++++++------
 2 files changed, 14 insertions(+), 6 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]