1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-30 22:43:12 +03:00

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.
This commit is contained in:
Joseph Myers
2015-11-06 18:45:32 +00:00
parent b9eaf28a64
commit d699ab25d3
3 changed files with 8 additions and 4 deletions

View File

@ -1,5 +1,9 @@
2015-11-06 Joseph Myers <joseph@codesourcery.com> 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. * configure.ac (libc_cv_z_nodelete): Remove configure test.
(libc_cv_z_nodlopen): Likewise. (libc_cv_z_nodlopen): Likewise.
(libc_cv_z_initfirst): Likewise. (libc_cv_z_initfirst): Likewise.

View File

@ -43,10 +43,10 @@ int signgam;
signgam = 123; \ signgam = 123; \
c = FUNC (b); \ c = FUNC (b); \
if (signgam == 123) \ if (signgam == 123) \
puts ("PASS: " #FUNC " (0.5) setting signgam"); \ puts ("PASS: " #FUNC " (-0.5) setting signgam"); \
else \ else \
{ \ { \
puts ("FAIL: " #FUNC " (0.5) setting signgam"); \ puts ("FAIL: " #FUNC " (-0.5) setting signgam"); \
result = 1; \ result = 1; \
} \ } \
} \ } \

View File

@ -37,10 +37,10 @@
signgam = 123; \ signgam = 123; \
c = FUNC (b); \ c = FUNC (b); \
if (signgam == -1) \ if (signgam == -1) \
puts ("PASS: " #FUNC " (0.5) setting signgam"); \ puts ("PASS: " #FUNC " (-0.5) setting signgam"); \
else \ else \
{ \ { \
puts ("FAIL: " #FUNC " (0.5) setting signgam"); \ puts ("FAIL: " #FUNC " (-0.5) setting signgam"); \
result = 1; \ result = 1; \
} \ } \
} \ } \