diff options
Diffstat (limited to 'lldb/unittests/Host/FileSpecTest.cpp')
-rw-r--r-- | lldb/unittests/Host/FileSpecTest.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/unittests/Host/FileSpecTest.cpp b/lldb/unittests/Host/FileSpecTest.cpp index 6668da5ed10..843dcb8b185 100644 --- a/lldb/unittests/Host/FileSpecTest.cpp +++ b/lldb/unittests/Host/FileSpecTest.cpp @@ -200,6 +200,8 @@ TEST(FileSpecTest, EqualDotsPosixRoot) { TEST(FileSpecTest, GetNormalizedPath) { std::pair<const char *, const char *> posix_tests[] = { + {"/foo/.././bar", "/bar"}, + {"/foo/./../bar", "/bar"}, {"/foo/../bar", "/bar"}, {"/foo/./bar", "/foo/bar"}, {"/foo/..", "/"}, |