summaryrefslogtreecommitdiffstats
path: root/llvm/unittests/Support/FileOutputBufferTest.cpp
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2017-08-28 06:47:47 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2017-08-28 06:47:47 +0000
commita1e97a77f592a0f8606bbb74b2576021e5110cd6 (patch)
tree38f81faa2af7096a8291bea708468f19b5db4135 /llvm/unittests/Support/FileOutputBufferTest.cpp
parent2c03e53f4e241bee2d1b3103931be556a346cc82 (diff)
downloadbcm5719-llvm-a1e97a77f592a0f8606bbb74b2576021e5110cd6.tar.gz
bcm5719-llvm-a1e97a77f592a0f8606bbb74b2576021e5110cd6.zip
Untabify.
llvm-svn: 311875
Diffstat (limited to 'llvm/unittests/Support/FileOutputBufferTest.cpp')
-rw-r--r--llvm/unittests/Support/FileOutputBufferTest.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/unittests/Support/FileOutputBufferTest.cpp b/llvm/unittests/Support/FileOutputBufferTest.cpp
index 5f20634d66c..640af46844b 100644
--- a/llvm/unittests/Support/FileOutputBufferTest.cpp
+++ b/llvm/unittests/Support/FileOutputBufferTest.cpp
@@ -40,7 +40,7 @@ TEST(FileOutputBuffer, Test) {
// TEST 1: Verify commit case.
SmallString<128> File1(TestDirectory);
- File1.append("/file1");
+ File1.append("/file1");
{
ErrorOr<std::unique_ptr<FileOutputBuffer>> BufferOrErr =
FileOutputBuffer::create(File1, 8192);
@@ -79,7 +79,7 @@ TEST(FileOutputBuffer, Test) {
// TEST 3: Verify sizing down case.
SmallString<128> File3(TestDirectory);
- File3.append("/file3");
+ File3.append("/file3");
{
ErrorOr<std::unique_ptr<FileOutputBuffer>> BufferOrErr =
FileOutputBuffer::create(File3, 8192000);
@@ -100,7 +100,7 @@ TEST(FileOutputBuffer, Test) {
// TEST 4: Verify file can be made executable.
SmallString<128> File4(TestDirectory);
- File4.append("/file4");
+ File4.append("/file4");
{
ErrorOr<std::unique_ptr<FileOutputBuffer>> BufferOrErr =
FileOutputBuffer::create(File4, 8192, FileOutputBuffer::F_executable);
OpenPOWER on IntegriCloud