diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-07-05 22:32:33 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-07-05 22:32:33 +0000 |
commit | 2eb1ae4f911feaedcf64c5887e41620f40c572d5 (patch) | |
tree | 3f8bc4ca308d43e863fafad74e4e0008a2d90c6f | |
parent | 275b22e310a088ac594c442d0f121326e7bb8301 (diff) | |
download | bcm5719-llvm-2eb1ae4f911feaedcf64c5887e41620f40c572d5.tar.gz bcm5719-llvm-2eb1ae4f911feaedcf64c5887e41620f40c572d5.zip |
Fix windows build.
llvm-svn: 185730
-rw-r--r-- | llvm/unittests/Support/Path.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/Support/Path.cpp b/llvm/unittests/Support/Path.cpp index 4fc02be5e3a..7371e30a5ea 100644 --- a/llvm/unittests/Support/Path.cpp +++ b/llvm/unittests/Support/Path.cpp @@ -265,7 +265,7 @@ TEST_F(FileSystemTest, TempFiles) { "abcdefghijklmnopqrstuvwxyz5abcdefghijklmnopqrstuvwxyz4" "abcdefghijklmnopqrstuvwxyz3abcdefghijklmnopqrstuvwxyz2" "abcdefghijklmnopqrstuvwxyz1abcdefghijklmnopqrstuvwxyz0"; - EXPECT_EQ(fs::unique_file(Twine(Path270), FileDescriptor, TempPath), + EXPECT_EQ(fs::createUniqueFile(Twine(Path270), FileDescriptor, TempPath), windows_error::path_not_found); #endif } |