summaryrefslogtreecommitdiff
path: root/lib/fuzzer/tests
diff options
context:
space:
mode:
authorKostya Serebryany <kcc@google.com>2019-02-08 22:02:37 +0000
committerKostya Serebryany <kcc@google.com>2019-02-08 22:02:37 +0000
commit4c775333c188cc37182c72eb2a7261f7eaeb32a5 (patch)
tree81ab34c39d718db86d7665770cc12d94e218f5b3 /lib/fuzzer/tests
parent4bdfbe8883e81de78f806e2539c0718af49c02c7 (diff)
downloadcompiler-rt-4c775333c188cc37182c72eb2a7261f7eaeb32a5.tar.gz
[libFuzzer] remove two unused experimental flags
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@353573 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/fuzzer/tests')
-rw-r--r--lib/fuzzer/tests/FuzzerUnittest.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/fuzzer/tests/FuzzerUnittest.cpp b/lib/fuzzer/tests/FuzzerUnittest.cpp
index 861eaeda6..eec7d9461 100644
--- a/lib/fuzzer/tests/FuzzerUnittest.cpp
+++ b/lib/fuzzer/tests/FuzzerUnittest.cpp
@@ -645,10 +645,7 @@ static void Merge(const std::string &Input,
Merger M;
Vector<std::string> NewFiles;
EXPECT_TRUE(M.Parse(Input, true));
- std::stringstream SS;
- M.PrintSummary(SS);
EXPECT_EQ(NumNewFeatures, M.Merge({}, &NewFiles));
- EXPECT_EQ(M.AllFeatures(), M.ParseSummary(SS));
EQ(NewFiles, Result);
}