[igt-dev] [PATCH i-g-t v3 6/7] scripts/test_list.py: move "FULL" testlist to config file

Kamil Konieczny kamil.konieczny at linux.intel.com
Thu Sep 7 13:09:16 UTC 2023


Hi Mauro,
On 2023-09-07 at 12:17:37 +0200, Mauro Carvalho Chehab wrote:
> From: Mauro Carvalho Chehab <mchehab at kernel.org>
> 
> Don't assume that the default testlist is "FULL". Instead, read
> it from the configuration file.
> 
> Signed-off-by: Mauro Carvalho Chehab <mchehab at kernel.org>
> ---
>  scripts/test_list.py             | 6 ++++--
>  tests/intel/kms_test_config.json | 1 +
>  tests/intel/xe_test_config.json  | 1 +
>  3 files changed, 6 insertions(+), 2 deletions(-)
> 
> diff --git a/scripts/test_list.py b/scripts/test_list.py
> index c1518a904baf..bd03fcfc7efd 100644
> --- a/scripts/test_list.py
> +++ b/scripts/test_list.py
> @@ -484,6 +484,8 @@ class TestList:
>              if "testlist" not in self.props[field]["_properties_"]:
>                  continue
>  
> +            default_value = self.props[field]["_properties_"].get("default-testlist")
> +
>              testname = subtest_dict["_summary_"]
>  
>              value = subtest_dict.get(field)
> @@ -510,8 +512,8 @@ class TestList:
>                                  set_full_if_empty = False
>                              values.discard(deleted_names)
>  
> -            if set_full_if_empty and not values:
> -                values = set(["FULL"])
> +            if default_value and set_full_if_empty and not values:
> +                values = set([default_value])

What if someone forget to add default? imho here this should be:

               if set_full_if_empty and not values:
                   if default_value:
                       values = set([default_value])
                   else
                       values = set(["FULL"])

Regards,
Kamil

>  
>              subtest_dict[field] = ", ".join(sorted(values))
>  
> diff --git a/tests/intel/kms_test_config.json b/tests/intel/kms_test_config.json
> index 7ab288685677..5be264a79c6e 100644
> --- a/tests/intel/kms_test_config.json
> +++ b/tests/intel/kms_test_config.json
> @@ -22,6 +22,7 @@
>              "Run type": {
>                  "_properties_": {
>                      "description": "Defines what category of testlist it belongs",
> +                    "default-testlist": "FULL",
>                      "testlists": {
>                          "i915 BAT": "../intel-ci/fast-feedback.testlist",
>                          "i915 BAT chamelium": "../intel-ci/fast-feedback-chamelium-only.testlist",
> diff --git a/tests/intel/xe_test_config.json b/tests/intel/xe_test_config.json
> index 408afcbb03bc..9e582a43df56 100644
> --- a/tests/intel/xe_test_config.json
> +++ b/tests/intel/xe_test_config.json
> @@ -32,6 +32,7 @@
>                          "_properties_": {
>                              "mandatory": true,
>                              "description": "Defines what category of testlist it belongs",
> +                            "default-testlist": "FULL",
>                              "testlists": {
>                                  "Xe BAT": "../intel-ci/xe-fast-feedback.testlist"
>                              },
> -- 
> 2.41.0
> 


More information about the igt-dev mailing list