From 75dd87bed1fa03bc282b1df3b93222b701118fb5 Mon Sep 17 00:00:00 2001 From: Sam McCall Date: Fri, 5 Oct 2018 12:22:40 +0000 Subject: [PATCH] [clangd] Remove debugging output in test llvm-svn: 343845 --- clang-tools-extra/unittests/clangd/SerializationTests.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/clang-tools-extra/unittests/clangd/SerializationTests.cpp b/clang-tools-extra/unittests/clangd/SerializationTests.cpp index 720c7df55572..11b26eb99c71 100644 --- a/clang-tools-extra/unittests/clangd/SerializationTests.cpp +++ b/clang-tools-extra/unittests/clangd/SerializationTests.cpp @@ -157,11 +157,6 @@ TEST(SerializationTest, BinaryConversions) { 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();