forked from OSchip/llvm-project
Add a test to Support.NormalizePath.
This commit is contained in:
parent
375cec4b6c
commit
6bb68fdd05
|
@ -1185,6 +1185,7 @@ TEST(Support, NormalizePath) {
|
|||
Tests.emplace_back("a\\\\b", "a\\\\b", "a\\\\b");
|
||||
Tests.emplace_back("\\a", "\\a", "/a");
|
||||
Tests.emplace_back("a\\", "a\\", "a/");
|
||||
Tests.emplace_back("a\\t", "a\\t", "a/t");
|
||||
|
||||
for (auto &T : Tests) {
|
||||
SmallString<64> Win(std::get<0>(T));
|
||||
|
|
Loading…
Reference in New Issue