From c3ff2d998c71bf0f88396a25517b590bb4319cf8 Mon Sep 17 00:00:00 2001 From: Douglas RAILLARD Date: Thu, 7 Feb 2019 14:15:50 +0000 Subject: [PATCH] bisector: do not optimize Pickle output for -oexport-db Since that DB is typically not reused a lot, it is pointless to spend time optimizing it, as it can take a non-negligeable amount of time. --- tools/bisector/bisector/bisector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/bisector/bisector/bisector.py b/tools/bisector/bisector/bisector.py index a6181f09a..d4e43bdcc 100755 --- a/tools/bisector/bisector/bisector.py +++ b/tools/bisector/bisector/bisector.py @@ -2332,7 +2332,7 @@ class ExekallLISATestStep(ShellStep): db_list.append(existing_db) merged_db = ValueDB.merge(db_list) - merged_db.to_path(export_db) + merged_db.to_path(export_db, optimize=False) return out -- GitLab