diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-07-17 00:03:55 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-07-17 00:03:55 +0000 |
commit | d747a0a564d522ab31944eac60e923e4596b3684 (patch) | |
tree | 35aa88c9510ae281b8d704e4e3b142f697422bd1 /catgets/tst-catgets.c | |
parent | 547a7a8e54ba925e7721c71b673f7993e9fb518f (diff) | |
download | glibc-d747a0a564d522ab31944eac60e923e4596b3684.tar glibc-d747a0a564d522ab31944eac60e923e4596b3684.tar.gz glibc-d747a0a564d522ab31944eac60e923e4596b3684.tar.bz2 glibc-d747a0a564d522ab31944eac60e923e4596b3684.zip |
Update.
* catgets/tst-catgets.c (main): Don't expect results for
untranslated messages.
* math/Makefile (CPPFLAGS-test-ifloat.c): Also define TEST_FAST_MATH.
(CPPFLAGS-test-idouble.c): Likewise.
(CPPFLAGS-test-ildouble.c): Likewise.
Diffstat (limited to 'catgets/tst-catgets.c')
-rw-r--r-- | catgets/tst-catgets.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/catgets/tst-catgets.c b/catgets/tst-catgets.c index 20e2738232..249e89f7e0 100644 --- a/catgets/tst-catgets.c +++ b/catgets/tst-catgets.c @@ -41,14 +41,14 @@ main (void) char *trans; trans = catgets (cd, 1, 1 + cnt, - "+#+# is this comes backs it's an error"); + "+#+# if this comes backs it's an error"); if (trans == NULL) { printf ("catgets return NULL for %d\n", cnt); result = 1; } - else if (strcmp (trans, msgs[cnt]) != 0) + else if (strcmp (trans, msgs[cnt]) != 0 && msgs[cnt][0] != '\0') { printf ("expected \"%s\", got \"%s\"\n", msgs[cnt], trans); result = 1; |