From ed18399ff6b75de01d71103cba2b2b8065025ef5 Mon Sep 17 00:00:00 2001 From: Christoph Borchert Date: Tue, 16 Dec 2014 16:35:41 +0100 Subject: [PATCH] prune-trace: remove invalid assertion This assertion in the FESamplingPruner is invalid if the import took place without "write" ECs. Change-Id: I7d1bbcf1572573e2ac97e9be1191fbf9fe61f755 --- tools/prune-trace/FESamplingPruner.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/prune-trace/FESamplingPruner.cc b/tools/prune-trace/FESamplingPruner.cc index 3ce7d609..c4e7d3e1 100644 --- a/tools/prune-trace/FESamplingPruner.cc +++ b/tools/prune-trace/FESamplingPruner.cc @@ -183,7 +183,6 @@ bool FESamplingPruner::sampling_prune(const fail::Database::Variant& variant) if (!db->query(ss.str().c_str())) return false; ss.str(""); num_fsppilot_entries += db->affected_rows(); - assert(num_fsppilot_entries == (samplerows + 1)); LOG << "created " << num_fsppilot_entries << " fsppilot entries" << std::endl;