From: Changqing Li Date: Fri, 11 Oct 2024 02:19:10 +0000 (+0800) Subject: resulttool/regression.py: fix AttributeError X-Git-Tag: yocto-5.2~1607 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d773edde8db2019550916d2552171c45fe31ac2a;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git resulttool/regression.py: fix AttributeError Fix following AttributeError when running "resulttool regression base target": File "/yocto/poky/scripts/lib/resulttool/regression.py", line 322, in regression_common res, resstr = compare_result(logger, c, b, base_results[a][c], target_results[a][b], args.limit) AttributeError: 'Namespace' object has no attribute 'limit' Signed-off-by: Changqing Li Signed-off-by: Richard Purdie --- diff --git a/scripts/lib/resulttool/regression.py b/scripts/lib/resulttool/regression.py index 10e7d13841a..204e6eecb7a 100644 --- a/scripts/lib/resulttool/regression.py +++ b/scripts/lib/resulttool/regression.py @@ -422,6 +422,7 @@ def register_commands(subparsers): help='(optional) filter the base results to this result ID') parser_build.add_argument('-t', '--target-result-id', default='', help='(optional) filter the target results to this result ID') + parser_build.add_argument('-l', '--limit', default=REGRESSIONS_DISPLAY_LIMIT, help="Maximum number of changes to display per test. Can be set to 0 to print all changes") parser_build = subparsers.add_parser('regression-git', help='regression git analysis', description='regression analysis comparing base result set to target '