]> 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>
Fri, 5 May 2023 10:59:23 +0000 (12:59 +0200)
* tests/test-hamt.c (main): Finish with exit code 0.

ChangeLog
tests/test-hamt.c

index 248fa40c1f0b97fe28eff12cb17487dd4c76166e..8b96fb4d2924db7e79167a192cb18624ad28d928 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-26  Bruno Haible  <bruno@clisp.org>
 
        fchdir tests: Fix test failure on native Windows.
index c63fee58cd89acb17d68c3515282d2925a9702cc..ff5df6e19a016f9bde6101abf972cd28e38730d6 100644 (file)
@@ -1,5 +1,5 @@
 /* Test of persistent hash array mapped trie implementation.
-   Copyright (C) 2021-2022 Free Software Foundation, Inc.
+   Copyright (C) 2021-2023 Free Software Foundation, Inc.
 
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -376,4 +376,6 @@ main (void)
   test_functional_update ();
   test_destructive_update ();
   test_iterator ();
+
+  return 0;
 }