[clang-tools-extra] r343845 - [clangd] Remove debugging output in test

Sam McCall via cfe-commits cfe-commits at lists.llvm.org
Fri Oct 5 05:22:40 PDT 2018


Author: sammccall
Date: Fri Oct  5 05:22:40 2018
New Revision: 343845

URL: http://llvm.org/viewvc/llvm-project?rev=343845&view=rev
Log:
[clangd] Remove debugging output in test

Modified:
    clang-tools-extra/trunk/unittests/clangd/SerializationTests.cpp

Modified: clang-tools-extra/trunk/unittests/clangd/SerializationTests.cpp
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/unittests/clangd/SerializationTests.cpp?rev=343845&r1=343844&r2=343845&view=diff
==============================================================================
--- clang-tools-extra/trunk/unittests/clangd/SerializationTests.cpp (original)
+++ clang-tools-extra/trunk/unittests/clangd/SerializationTests.cpp Fri Oct  5 05:22:40 2018
@@ -157,11 +157,6 @@ TEST(SerializationTest, BinaryConversion
   IndexFileOut Out(*In);
   Out.Format = IndexFileFormat::RIFF;
   std::string Serialized = llvm::to_string(Out);
-  {
-    std::error_code EC;
-    llvm::raw_fd_ostream F("/tmp/foo", EC);
-    F << Serialized;
-  }
 
   auto In2 = readIndexFile(Serialized);
   ASSERT_TRUE(bool(In2)) << In.takeError();




More information about the cfe-commits mailing list