From: Bruno Haible Date: Fri, 3 Jan 2025 08:59:56 +0000 (+0100) Subject: str_endswith: Add tests. X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=5a50792e2f1f5fe83c4df68f62819a4b7c9e0fa1;p=gnulib.git str_endswith: Add tests. * tests/test-str_endswith.c: New file. * modules/str_endswith-tests: New file. --- diff --git a/ChangeLog b/ChangeLog index 3172894f30..b57ea5cae1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2025-01-03 Bruno Haible + str_endswith: Add tests. + * tests/test-str_endswith.c: New file. + * modules/str_endswith-tests: New file. + str_endswith: New module. * lib/string.in.h (str_endswith): New declaration. * lib/str_endswith.c: New file. diff --git a/modules/str_endswith-tests b/modules/str_endswith-tests new file mode 100644 index 0000000000..ef8990c026 --- /dev/null +++ b/modules/str_endswith-tests @@ -0,0 +1,11 @@ +Files: +tests/test-str_endswith.c +tests/macros.h + +Depends-on: + +configure.ac: + +Makefile.am: +TESTS += test-str_endswith +check_PROGRAMS += test-str_endswith diff --git a/tests/test-str_endswith.c b/tests/test-str_endswith.c new file mode 100644 index 0000000000..fc1ec0abfc --- /dev/null +++ b/tests/test-str_endswith.c @@ -0,0 +1,43 @@ +/* Test of str_endswith() function. + Copyright (C) 2025 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 + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ + +#include + +/* Specification. */ +#include + +#include "macros.h" + +int +main () +{ + ASSERT (str_endswith ("", "")); + ASSERT (str_endswith ("abc", "")); + + ASSERT (!str_endswith ("", "c")); + ASSERT (!str_endswith ("x", "c")); + ASSERT (str_endswith ("c", "c")); + ASSERT (str_endswith ("abc", "c")); + + ASSERT (!str_endswith ("", "xyz")); + ASSERT (!str_endswith ("x", "xyz")); + ASSERT (!str_endswith ("a", "xyz")); + ASSERT (!str_endswith ("abc", "xyz")); + ASSERT (str_endswith ("xyz", "xyz")); + ASSERT (str_endswith ("yxxyz", "xyz")); + + return test_exit_status; +}