[igt-dev] [PATCH i-g-t v2 04/19] scripts/igt_doc.py: add support to specify numeric values
Zbigniew Kempczyński
zbigniew.kempczynski at intel.com
Mon Mar 13 06:50:17 UTC 2023
On Fri, Mar 10, 2023 at 08:41:10PM +0100, Zbigniew Kempczyński wrote:
> From: Mauro Carvalho Chehab <mchehab at kernel.org>
>
> Add a way to specify a set of default values to be used when numeric
> wildcards like "%d" are present at the igt subtest.
>
> Signed-off-by: Mauro Carvalho Chehab <mchehab at kernel.org>
> ---
> scripts/igt_doc.py | 36 ++++++++++++++++++++++++++++++++++++
> 1 file changed, 36 insertions(+)
>
> diff --git a/scripts/igt_doc.py b/scripts/igt_doc.py
> index 425240b2f7..643c7e7a7b 100755
> --- a/scripts/igt_doc.py
> +++ b/scripts/igt_doc.py
> @@ -147,6 +147,27 @@ class TestList:
> * @userptr-misaligned-binds: userptr misaligned
> */
>
> + It is also possible to define a list of values that will actually be
> + used by the test and no string replacement is needed.
> + This is done by using one or multiple arg[n].values lines:
> +
> + /**
> + * SUBTEST: unbind-all-%d-vmas
> + * Description: unbind all with %arg[1] VMAs
> + *
> + * arg[1].values: 2, 8
> + * arg[1].values: 16, 32
> + */
> +
> + /**
> + * SUBTEST: unbind-all-%d-vmas
> + * Description: unbind all with %arg[1] VMAs
> + *
> + * arg[1].values: 64, 128
> + */
> +
> + Such feature is specially useful for numeric parameters
> +
> The valid `field` values are defined on a JSON configuration file.
>
> The TEST documents the common fields present on all tests. Typically,
> @@ -905,6 +926,21 @@ class TestList:
>
> continue
>
> + # We don't need a multi-lined version here
> + if (match := re.match(r'arg\[(\d+)\]\.values:\s*(.*)', file_line)):
> + cur_arg = int(match.group(1)) - 1
> +
> + if cur_arg not in self.doc[current_test]["arg"][arg_ref]:
> + self.doc[current_test]["arg"][arg_ref][cur_arg] = {}
> +
> + values = match.group(2).split(",")
> + for split_val in values:
> + if split_val == "":
> + continue
> + self.doc[current_test]["arg"][arg_ref][cur_arg][split_val.strip()] = split_val.strip()
> +
> + continue
> +
> if (match := re.match(r'^(.*):', file_line)):
> sys.exit(f"{fname}:{file_ln + 1}: Error: unrecognized field '%s'. Need to add at %s" %
> (match.group(1), self.config_fname))
> --
> 2.34.1
>
Acked-by: Zbigniew Kempczyński <zbigniew.kempczynski at intel.com>
--
Zbigniew
More information about the igt-dev
mailing list