mirror of
https://github.com/RPCS3/llvm.git
synced 2025-02-12 13:48:45 +00:00
Fix a -Wsign-compare in Support Path unittests
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@260418 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
575b993830
commit
3833b9b8d1
@ -416,7 +416,7 @@ TEST(SupportDeathTest, TempDirectoryOnWindows) {
|
||||
SmallString<270> Expected{"C:\\Temp\\AB\\123456789"};
|
||||
while (Expected.size() < 260)
|
||||
Expected.append("\\DirNameWith19Charss");
|
||||
ASSERT_EQ(260, Expected.size());
|
||||
ASSERT_EQ(260U, Expected.size());
|
||||
EXPECT_TEMP_DIR(_putenv_s("TMP", Expected.c_str()), Expected.c_str());
|
||||
}
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user