From: Bruno Haible Date: Fri, 3 Jan 2025 08:33:01 +0000 (+0100) Subject: str_startswith: Add tests. X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=2508f39d60797ab024c69b0f5bb2fcaa67ab3e42;p=gnulib.git str_startswith: Add tests. * tests/test-str_startswith.c: New file. * modules/str_startswith-tests: New file. --- diff --git a/ChangeLog b/ChangeLog index be756cd8ee..d4a2721715 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2025-01-03 Bruno Haible + str_startswith: Add tests. + * tests/test-str_startswith.c: New file. + * modules/str_startswith-tests: New file. + str_startswith: New module. * lib/string.in.h (str_startswith): New declaration. * lib/str_startswith.c: New file. diff --git a/modules/str_startswith-tests b/modules/str_startswith-tests new file mode 100644 index 0000000000..9239b55a42 --- /dev/null +++ b/modules/str_startswith-tests @@ -0,0 +1,11 @@ +Files: +tests/test-str_startswith.c +tests/macros.h + +Depends-on: + +configure.ac: + +Makefile.am: +TESTS += test-str_startswith +check_PROGRAMS += test-str_startswith diff --git a/tests/test-str_startswith.c b/tests/test-str_startswith.c new file mode 100644 index 0000000000..5dd741ae4c --- /dev/null +++ b/tests/test-str_startswith.c @@ -0,0 +1,43 @@ +/* Test of str_startswith() 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_startswith ("", "")); + ASSERT (str_startswith ("abc", "")); + + ASSERT (!str_startswith ("", "a")); + ASSERT (!str_startswith ("x", "a")); + ASSERT (str_startswith ("a", "a")); + ASSERT (str_startswith ("abc", "a")); + + ASSERT (!str_startswith ("", "xyz")); + ASSERT (!str_startswith ("x", "xyz")); + ASSERT (!str_startswith ("a", "xyz")); + ASSERT (!str_startswith ("abc", "xyz")); + ASSERT (str_startswith ("xyz", "xyz")); + ASSERT (str_startswith ("xyzzy", "xyz")); + + return test_exit_status; +}