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:
parent
c9632e3871
commit
df7824c020
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user