Added TODO testcases for Path::simplifyPath()
This commit is contained in:
parent
fc1a755100
commit
5cc4e1118c
|
@ -76,6 +76,8 @@ private:
|
|||
ASSERT_EQUALS("src/test.cpp", Path::simplifyPath(".//src/test.cpp"));
|
||||
ASSERT_EQUALS("src/test.cpp", Path::simplifyPath(".///src/test.cpp"));
|
||||
ASSERT_EQUALS("test.cpp", Path::simplifyPath("./././././test.cpp"));
|
||||
TODO_ASSERT_EQUALS("src", "src/abc/..", Path::simplifyPath("src/abc/.."));
|
||||
// TODO: don't crash ASSERT_EQUALS("src", Path::simplifyPath("src/abc/../"));
|
||||
|
||||
// Handling of UNC paths on Windows
|
||||
ASSERT_EQUALS("//src/test.cpp", Path::simplifyPath("//src/test.cpp"));
|
||||
|
|
Loading…
Reference in New Issue