From 12adbb372a80187e5954d64044d1deb9cb84785b Mon Sep 17 00:00:00 2001 From: Jeremy Dubreil Date: Thu, 16 Mar 2017 08:26:39 -0700 Subject: [PATCH] [infer][java] No longer create the file `analysis_summary.txt` Reviewed By: sblackshear Differential Revision: D4719629 fbshipit-source-id: 4eaee6e --- infer/lib/python/inferlib/bucklib.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/infer/lib/python/inferlib/bucklib.py b/infer/lib/python/inferlib/bucklib.py index f016ddbed..d1fb40a66 100644 --- a/infer/lib/python/inferlib/bucklib.py +++ b/infer/lib/python/inferlib/bucklib.py @@ -26,9 +26,6 @@ import zipfile from inferlib import config, issues, utils - -ANALYSIS_SUMMARY_OUTPUT = 'analysis_summary.txt' - DEFAULT_BUCK_OUT = os.path.join(utils.decode(os.getcwd()), 'buck-out') DEFAULT_BUCK_OUT_GEN = os.path.join(DEFAULT_BUCK_OUT, 'gen') @@ -166,8 +163,6 @@ def collect_results(args, start_time, targets): bugs_out = os.path.join(args.infer_out, config.BUGS_FILENAME) issues.print_and_save_errors(args.infer_out, args.project_root, json_report, bugs_out, args.pmd_xml) - shutil.copy(bugs_out, os.path.join(args.infer_out, - ANALYSIS_SUMMARY_OUTPUT)) def cleanup(temp_files):