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-606-g5bf96de


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  5bf96de5ef97cd0d6c04445feec6b25e07d4d938 (commit)
      from  12290c0614206ac6e9b52467bcf33f40dea5c2d6 (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=5bf96de5ef97cd0d6c04445feec6b25e07d4d938

commit 5bf96de5ef97cd0d6c04445feec6b25e07d4d938
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Mon May 6 20:23:01 2013 +0000

    Consistently use TEST_f_f1 in gamma tests.

diff --git a/ChangeLog b/ChangeLog
index 4bf30b6..ba02f56 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2013-05-06  Joseph Myers  <joseph@codesourcery.com>
+
+	* math/libm-test.inc (gamma_test): Consistently use TEST_f_f1 to
+	test signgam value.
+
 2013-05-06  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
 
 	[BZ #15418]
diff --git a/math/libm-test.inc b/math/libm-test.inc
index 7afa46d..f289e99 100644
--- a/math/libm-test.inc
+++ b/math/libm-test.inc
@@ -9103,11 +9103,11 @@ gamma_test (void)
 
   START (gamma);
 
-  TEST_f_f (gamma, plus_infty, plus_infty);
-  TEST_f_f (gamma, 0, plus_infty, DIVIDE_BY_ZERO_EXCEPTION);
-  TEST_f_f (gamma, -3, plus_infty, DIVIDE_BY_ZERO_EXCEPTION);
-  TEST_f_f (gamma, minus_infty, plus_infty);
-  TEST_f_f (gamma, qnan_value, qnan_value);
+  TEST_f_f1 (gamma, plus_infty, plus_infty, 1);
+  TEST_f_f1 (gamma, 0, plus_infty, 1, DIVIDE_BY_ZERO_EXCEPTION);
+  TEST_f_f1 (gamma, -3, plus_infty, IGNORE, DIVIDE_BY_ZERO_EXCEPTION);
+  TEST_f_f1 (gamma, minus_infty, plus_infty, IGNORE);
+  TEST_f_f1 (gamma, qnan_value, qnan_value, IGNORE);
 
   TEST_f_f1 (gamma, 1, 0, 1);
   TEST_f_f1 (gamma, 3, M_LN2l, 1);

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

Summary of changes:
 ChangeLog          |    5 +++++
 math/libm-test.inc |   10 +++++-----
 2 files changed, 10 insertions(+), 5 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]