Add utils_expand_path_keep_symlink fonction
[lttng-tools.git] / tests / unit / test_utils_expand_path.c
index aa7984b4026b38e4385f11d26b07545444c9bb1c..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"    },
This page took 0.023958 seconds and 4 git commands to generate.