summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2023-04-29 03:13:52 +0200
committerBruno Haible <bruno@clisp.org>2023-04-29 03:13:52 +0200
commitbcdad4ccd5ba01d3ff58a584ae6e33a9a511774b (patch)
treef1fc2eb64f8f79665884a46bbad7a7689247973b /tests
parentefb17ec15925db925088e801920a3df17b11ac49 (diff)
downloadgnulib-bcdad4ccd5ba01d3ff58a584ae6e33a9a511774b.tar.gz
hamt tests: Fix test failure with Sun C on Solaris 10/SPARC.
* tests/test-hamt.c (main): Finish with exit code 0.
Diffstat (limited to 'tests')
-rw-r--r--tests/test-hamt.c2
1 files changed, 2 insertions, 0 deletions
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;
}