From: "Zbigniew Kempczyński" <zbigniew.kempczynski@intel.com>
To: igt-dev@lists.freedesktop.org
Subject: Re: [igt-dev] [PATCH i-g-t v2 11/19] scripts/igt_doc.py: use a different logic to get IGT prefix
Date: Mon, 13 Mar 2023 08:08:36 +0100 [thread overview]
Message-ID: <20230313070836.pkr7a2f2thvilnds@zkempczy-mobl2> (raw)
In-Reply-To: <20230310194125.14781-12-zbigniew.kempczynski@intel.com>
On Fri, Mar 10, 2023 at 08:41:17PM +0100, Zbigniew Kempczyński wrote:
> From: Mauro Carvalho Chehab <mchehab@kernel.org>
>
> The past logic was dependent on how the initial Xe IGT support
> was conceived. Change it to be more generic and use
> os.path.commonprefix.
>
> Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
> ---
> scripts/igt_doc.py | 19 ++++++-------------
> 1 file changed, 6 insertions(+), 13 deletions(-)
>
> diff --git a/scripts/igt_doc.py b/scripts/igt_doc.py
> index 5b08ac1442..f1b6d64615 100755
> --- a/scripts/igt_doc.py
> +++ b/scripts/igt_doc.py
> @@ -235,7 +235,6 @@ class TestList:
> def __init__(self, config_fname, include_plan, file_list):
> self.doc = {}
> self.test_number = 0
> - self.min_test_prefix = ''
> self.config = None
> self.filenames = file_list
> self.plan_filenames = []
> @@ -494,7 +493,7 @@ class TestList:
> for test in self.doc: # pylint: disable=C0206
> fname = self.doc[test]["File"]
>
> - name = re.sub(r'.*tests/', '', fname)
> + name = re.sub(r'.*/', '', fname)
> name = re.sub(r'\.[\w+]$', '', name)
> name = "igt@" + name
>
> @@ -548,7 +547,7 @@ class TestList:
> for test in sorted(self.doc.keys()):
> fname = self.doc[test]["File"]
>
> - name = re.sub(r'.*tests/', '', fname)
> + name = re.sub(r'.*/', '', fname)
> name = re.sub(r'\.[ch]', '', name)
> name = "igt@" + name
>
> @@ -720,7 +719,7 @@ class TestList:
> for test in sorted(self.doc.keys()):
> fname = self.doc[test]["File"]
>
> - test_name = re.sub(r'.*tests/', '', fname)
> + test_name = re.sub(r'.*/', '', fname)
> test_name = re.sub(r'\.[ch]', '', test_name)
> test_name = "igt@" + test_name
>
> @@ -759,10 +758,12 @@ class TestList:
> for i in range(0, len(doc_subtests)): # pylint: disable=C0200
> doc_subtests[i] = re.sub(r'\<[^\>]+\>', r'\\d+', doc_subtests[i])
>
> + test_prefix = os.path.commonprefix(doc_subtests)
> +
> # Get a list of tests from
> try:
> result = subprocess.run([ f"{IGT_BUILD_PATH}/{IGT_RUNNER}",
> - "-L", "-t", self.min_test_prefix,
> + "-L", "-t", test_prefix,
> f"{IGT_BUILD_PATH}/tests"], check = True,
> stdout=subprocess.PIPE, universal_newlines=True)
> except subprocess.CalledProcessError as sub_err:
> @@ -824,14 +825,6 @@ class TestList:
> cur_arg = -1
> cur_arg_element = 0
>
> - prefix = re.sub(r'.*tests/', '', fname)
> - prefix = r'igt\@' + re.sub(r'(.*/).*', r'\1', prefix)
> -
> - if self.min_test_prefix == '':
> - self.min_test_prefix = prefix
> - elif len(prefix) < len(self.min_test_prefix):
> - self.min_test_prefix = prefix
> -
> with open(fname, 'r', encoding='utf8') as handle:
> arg_ref = None
> current_test = ''
> --
> 2.34.1
>
Acked-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
--
Zbigniew
next prev parent reply other threads:[~2023-03-13 7:08 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-03-10 19:41 [igt-dev] [PATCH i-g-t v2 00/19] Add igt_doc.py Zbigniew Kempczyński
2023-03-10 19:41 ` [igt-dev] [PATCH i-g-t v2 01/19] scripts/igt_doc.py: beautify its code Zbigniew Kempczyński
2023-03-10 19:41 ` [igt-dev] [PATCH i-g-t v2 02/19] scripts/igt_doc.py: add JSON file output Zbigniew Kempczyński
2023-03-10 19:41 ` [igt-dev] [PATCH i-g-t v2 03/19] scripts/igt_doc.py: dynamically create fields array from a JSON file Zbigniew Kempczyński
2023-03-10 19:41 ` [igt-dev] [PATCH i-g-t v2 04/19] scripts/igt_doc.py: add support to specify numeric values Zbigniew Kempczyński
2023-03-13 6:50 ` Zbigniew Kempczyński
2023-03-10 19:41 ` [igt-dev] [PATCH i-g-t v2 05/19] scripts/igt_doc.py: improve --show-subtests logic Zbigniew Kempczyński
2023-03-13 6:54 ` Zbigniew Kempczyński
2023-03-10 19:41 ` [igt-dev] [PATCH i-g-t v2 06/19] scripts/igt_doc.py: add error handler for subprocess Zbigniew Kempczyński
2023-03-13 6:55 ` Zbigniew Kempczyński
2023-03-10 19:41 ` [igt-dev] [PATCH i-g-t v2 07/19] scripts/igt_doc.py: improve multi-line logic Zbigniew Kempczyński
2023-03-10 19:41 ` [igt-dev] [PATCH i-g-t v2 08/19] scripts/igt_doc.py: don't use ":=" operator Zbigniew Kempczyński
2023-03-10 19:41 ` [igt-dev] [PATCH i-g-t v2 09/19] scripts/igt_doc.py: make it compatible with Python 3.6 Zbigniew Kempczyński
2023-03-10 19:41 ` [igt-dev] [PATCH i-g-t v2 10/19] scripts/igt_doc.py: sets the minimal version to run the script Zbigniew Kempczyński
2023-03-10 19:41 ` [igt-dev] [PATCH i-g-t v2 11/19] scripts/igt_doc.py: use a different logic to get IGT prefix Zbigniew Kempczyński
2023-03-13 7:08 ` Zbigniew Kempczyński [this message]
2023-03-10 19:41 ` [igt-dev] [PATCH i-g-t v2 12/19] testplan/meson.build: add targets to build Xe test documentation Zbigniew Kempczyński
2023-03-10 19:41 ` [igt-dev] [PATCH i-g-t v2 13/19] xe/xe_test_config.json: cleanup the field struct Zbigniew Kempczyński
2023-03-10 19:41 ` [igt-dev] [PATCH i-g-t v2 14/19] xe/xe_huc_copy: add GPU dependency to its documentation Zbigniew Kempczyński
2023-03-10 19:41 ` [igt-dev] [PATCH i-g-t v2 15/19] xe/xe_*: add TEST/SUBTEST documentation Zbigniew Kempczyński
2023-03-10 19:41 ` [igt-dev] [PATCH i-g-t v2 16/19] xe-fast-feedback.testlist: update debugfs tests Zbigniew Kempczyński
2023-03-10 19:41 ` [igt-dev] [PATCH i-g-t v2 17/19] xe_mmap: skip VRAM tests if no VRAM is found Zbigniew Kempczyński
2023-03-10 19:41 ` [igt-dev] [PATCH i-g-t v2 18/19] meson: replace "igt@xe/" by "igt@" Zbigniew Kempczyński
2023-03-10 19:41 ` [igt-dev] [PATCH i-g-t v2 19/19] scripts/igt_doc.py: set have_implemented when --files is used Zbigniew Kempczyński
2023-03-13 7:10 ` Zbigniew Kempczyński
2023-03-10 20:34 ` [igt-dev] ✓ Fi.CI.BAT: success for Add igt_doc.py (rev2) Patchwork
2023-03-13 18:34 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20230313070836.pkr7a2f2thvilnds@zkempczy-mobl2 \
--to=zbigniew.kempczynski@intel.com \
--cc=igt-dev@lists.freedesktop.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox