1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 03:02:36 +01:00

[Support] Silence warning in Path unittests when compiling with clang-cl

warning: comparison of integers of different signs: 'const unsigned long long' and 'const int' [-Wsign-compare]
This commit is contained in:
Alexandre Ganea 2020-03-23 12:19:07 -04:00
parent c9632e3871
commit df7824c020

View File

@ -1895,7 +1895,7 @@ TEST_F(FileSystemTest, widenPath) {
// Result should not start with the long path prefix.
EXPECT_TRUE(std::wmemcmp(Result.data(), LongPathPrefix.c_str(),
LongPathPrefix.size()) != 0);
EXPECT_EQ(Result.size(), MAX_PATH - 1);
EXPECT_EQ(Result.size(), (size_t)MAX_PATH - 1);
// Add another Pi to exceed the MAX_PATH limit.
Input += Pi;
@ -1921,7 +1921,7 @@ TEST_F(FileSystemTest, widenPath) {
// Result should not start with the long path prefix.
EXPECT_TRUE(std::wmemcmp(Result.data(), LongPathPrefix.c_str(),
LongPathPrefix.size()) != 0);
EXPECT_EQ(Result.size(), MAX_PATH - 1);
EXPECT_EQ(Result.size(), (size_t)MAX_PATH - 1);
// Extend the directory name so the input exceeds the MAX_PATH limit.
DirName += DirChar;