Fix windows unittest I missed in the raw_fd_ostream constructor change.

llvm-svn: 202050
This commit is contained in:
Rafael Espindola 2014-02-24 16:40:34 +00:00
parent 59ebf32d16
commit 83708e6585
1 changed files with 1 additions and 1 deletions

View File

@ -521,7 +521,7 @@ TEST_F(FileSystemTest, CarriageReturn) {
path::append(FilePathname, "test");
{
raw_fd_ostream File(FilePathname.c_str(), ErrMsg);
raw_fd_ostream File(FilePathname.c_str(), ErrMsg, sys::fs::F_None);
EXPECT_EQ(ErrMsg, "");
File << '\n';
}