To improve clarity and ease of navigation do not show reports related to adopted code in the scheduled analysis. Configuration options are commented out because they may be useful in the future.
Signed-off-by: Simone Ballarin <simone.balla...@bugseng.com> Signed-off-by: Federico Serafini <federico.seraf...@bugseng.com> --- .../eclair_analysis/ECLAIR/analysis.ecl | 24 +++++++++++-------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/automation/eclair_analysis/ECLAIR/analysis.ecl b/automation/eclair_analysis/ECLAIR/analysis.ecl index 66ed7f952c..67be38f03c 100644 --- a/automation/eclair_analysis/ECLAIR/analysis.ecl +++ b/automation/eclair_analysis/ECLAIR/analysis.ecl @@ -4,11 +4,11 @@ setq(data_dir,getenv("ECLAIR_DATA_DIR")) setq(analysis_kind,getenv("ANALYSIS_KIND")) -setq(scheduled_analysis,nil) +# setq(scheduled_analysis,nil) -strings_map("scheduled-analysis",500,"","^.*scheduled$",0,setq(scheduled_analysis,t)) -strings_map("scheduled-analysis",500,"","^.*$",0) -map_strings("scheduled-analysis",analysis_kind) +# strings_map("scheduled-analysis",500,"","^.*scheduled$",0,setq(scheduled_analysis,t)) +# strings_map("scheduled-analysis",500,"","^.*$",0) +# map_strings("scheduled-analysis",analysis_kind) -verbose @@ -25,12 +25,16 @@ map_strings("scheduled-analysis",analysis_kind) -doc="Initially, there are no files tagged as adopted." -file_tag+={adopted,"none()"} -if(not(scheduled_analysis), - eval_file("adopted.ecl") -) -if(not(scheduled_analysis), - eval_file("out_of_scope.ecl") -) +# if(not(scheduled_analysis), +# eval_file("adopted.ecl") +# ) +# if(not(scheduled_analysis), +# eval_file("out_of_scope.ecl") +# ) + +-eval_file=adopted.ecl +-eval_file=out_of_scope.ecl + -eval_file=deviations.ecl -eval_file=call_properties.ecl -eval_file=tagging.ecl -- 2.34.1