From: Mauro Carvalho Chehab <mauro.chehab@linux.intel.com>
To: Lucas De Marchi <lucas.demarchi@intel.com>
Cc: igt-dev@lists.freedesktop.org
Subject: Re: [igt-dev] [PATCH i-g-t] xe_live_ktest: Use xe_live_test kernel module
Date: Thu, 7 Dec 2023 16:41:52 +0100 [thread overview]
Message-ID: <20231207164152.57be3d07@maurocar-mobl2> (raw)
In-Reply-To: <20231205224926.2188996-1-lucas.demarchi@intel.com>
On Tue, 5 Dec 2023 14:49:26 -0800
Lucas De Marchi <lucas.demarchi@intel.com> wrote:
> https://patchwork.freedesktop.org/series/126786/ groups all the live
> tests into a single kernel module. Use that module to run any of the
> tests triggered by igt.
>
> Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
> ---
> tests/intel/xe_live_ktest.c | 15 +++++----------
> 1 file changed, 5 insertions(+), 10 deletions(-)
>
> diff --git a/tests/intel/xe_live_ktest.c b/tests/intel/xe_live_ktest.c
> index fe7b2e69f..c8bd68928 100644
> --- a/tests/intel/xe_live_ktest.c
> +++ b/tests/intel/xe_live_ktest.c
> @@ -19,15 +19,10 @@
> * Functionality: migrate
> */
>
> -struct kunit_tests {
> - const char *kunit;
> - const char *name;
> -};
> -
> -static const struct kunit_tests live_tests[] = {
> - { "xe_bo_test", "bo" },
> - { "xe_dma_buf_test", "dmabuf" },
> - { "xe_migrate_test", "migrate" },
> +static const char *live_tests[] = {
> + "bo",
> + "dmabuf",
> + "migrate",
> };
>
> igt_main
> @@ -35,5 +30,5 @@ igt_main
> int i;
>
> for (i = 0; i < ARRAY_SIZE(live_tests); i++)
> - igt_kunit(live_tests[i].kunit, live_tests[i].name, NULL);
> + igt_kunit("xe_live_test", live_tests[i], NULL);
This loop will modprobe xe_live_test the times. Just do something
like:
igt_kunit("xe_live_test", "live_tests", NULL);
> }
Regards,
Mauro
next prev parent reply other threads:[~2023-12-07 15:41 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-12-05 22:49 [igt-dev] [PATCH i-g-t] xe_live_ktest: Use xe_live_test kernel module Lucas De Marchi
2023-12-06 0:04 ` [igt-dev] ✗ Fi.CI.BAT: failure for " Patchwork
2023-12-06 2:30 ` [igt-dev] ✗ CI.xeBAT: " Patchwork
2023-12-07 15:41 ` Mauro Carvalho Chehab [this message]
[not found] ` <3kunqgqyf7tobiwhcpvjp7rcvidrgnz2jq3qqoxjbl7kaftdq7@7hdweo57htff>
[not found] ` <njwvai6cu7jwmy7lmg3vkg4jd52uq2f6es4obvdplkz43i6hpe@jqrzk4bveqqc>
2024-01-11 23:45 ` [igt-dev] [PATCH i-g-t] " Lucas De Marchi
2024-01-12 8:32 ` Mauro Carvalho Chehab
2024-01-12 14:29 ` Lucas De Marchi
2024-01-15 7:08 ` Mauro Carvalho Chehab
2024-01-15 7:21 ` Jani Nikula
2024-01-15 19:52 ` Mauro Carvalho Chehab
2024-01-16 14:50 ` Lucas De Marchi
2024-01-17 6:14 ` Mauro Carvalho Chehab
2024-01-22 11:35 ` Janusz Krzysztofik
2024-01-22 15:37 ` Lucas De Marchi
2024-01-23 11:18 ` Janusz Krzysztofik
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=20231207164152.57be3d07@maurocar-mobl2 \
--to=mauro.chehab@linux.intel.com \
--cc=igt-dev@lists.freedesktop.org \
--cc=lucas.demarchi@intel.com \
/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