From: Bruno Haible Date: Mon, 18 Jan 2021 14:13:17 +0000 (+0100) Subject: noreturn tests: Avoid test failure on Solaris 10/x86 with cc. X-Git-Tag: v1.0~3146 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7ddc0c297211ac7a83a0a94feface10ba93c60f2;p=thirdparty%2Fgnulib.git noreturn tests: Avoid test failure on Solaris 10/x86 with cc. * tests/test-noreturn.c (main): Return 0. --- diff --git a/ChangeLog b/ChangeLog index a7a0650fef..f2e21a4689 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2021-01-18 Bruno Haible + + noreturn tests: Avoid test failure on Solaris 10/x86 with cc. + * tests/test-noreturn.c (main): Return 0. + 2021-01-18 Bruno Haible uninorm tests: Fix compilation error on Cygwin. diff --git a/tests/test-noreturn.c b/tests/test-noreturn.c index 3f3f994615..21cb6fc49e 100644 --- a/tests/test-noreturn.c +++ b/tests/test-noreturn.c @@ -65,4 +65,5 @@ void func3 (void) int main () { + return 0; }