From d747a0a564d522ab31944eac60e923e4596b3684 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Wed, 17 Jul 2002 00:03:55 +0000 Subject: 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. --- catgets/tst-catgets.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'catgets/tst-catgets.c') 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; -- cgit v1.2.3