diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2017-11-08 01:50:29 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2017-11-08 01:50:29 +0000 |
commit | 0d7a38a81d1fdb8c9c522dce83fb63a41d30ebc3 (patch) | |
tree | 15a31478b7f52fcb046b078532e805c86de609fc /llvm/unittests/Support/FileOutputBufferTest.cpp | |
parent | f7fdac4508387dad1340cfa475c272f56b2da184 (diff) | |
download | bcm5719-llvm-0d7a38a81d1fdb8c9c522dce83fb63a41d30ebc3.tar.gz bcm5719-llvm-0d7a38a81d1fdb8c9c522dce83fb63a41d30ebc3.zip |
Convert FileOutputBuffer::commit to Error.
llvm-svn: 317656
Diffstat (limited to 'llvm/unittests/Support/FileOutputBufferTest.cpp')
-rw-r--r-- | llvm/unittests/Support/FileOutputBufferTest.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/unittests/Support/FileOutputBufferTest.cpp b/llvm/unittests/Support/FileOutputBufferTest.cpp index 8e66b26ccda..e7f1fd765bd 100644 --- a/llvm/unittests/Support/FileOutputBufferTest.cpp +++ b/llvm/unittests/Support/FileOutputBufferTest.cpp @@ -51,7 +51,7 @@ TEST(FileOutputBuffer, Test) { // Write to end of buffer to verify it is writable. memcpy(Buffer->getBufferEnd() - 20, "AABBCCDDEEFFGGHHIIJJ", 20); // Commit buffer. - ASSERT_NO_ERROR(Buffer->commit()); + ASSERT_NO_ERROR(errorToErrorCode(Buffer->commit())); } // Verify file is correct size. @@ -89,7 +89,7 @@ TEST(FileOutputBuffer, Test) { memcpy(Buffer->getBufferStart(), "AABBCCDDEEFFGGHHIIJJ", 20); // Write to end of buffer to verify it is writable. memcpy(Buffer->getBufferEnd() - 20, "AABBCCDDEEFFGGHHIIJJ", 20); - ASSERT_NO_ERROR(Buffer->commit()); + ASSERT_NO_ERROR(errorToErrorCode(Buffer->commit())); } // Verify file is correct size. @@ -109,7 +109,7 @@ TEST(FileOutputBuffer, Test) { // Start buffer with special header. memcpy(Buffer->getBufferStart(), "AABBCCDDEEFFGGHHIIJJ", 20); // Commit buffer. - ASSERT_NO_ERROR(Buffer->commit()); + ASSERT_NO_ERROR(errorToErrorCode(Buffer->commit())); } // Verify file exists and is executable. fs::file_status Status; |