From 581d2ae9e8b1fce4adbedb5a9baafef44199e123 Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Sat, 29 Apr 2023 03:13:52 +0200 Subject: [PATCH] hamt tests: Fix test failure with Sun C on Solaris 10/SPARC. * tests/test-hamt.c (main): Finish with exit code 0. --- ChangeLog | 5 +++++ tests/test-hamt.c | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 248fa40c1f..8b96fb4d29 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2023-04-28 Bruno Haible + + 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 fchdir tests: Fix test failure on native Windows. diff --git a/tests/test-hamt.c b/tests/test-hamt.c index c63fee58cd..ff5df6e19a 100644 --- a/tests/test-hamt.c +++ b/tests/test-hamt.c @@ -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; } -- 2.39.5