]> Savannah Git Hosting - gnulib.git/commitdiff
hamt tests: Fix test failure with Sun C on Solaris 10/SPARC.
authorBruno Haible <bruno@clisp.org>
Sat, 29 Apr 2023 01:13:52 +0000 (03:13 +0200)
committerBruno Haible <bruno@clisp.org>
Sat, 29 Apr 2023 01:13:52 +0000 (03:13 +0200)
* tests/test-hamt.c (main): Finish with exit code 0.

ChangeLog
tests/test-hamt.c

index 3932a30ae183daba2a940c9a46951f4b8c9639f6..2b02d6ced42818ce1aec835987e78bacef7cdbb6 100644 (file)
--- 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.
index 6fdffeac0604d22e3af7c40dc76f7e475834ce15..ff5df6e19a016f9bde6101abf972cd28e38730d6 100644 (file)
@@ -376,4 +376,6 @@ main (void)
   test_functional_update ();
   test_destructive_update ();
   test_iterator ();
+
+  return 0;
 }