Add support for @SuppressWarnings on Buck projects

Reviewed By: @sblackshear

Differential Revision: D2504802
master
jrm 9 years ago committed by facebook-github-bot-7
parent 0282060808
commit 76d2f66001

@ -214,7 +214,7 @@ def create_results_dir(results_dir):
mkdir_if_not_exists(os.path.join(results_dir, 'sources'))
def clean(infer_out, annotations_out):
def clean(infer_out):
directories = ['multicore', 'classnames', 'sources', jwlib.FILELISTS]
extensions = ['.cfg', '.cg']
@ -230,8 +230,6 @@ def clean(infer_out, annotations_out):
path = os.path.join(root, f)
os.remove(path)
os.remove(annotations_out)
def help_exit(message):
print(message)
@ -599,7 +597,7 @@ class Infer:
exit_status += make_status
if self.args.buck and exit_status == os.EX_OK:
clean(self.args.infer_out, self.javac.annotations_out)
clean(self.args.infer_out)
return exit_status
@ -680,8 +678,8 @@ class Infer:
def close(self):
if self.args.analyzer != COMPILE:
os.remove(self.javac.verbose_out)
os.remove(self.javac.verbose_out)
os.remove(self.javac.annotations_out)
def analyze_and_report(self):
if self.args.analyzer not in [COMPILE, CAPTURE]:

Loading…
Cancel
Save