[config] Add separate option for limit on number of filtered issues

Reviewed By: jvillard, mbouaziz

Differential Revision: D6231376

fbshipit-source-id: 2a5792c
master
Josh Berdine 7 years ago committed by Facebook Github Bot
parent ec281799d5
commit 150bcff04b

@ -1944,6 +1944,11 @@ and tv_limit =
"The maximum number of traces to submit to Traceview"
and tv_limit_filtered =
CLOpt.mk_int ~long:"tv-limit-filtered" ~default:100 ~meta:"int"
"The maximum number of traces for issues filtered out by --report-filter to submit to Traceview"
and type_size =
CLOpt.mk_bool ~deprecated:["type_size"] ~long:"type-size"
"Consider the size of types during analysis, e.g. cannot use an int pointer to write to a char"
@ -2688,6 +2693,8 @@ and tracing = !tracing
and tv_limit = !tv_limit
and tv_limit_filtered = !tv_limit_filtered
and type_size = !type_size
and uninit = !uninit

@ -679,6 +679,8 @@ val trace_rearrange : bool
val tv_limit : int
val tv_limit_filtered : int
val type_size : bool
val uninit : bool

Loading…
Cancel
Save