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.22-515-gd699ab2


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  d699ab25d32768aaad899f9ff1e668be62c448d2 (commit)
      from  b9eaf28a640bdfbfbad55cdfe0361339664ab8ba (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=d699ab25d32768aaad899f9ff1e668be62c448d2

commit d699ab25d32768aaad899f9ff1e668be62c448d2
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Fri Nov 6 18:45:32 2015 +0000

    Fix typo in signgam test messages.
    
    I noticed a typo in the messages from the signgam tests I recently
    added.  This patch fixes it.
    
    Tested for x86_64 and x86.
    
    	* math/test-signgam-finite.c (RUN_TESTS): Correct messages about
    	calls with argument -0.5.
    	* math/test-signgam-finite-c99.c (RUN_TESTS): Likewise.

diff --git a/ChangeLog b/ChangeLog
index 1af65b8..da6c7dd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2015-11-06  Joseph Myers  <joseph@codesourcery.com>
 
+	* math/test-signgam-finite.c (RUN_TESTS): Correct messages about
+	calls with argument -0.5.
+	* math/test-signgam-finite-c99.c (RUN_TESTS): Likewise.
+
 	* configure.ac (libc_cv_z_nodelete): Remove configure test.
 	(libc_cv_z_nodlopen): Likewise.
 	(libc_cv_z_initfirst): Likewise.
diff --git a/math/test-signgam-finite-c99.c b/math/test-signgam-finite-c99.c
index bdbaf5a..fd9cdd3 100644
--- a/math/test-signgam-finite-c99.c
+++ b/math/test-signgam-finite-c99.c
@@ -43,10 +43,10 @@ int signgam;
       signgam = 123;						\
       c = FUNC (b);						\
       if (signgam == 123)					\
-	puts ("PASS: " #FUNC " (0.5) setting signgam");		\
+	puts ("PASS: " #FUNC " (-0.5) setting signgam");	\
       else							\
 	{							\
-	  puts ("FAIL: " #FUNC " (0.5) setting signgam");	\
+	  puts ("FAIL: " #FUNC " (-0.5) setting signgam");	\
 	  result = 1;						\
 	}							\
     }								\
diff --git a/math/test-signgam-finite.c b/math/test-signgam-finite.c
index 5d444c8..264d4e8 100644
--- a/math/test-signgam-finite.c
+++ b/math/test-signgam-finite.c
@@ -37,10 +37,10 @@
       signgam = 123;						\
       c = FUNC (b);						\
       if (signgam == -1)					\
-	puts ("PASS: " #FUNC " (0.5) setting signgam");		\
+	puts ("PASS: " #FUNC " (-0.5) setting signgam");	\
       else							\
 	{							\
-	  puts ("FAIL: " #FUNC " (0.5) setting signgam");	\
+	  puts ("FAIL: " #FUNC " (-0.5) setting signgam");	\
 	  result = 1;						\
 	}							\
     }								\

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

Summary of changes:
 ChangeLog                      |    4 ++++
 math/test-signgam-finite-c99.c |    4 ++--
 math/test-signgam-finite.c     |    4 ++--
 3 files changed, 8 insertions(+), 4 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]