No longer create procedure description for the callees when running the checkers

Summary:public
It seems that creating the procedure description of the callees this should no longer be useful to run the checkers

Reviewed By: sblackshear

Differential Revision: D3083523

fb-gh-sync-id: 040b104
shipit-source-id: 040b104
master
Jeremy Dubreil 9 years ago committed by Facebook Github Bot 2
parent 319cc9334e
commit ebe82340b9

@ -257,11 +257,10 @@ class AnalyzerWithFrontendWrapper(analyze.AnalyzerWrapper):
if self.args.android_harness:
infer_cmd.append('-harness')
if (self.args.android_harness or
self.args.analyzer in [config.ANALYZER_CHECKERS,
config.ANALYZER_ERADICATE,
config.ANALYZER_CAPTURE]):
os.environ['INFER_CREATE_CALLEE_PDESC'] = 'Y'
if self.args.android_harness or \
self.args.analyzer in [config.ANALYZER_ERADICATE,
config.ANALYZER_CAPTURE]:
os.environ['INFER_CREATE_CALLEE_PDESC'] = 'Y'
return analyze.run_command(
infer_cmd,

Loading…
Cancel
Save