[llvm-branch-commits] [flang] bc26c5f - Clang-format list input test

Asher Mancinelli via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Mon Apr 5 09:02:52 PDT 2021


Author: Asher Mancinelli
Date: 2021-03-30T11:31:39-07:00
New Revision: bc26c5fb2a5601971691a69c6d8bf9f7b5cd7326

URL: https://github.com/llvm/llvm-project/commit/bc26c5fb2a5601971691a69c6d8bf9f7b5cd7326
DIFF: https://github.com/llvm/llvm-project/commit/bc26c5fb2a5601971691a69c6d8bf9f7b5cd7326.diff

LOG: Clang-format list input test

Added: 
    

Modified: 
    flang/unittests/RuntimeGTest/ListInputTest.cpp

Removed: 
    


################################################################################
diff  --git a/flang/unittests/RuntimeGTest/ListInputTest.cpp b/flang/unittests/RuntimeGTest/ListInputTest.cpp
index f1f62197ae07e..5d693d77f2114 100644
--- a/flang/unittests/RuntimeGTest/ListInputTest.cpp
+++ b/flang/unittests/RuntimeGTest/ListInputTest.cpp
@@ -59,7 +59,7 @@ TEST(InputTest, TestListInput) {
 
   static const auto status{IONAME(EndIoStatement)(cookie)};
   ASSERT_EQ(status, 0) << "list-directed input failed, status "
-                             << static_cast<int>(status) << '\n';
+                       << static_cast<int>(status) << '\n';
 
   for (j = 0; j < listInputLength; ++j) {
     ASSERT_EQ(n[j], want[j])
@@ -70,7 +70,7 @@ TEST(InputTest, TestListInput) {
     ASSERT_EQ(std::strcmp(inputBuffers[j],
                   "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ "),
         0)
-        << "wanted asc[" << j << "]=alphabets, got '" << inputBuffers[j] << "'\n";
+        << "wanted asc[" << j << "]=alphabets, got '" << inputBuffers[j]
+        << "'\n";
   }
 }
-


        


More information about the llvm-branch-commits mailing list