From 9903215576e71c2ed0a36e4a92ce16c7139a0e80 Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Fri, 29 Mar 2024 02:14:21 +0100 Subject: [PATCH] mcel tests: Fix test failure with Oracle cc 12.6. * tests/test-mcel.c (main): Explicitly return 0 at the end. --- ChangeLog | 5 +++++ tests/test-mcel.c | 2 ++ 2 files changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index 542320be4a..f8df136514 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 gnulib-tool: Drop workarounds for Automake < 1.14. 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; } -- 2.39.5