]> Savannah Git Hosting - gnulib.git/commitdiff
str_startswith: Add tests.
authorBruno Haible <bruno@clisp.org>
Fri, 3 Jan 2025 08:33:01 +0000 (09:33 +0100)
committerBruno Haible <bruno@clisp.org>
Fri, 3 Jan 2025 08:55:01 +0000 (09:55 +0100)
* tests/test-str_startswith.c: New file.
* modules/str_startswith-tests: New file.

ChangeLog
modules/str_startswith-tests [new file with mode: 0644]
tests/test-str_startswith.c [new file with mode: 0644]

index be756cd8ee2f5288bf352fe46079d8660561dc11..d4a27217153c98bba38943bd5f2cf8579f9daad0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2025-01-03  Bruno Haible  <bruno@clisp.org>
 
+       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 (file)
index 0000000..9239b55
--- /dev/null
@@ -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 (file)
index 0000000..5dd741a
--- /dev/null
@@ -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 <https://www.gnu.org/licenses/>.  */
+
+#include <config.h>
+
+/* Specification.  */
+#include <string.h>
+
+#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;
+}