From: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
To: Nidhi Gupta <nidhi1.gupta@intel.com>, igt-dev@lists.freedesktop.org
Subject: Re: [igt-dev] [PATCH 1/2] tests/i915/kms_draw_crc: Convert tests to dynamic
Date: Thu, 18 Aug 2022 17:55:11 +0300 [thread overview]
Message-ID: <a9fad1b4-9811-a50a-dcca-be44bcbfae0d@gmail.com> (raw)
In-Reply-To: <20220804034029.17355-2-nidhi1.gupta@intel.com>
Hi Nidhi,
I noticed this was not yet merged, there's one comment below.
On 4.8.2022 6.40, Nidhi Gupta wrote:
> Convert the existing subtests to dynamic subtests.
>
> v2: check all per-requisites before starting dynamic
> tests, since to avoid skip in igt_dynamic().
> (Bhanu)
>
> Signed-off-by: Nidhi Gupta <nidhi1.gupta@intel.com>
> Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
> ---
> tests/i915/kms_draw_crc.c | 54 ++++++++++++++++++++++++---------------
> 1 file changed, 33 insertions(+), 21 deletions(-)
>
> diff --git a/tests/i915/kms_draw_crc.c b/tests/i915/kms_draw_crc.c
> index 33fefed4..48c7d931 100644
> --- a/tests/i915/kms_draw_crc.c
> +++ b/tests/i915/kms_draw_crc.c
> @@ -177,15 +177,6 @@ static void draw_method_subtest(enum igt_draw_method method,
> {
> igt_crc_t crc;
>
> - igt_skip_on(modifier == I915_FORMAT_MOD_4_TILED &&
> - !HAS_4TILE(intel_get_drm_devid(drm_fd)));
> -
> - igt_skip_on(method == IGT_DRAW_MMAP_WC && !gem_mmap__has_wc(drm_fd));
> - igt_skip_on(method == IGT_DRAW_MMAP_GTT &&
> - !gem_has_mappable_ggtt(drm_fd));
> -
> - igt_require(format_is_supported(formats[format_index], modifier));
> -
> /* Use IGT_DRAW_MMAP_GTT/WC on an untiled buffer as the parameter for
> * comparison. Cache the value so we don't recompute it for every single
> * subtest. */
> @@ -331,22 +322,43 @@ igt_main
> {
> enum igt_draw_method method;
> int format_idx, modifier_idx;
> + uint64_t modifier;
>
> igt_fixture
> setup_environment();
>
> - for (format_idx = 0; format_idx < ARRAY_SIZE(formats); format_idx++) {
> - for (method = 0; method < IGT_DRAW_METHOD_COUNT; method++) {
> - for (modifier_idx = 0; modifier_idx < ARRAY_SIZE(modifiers); modifier_idx++) {
> - igt_describe("This subtest verfies igt_draw library works "
> - "with different modifiers, DRM_FORMATS, DRAW_METHODS.");
> - igt_subtest_f("draw-method-%s-%s-%s",
> - format_str(format_idx),
> - igt_draw_get_method_name(method),
> - modifier_str(modifier_idx))
> - draw_method_subtest(method, format_idx,
> - modifiers[modifier_idx]);
> - } } }
> + igt_describe("This subtest verfies igt_draw library works "
> + "with different modifiers, DRM_FORMATS, DRAW_METHODS.");
> + igt_subtest_with_dynamic("draw-method") {
> + for (format_idx = 0; format_idx < ARRAY_SIZE(formats); format_idx++) {
> + for (method = 0; method < IGT_DRAW_METHOD_COUNT; method++) {
> + for (modifier_idx = 0; modifier_idx < ARRAY_SIZE(modifiers); modifier_idx++) {
> + modifier = modifiers[modifier_idx];
> +
> + if (modifier == I915_FORMAT_MOD_4_TILED &&
> + !HAS_4TILE(intel_get_drm_devid(drm_fd)))
> + continue;
I think above check for I915_FORMAT_MOD_4_TILED can be removed since
just below there's check for format_is_supported(..) which you change in
later patch for igt_display_has_format_mod(..)
> +
> + if (method == IGT_DRAW_MMAP_WC && !gem_mmap__has_wc(drm_fd))
> + continue;
> +
> + if (method == IGT_DRAW_MMAP_GTT &&
> + !gem_has_mappable_ggtt(drm_fd))
> + continue;
> +
> + if (!format_is_supported(formats[format_idx], modifier))
> + continue;
> +
> + igt_dynamic_f("%s-%s-%s",
> + format_str(format_idx),
> + igt_draw_get_method_name(method),
> + modifier_str(modifier_idx))
> + draw_method_subtest(method, format_idx,
> + modifier);
> + }
> + }
> + }
> + }
>
> igt_describe("This subtest verifies CRC after filling fb with x-tiling "
> "or none.");
next prev parent reply other threads:[~2022-08-18 14:55 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-08-04 3:40 [igt-dev] [PATCH 0/2] tests/i915/kms_draw_crc: Test Cleanup Nidhi Gupta
2022-08-04 3:40 ` [igt-dev] [PATCH 1/2] tests/i915/kms_draw_crc: Convert tests to dynamic Nidhi Gupta
2022-08-18 14:55 ` Juha-Pekka Heikkila [this message]
2022-08-04 3:40 ` [igt-dev] [PATCH 2/2] tests/i915/kms_draw_crc: Test Cleanup Nidhi Gupta
2022-08-08 11:16 ` Gupta, Nidhi1
2022-08-08 14:02 ` Modem, Bhanuprakash
2022-08-09 8:00 ` Modem, Bhanuprakash
2022-08-09 9:08 ` Modem, Bhanuprakash
2022-08-09 12:53 ` Juha-Pekka Heikkila
2022-08-10 10:11 ` Nidhi Gupta
2022-08-10 13:27 ` Nidhi Gupta
2022-08-12 10:37 ` Modem, Bhanuprakash
2022-08-04 4:23 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/i915/kms_draw_crc: Test Cleanup (rev4) Patchwork
2022-08-04 7:49 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2022-08-08 11:28 ` [igt-dev] ✗ Fi.CI.BUILD: failure for tests/i915/kms_draw_crc: Test Cleanup (rev5) Patchwork
2022-08-10 12:53 ` [igt-dev] ✗ Fi.CI.BUILD: failure for tests/i915/kms_draw_crc: Test Cleanup (rev6) Patchwork
2022-08-10 14:54 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/i915/kms_draw_crc: Test Cleanup (rev7) Patchwork
2022-08-11 0:45 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
-- strict thread matches above, loose matches on Subject: below --
2022-09-05 11:24 [igt-dev] [PATCH 0/2] tests/i915/kms_draw_crc: Test Cleanup Nidhi Gupta
2022-09-05 11:24 ` [igt-dev] [PATCH 1/2] tests/i915/kms_draw_crc: Convert tests to dynamic Nidhi Gupta
2022-08-26 5:44 [igt-dev] [PATCH 0/2] tests/i915/kms_draw_crc: Test Cleanup Nidhi Gupta
2022-08-26 5:44 ` [igt-dev] [PATCH 1/2] tests/i915/kms_draw_crc: Convert tests to dynamic Nidhi Gupta
2022-08-22 9:20 [igt-dev] [PATCH 0/2] tests/i915/kms_draw_crc: Test Cleanup Nidhi Gupta
2022-08-22 9:20 ` [igt-dev] [PATCH 1/2] tests/i915/kms_draw_crc: Convert tests to dynamic Nidhi Gupta
2022-08-03 4:20 [igt-dev] [PATCH 0/2] tests/i915/kms_draw_crc: Test Cleanup Nidhi Gupta
2022-08-03 4:20 ` [igt-dev] [PATCH 1/2] tests/i915/kms_draw_crc: Convert tests to dynamic Nidhi Gupta
2022-08-03 7:04 ` Modem, Bhanuprakash
2022-08-03 4:15 [igt-dev] [PATCH 0/2] tests/i915/kms_draw_crc: Test Cleanup Nidhi Gupta
2022-08-03 4:15 ` [igt-dev] [PATCH 1/2] tests/i915/kms_draw_crc: Convert tests to dynamic Nidhi Gupta
2022-08-02 6:53 [igt-dev] [PATCH 0/2] tests/i915/kms_draw_crc: Test Cleanup Nidhi Gupta
2022-08-02 6:53 ` [igt-dev] [PATCH 1/2] tests/i915/kms_draw_crc: Convert tests to dynamic Nidhi Gupta
2022-08-02 9:56 ` Modem, Bhanuprakash
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=a9fad1b4-9811-a50a-dcca-be44bcbfae0d@gmail.com \
--to=juhapekka.heikkila@gmail.com \
--cc=igt-dev@lists.freedesktop.org \
--cc=nidhi1.gupta@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