From: Bruno Haible Date: Tue, 11 Dec 2001 20:06:56 +0000 (+0000) Subject: Avoid a testsuite failure on Solaris. X-Git-Tag: v0.11~198 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d1336699f40bd1757482cfac87b3fcf978984c6a;p=thirdparty%2Fgettext.git Avoid a testsuite failure on Solaris. --- diff --git a/tests/ChangeLog b/tests/ChangeLog index 7d0c5cf03..200e62751 100644 --- a/tests/ChangeLog +++ b/tests/ChangeLog @@ -1,3 +1,7 @@ +2001-12-11 Bruno Haible + + * lang-objc: If the locale couldn't be set, exit with code 77, not 1. + 2001-12-09 Bruno Haible * lang-clisp: New file. diff --git a/tests/lang-objc b/tests/lang-objc index 351873364..df3347e2d 100755 --- a/tests/lang-objc +++ b/tests/lang-objc @@ -38,7 +38,7 @@ int main (argc, argv) if (setlocale (LC_ALL, "") == NULL) { fprintf (stderr, "Couldn't set locale.\n"); - exit (1); + exit (77); } textdomain ("prog");