From: Bruno Haible <bruno@clisp.org>
Date: Sat, 29 Apr 2023 01:13:52 +0000 (+0200)
Subject: hamt tests: Fix test failure with Sun C on Solaris 10/SPARC.
X-Git-Tag: v1.0~1368
X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=bcdad4ccd5ba01d3ff58a584ae6e33a9a511774b;p=gnulib.git

hamt tests: Fix test failure with Sun C on Solaris 10/SPARC.

* tests/test-hamt.c (main): Finish with exit code 0.
---

diff --git a/ChangeLog b/ChangeLog
index 3932a30ae1..2b02d6ced4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2023-04-28  Bruno Haible  <bruno@clisp.org>
+
+	hamt tests: Fix test failure with Sun C on Solaris 10/SPARC.
+	* tests/test-hamt.c (main): Finish with exit code 0.
+
 2023-04-27  Bruno Haible  <bruno@clisp.org>
 
 	localeconv: Work around a mingw bug.
diff --git a/tests/test-hamt.c b/tests/test-hamt.c
index 6fdffeac06..ff5df6e19a 100644
--- a/tests/test-hamt.c
+++ b/tests/test-hamt.c
@@ -376,4 +376,6 @@ main (void)
   test_functional_update ();
   test_destructive_update ();
   test_iterator ();
+
+  return 0;
 }