From 1dff135bf916b4a9d5e1172e69d4dde53651035c Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Fri, 19 Feb 2021 00:49:37 +0900 Subject: [PATCH] test: add more tests for path_startswith() --- src/test/test-path-util.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/test/test-path-util.c b/src/test/test-path-util.c index 58b185494df..59308473c1b 100644 --- a/src/test/test-path-util.c +++ b/src/test/test-path-util.c @@ -481,6 +481,9 @@ static void test_path_startswith(void) { assert_se(!path_startswith("/foo/bar/barfoo/", "")); assert_se(!path_startswith("/foo/bar/barfoo/", "/bar/foo")); assert_se(!path_startswith("/foo/bar/barfoo/", "/f/b/b/")); + assert_se(!path_startswith("/foo/bar/barfoo/", "/foo/bar/barfo")); + assert_se(!path_startswith("/foo/bar/barfoo/", "/foo/bar/bar")); + assert_se(!path_startswith("/foo/bar/barfoo/", "/fo")); } static void test_prefix_root_one(const char *r, const char *p, const char *expected) { -- 2.47.3