|
|
@ -46,8 +46,6 @@ def create_argparser(group_name=MODULE_NAME):
|
|
|
|
'{grp} module'.format(grp=MODULE_NAME),
|
|
|
|
'{grp} module'.format(grp=MODULE_NAME),
|
|
|
|
description=MODULE_DESCRIPTION,
|
|
|
|
description=MODULE_DESCRIPTION,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
group.add_argument('--print-harness', action='store_true',
|
|
|
|
|
|
|
|
help='Print generated harness code (Android only)')
|
|
|
|
|
|
|
|
group.add_argument('--use-flavors', action='store_true',
|
|
|
|
group.add_argument('--use-flavors', action='store_true',
|
|
|
|
help='Run Infer analysis through the use of flavors. '
|
|
|
|
help='Run Infer analysis through the use of flavors. '
|
|
|
|
'Currently this is supported only for the cxx_* '
|
|
|
|
'Currently this is supported only for the cxx_* '
|
|
|
@ -67,10 +65,6 @@ def create_argparser(group_name=MODULE_NAME):
|
|
|
|
group.add_argument('--blacklist-regex',
|
|
|
|
group.add_argument('--blacklist-regex',
|
|
|
|
help='Specify the regex for files to skip during '
|
|
|
|
help='Specify the regex for files to skip during '
|
|
|
|
'the analysis (requires --use-flavors to work)')
|
|
|
|
'the analysis (requires --use-flavors to work)')
|
|
|
|
group.add_argument('--merge-deps-files', action='store_true',
|
|
|
|
|
|
|
|
help='Merge the infer-deps.txt files generated by Buck '
|
|
|
|
|
|
|
|
'during the analysis (requires --use-flavors to '
|
|
|
|
|
|
|
|
'work)')
|
|
|
|
|
|
|
|
group.add_argument('--Xbuck', action='append', default=[],
|
|
|
|
group.add_argument('--Xbuck', action='append', default=[],
|
|
|
|
type=string_in_quotes,
|
|
|
|
type=string_in_quotes,
|
|
|
|
help='Pass values as command-line arguments to '
|
|
|
|
help='Pass values as command-line arguments to '
|
|
|
|