From: Bruno Haible Date: Fri, 29 Mar 2024 01:14:21 +0000 (+0100) Subject: mcel tests: Fix test failure with Oracle cc 12.6. X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=300365c92db33a51888707a4b407fc85e55a8df9;p=gnulib.git mcel tests: Fix test failure with Oracle cc 12.6. * tests/test-mcel.c (main): Explicitly return 0 at the end. --- diff --git a/ChangeLog b/ChangeLog index cf15c365af..d0c0368861 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2024-03-28 Bruno Haible + + mcel tests: Fix test failure with Oracle cc 12.6. + * tests/test-mcel.c (main): Explicitly return 0 at the end. + 2024-03-28 Bruno Haible pthread-h: Fix override of pthread_spinlock_t with non-GNU compilers. diff --git a/tests/test-mcel.c b/tests/test-mcel.c index 7bff8b1387..6988fffeee 100644 --- a/tests/test-mcel.c +++ b/tests/test-mcel.c @@ -135,4 +135,6 @@ main (void) } } } + + return 0; }