Add utils_expand_path_keep_symlink fonction
[lttng-tools.git] / tests / unit / test_utils_expand_path.c
index 5fc383c628ace598f35bf94ab4b16c99b05eb712..d5cab002e9096ade325d9cc820586aec96f75442 100644 (file)
@@ -53,6 +53,7 @@ struct symlink_test_input {
 /* Valid test cases */
 static struct valid_test_input valid_tests_inputs[] = {
        { "/a/b/c/d/e",                 "",             "/a/b/c/d/e"    },
+       { "/a//b//c/d/e",               "",             "/a/b/c/d/e"    },
        { "./a/b/c/d/e",                ".",            "/a/b/c/d/e"    },
        { "../a/b/c/d/../e",            "..",           "/a/b/c/e"      },
        { ".././a/b/c/d/./e",           "..",           "/a/b/c/d/e"    },
@@ -311,9 +312,12 @@ static void test_utils_expand_path(void)
 
        /* Test invalid cases */
        for (i = 0; i < num_invalid_tests; i++) {
-               sprintf(name, "invalid test case: %s", invalid_tests_inputs[i]);
+               const char *test_input = invalid_tests_inputs[i];
 
-               result = utils_expand_path(invalid_tests_inputs[i]);
+               sprintf(name, "invalid test case: %s", test_input ?
+                               test_input : "NULL");
+
+               result = utils_expand_path(test_input);
                if (result != NULL) {
                        free(result);
                }
This page took 0.024447 seconds and 5 git commands to generate.