From: Joseph Myers Date: Fri, 6 Nov 2015 18:45:32 +0000 (+0000) Subject: Fix typo in signgam test messages. X-Git-Tag: glibc-2.23~212 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d699ab25d32768aaad899f9ff1e668be62c448d2;p=thirdparty%2Fglibc.git 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 1af65b834ca..da6c7dd2f12 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2015-11-06 Joseph Myers + * 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 bdbaf5a13c8..fd9cdd37dc1 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 5d444c8068b..264d4e87eaa 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; \ } \ } \