We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a9d9d8 commit ea9433eCopy full SHA for ea9433e
aws-cpp-sdk-transfer-tests/TransferTests.cpp
@@ -2017,6 +2017,7 @@ TEST_F(TransferTests, TransferManager_TestRelativePrefix)
2017
{R"(C:/)", R"(C:/.../../foo.txt)", true},
2018
{R"(C:/)", R"(C:/.../.../../../foo.txt)", true},
2019
{R"(C:/)", R"(C:/...////./foo.txt)", true},
2020
+ {R"(C:/)", R"(C:////../test)", false},
2021
2022
{R"(/home/user/my-intended-directory)", R"(/home/user/my-intended-directory/foo.txt)", true},
2023
{R"(/home/user/my-intended-directory/)", R"(/home/user/my-intended-directory/foo.txt)", true},
@@ -2040,6 +2041,7 @@ TEST_F(TransferTests, TransferManager_TestRelativePrefix)
2040
2041
{R"(./)", R"(./.../foo)", true},
2042
{R"(./)", R"(./.../../foo)", true},
2043
{R"(./)", R"(.//.../../foo)", true},
2044
+ {R"(./)", R"(.////../test)", false}
2045
};
2046
2047
for(const TestHelperTransferManager::TestCaseEntry& TC_ENTRY : TEST_CASES)
0 commit comments