diff options
Diffstat (limited to 'tests/canonicalize_name.c')
-rw-r--r-- | tests/canonicalize_name.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/canonicalize_name.c b/tests/canonicalize_name.c index 679cd06..2ab73a0 100644 --- a/tests/canonicalize_name.c +++ b/tests/canonicalize_name.c @@ -14,14 +14,14 @@ static const struct { } must_work[] = { { "", "" }, { "/", "" }, - { "\\", "" }, + { "\\", "\\" }, { "///", "" }, - { "\\\\\\", "" }, - { "/\\//\\\\/", "" }, + { "\\\\\\", "\\\\\\" }, + { "/\\//\\\\/", "\\/\\\\" }, { "foo/bar/test", "foo/bar/test" }, - { "foo\\bar\\test", "foo/bar/test" }, + { "foo\\bar\\test", "foo\\bar\\test" }, { "/foo/bar/test/", "foo/bar/test" }, - { "\\foo\\bar\\test\\", "foo/bar/test" }, + { "\\foo\\bar\\test\\", "\\foo\\bar\\test\\" }, { "///foo//bar//test///", "foo/bar/test" }, { "./foo/././bar/test/./.", "foo/bar/test" }, { "./foo/././", "foo" }, |