Add a test to Support.NormalizePath.

This commit is contained in:
Nico Weber 2020-05-05 13:41:24 -04:00
parent 375cec4b6c
commit 6bb68fdd05
1 changed files with 1 additions and 0 deletions

View File

@ -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));