From: "Modem, Bhanuprakash" <bhanuprakash.modem@intel.com>
To: Petri Latvala <petri.latvala@intel.com>
Cc: igt-dev@lists.freedesktop.org
Subject: Re: [igt-dev] [PATCH i-g-t] tests/kms_properties: Create dynamic subtests
Date: Fri, 30 Sep 2022 14:21:14 +0530 [thread overview]
Message-ID: <8beed0f0-e838-2370-0fe0-e056faf96e41@intel.com> (raw)
In-Reply-To: <YzaqzkBOfA6GqsKm@platvala-desk.ger.corp.intel.com>
On Fri-30-09-2022 02:07 pm, Petri Latvala wrote:
> On Thu, Sep 29, 2022 at 07:56:58PM +0530, Modem, Bhanuprakash wrote:
>> On Wed-28-09-2022 07:07 pm, Mohammed Thasleem wrote:
>>> Modified kms_properties to include dynamic test cases.
>>>
>>> v2: Fixed compilation issue.
>>> v3: Removed redundant code.
>>> v4: Moved get_prop_sanity calls to igt_subtest_group.
>>>
>>> Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com>
>>> ---
>>> tests/kms_properties.c | 172 ++++++++++++++++++-----------------------
>>> 1 file changed, 75 insertions(+), 97 deletions(-)
>>>
>>> diff --git a/tests/kms_properties.c b/tests/kms_properties.c
>>> index dd5a93aa..476769e0 100644
>>> --- a/tests/kms_properties.c
>>> +++ b/tests/kms_properties.c
>>> @@ -230,48 +230,30 @@ static void run_connector_property_tests(igt_display_t *display, enum pipe pipe,
>>> static void plane_properties(igt_display_t *display, bool atomic)
>>> {
>>> - bool found_any = false, found;
>>> igt_output_t *output;
>>> enum pipe pipe;
>>> - if (atomic)
>>> - igt_skip_on(!display->is_atomic);
>>> -
>>> - for_each_pipe(display, pipe) {
>>> - found = false;
>>> -
>>> - for_each_valid_output_on_pipe(display, pipe, output) {
>>> - found_any = found = true;
>>> -
>>> + for_each_pipe_with_valid_output(display, pipe, output) {
>>> + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe),
>>> + igt_output_name(output)) {
>>> run_plane_property_tests(display, pipe, output, atomic);
>>> - break;
>>> }
>>> + break;
>>> }
>>> -
>>> - igt_skip_on(!found_any);
>>> }
>>> static void crtc_properties(igt_display_t *display, bool atomic)
>>> {
>>> - bool found_any_valid_pipe = false, found;
>>> enum pipe pipe;
>>> igt_output_t *output;
>>> - if (atomic)
>>> - igt_skip_on(!display->is_atomic);
>>> -
>>> - for_each_pipe(display, pipe) {
>>> - found = false;
>>> -
>>> - for_each_valid_output_on_pipe(display, pipe, output) {
>>> - found_any_valid_pipe = found = true;
>>> -
>>> + for_each_pipe_with_valid_output(display, pipe, output) {
>>> + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe),
>>> + igt_output_name(output)) {
>>> run_crtc_property_tests(display, pipe, output, atomic);
>>> - break;
>>> }
>>> + break;
>>> }
>>> -
>>> - igt_skip_on(!found_any_valid_pipe);
>>> }
>>> static void connector_properties(igt_display_t *display, bool atomic)
>>> @@ -280,22 +262,12 @@ static void connector_properties(igt_display_t *display, bool atomic)
>>> enum pipe pipe;
>>> igt_output_t *output;
>>> - if (atomic)
>>> - igt_skip_on(!display->is_atomic);
>>> -
>>> - for_each_connected_output(display, output) {
>>> - bool found = false;
>>> -
>>> - for_each_pipe(display, pipe) {
>>> - if (!igt_pipe_connector_valid(pipe, output))
>>> - continue;
>>> -
>>> - found = true;
>>> + for_each_pipe_with_valid_output(display, pipe, output) {
>>> + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe),
>>> + igt_output_name(output)) {
>>> run_connector_property_tests(display, pipe, output, atomic);
>>> - break;
>>> }
>>> -
>>> - igt_assert_f(found, "Connected output should have at least 1 valid crtc\n");
>>> + break;
>>> }
>>> for (i = 0; i < display->n_outputs; i++)
>>> @@ -707,26 +679,58 @@ static void invalid_properties(igt_display_t *display, bool atomic)
>>> igt_output_t *output;
>>> igt_plane_t *plane;
>>> enum pipe pipe;
>>> - int i;
>>> -
>>> - if (atomic)
>>> - igt_skip_on(!display->is_atomic);
>>> for_each_pipe(display, pipe)
>>> - test_object_invalid_properties(display, display->pipes[pipe].crtc_id, DRM_MODE_OBJECT_CRTC, atomic);
>>> + igt_dynamic_f("pipe-%s", kmstest_pipe_name(pipe))
>>> + test_object_invalid_properties(display, display->pipes[pipe].crtc_id,
>>> + DRM_MODE_OBJECT_CRTC, atomic);
>>> for_each_pipe(display, pipe)
>>> - for_each_plane_on_pipe(display, pipe, plane)
>>> - test_object_invalid_properties(display, plane->drm_plane->plane_id, DRM_MODE_OBJECT_PLANE, atomic);
>>> + igt_dynamic_f("pipe-%s-plane", kmstest_pipe_name(pipe))
>>> + for_each_plane_on_pipe(display, pipe, plane)
>>> + test_object_invalid_properties(display, plane->drm_plane->plane_id,
>>> + DRM_MODE_OBJECT_PLANE, atomic);
>>> +
>>> + for_each_connected_output(display, output)
>>> + igt_dynamic_f("%s", igt_output_name(output))
>>> + test_object_invalid_properties(display, output->id,
>>> + DRM_MODE_OBJECT_CONNECTOR, atomic);
>>> - for (i = 0, output = &display->outputs[0]; i < display->n_outputs; output = &display->outputs[++i])
>>> - test_object_invalid_properties(display, output->id, DRM_MODE_OBJECT_CONNECTOR, atomic);
>>
>> Please fix the same inside test_object_invalid_properties()
>> use for_each_connected_output()
>>
>>> }
>>> igt_main
>>> {
>>> igt_display_t display;
>>> + static const struct {
>>> + const char *name;
>>> + void (*func)(igt_display_t *, bool);
>>> + const bool atomic;
>>> + const char *desc;
>>> + } funcs[] = {
>>> + { "plane-properties-legacy", plane_properties, false,
>>> + "Tests plane properties with legacy commit" },
>>> + { "plane-properties-atomic", plane_properties, true,
>>> + "Tests plane properties with atomic commit" },
>>> + { "crtc-properties-legacy", crtc_properties, false,
>>> + "Tests crtc properties with legacy commit" },
>>> + { "crtc-properties-atomic", crtc_properties, true,
>>> + "Tests crtc properties with atomic commit" },
>>> + { "connector-properties-legacy", connector_properties, false,
>>> + "Tests connector properties with legacy commit" },
>>
>> https://cgit.freedesktop.org/drm/igt-gpu-tools/tree/tests/kms_properties.c#n301
>>
>> for (i = 0; i < display->n_outputs; i++)
>> if (!igt_output_is_connected(&display->outputs[i]))
>> run_connector_property_tests(display, PIPE_NONE, &display->outputs[i],
>> atomic);
>>
>> I can recommend to create a new api for_each_output() to iterate all
>> outputs.
>
> There's for_each_connected_output already.
Yes, but this test is looking for the disconnected outputs.
My idea is to have 2 helpers (maybe 3) [1]
- for_each_output
- for_each_connected_output
- for_each_disconnected_output
[1]: https://patchwork.freedesktop.org/series/109253/
- Bhanu
>
>
next prev parent reply other threads:[~2022-09-30 8:51 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-09-18 17:29 [igt-dev] [PATCH i-g-t] tests/kms_properties: Create dynamic subtests Mohammed Thasleem
2022-09-18 17:50 ` [igt-dev] ✗ GitLab.Pipeline: warning for " Patchwork
2022-09-18 18:07 ` [igt-dev] ✗ Fi.CI.BAT: failure " Patchwork
2022-09-19 21:12 ` [igt-dev] [PATCH i-g-t] " Mohammed Thasleem
2022-09-22 14:11 ` Mohammed Thasleem
2022-09-28 13:37 ` Mohammed Thasleem
2022-09-29 14:26 ` Modem, Bhanuprakash
2022-09-30 8:37 ` Petri Latvala
2022-09-30 8:51 ` Modem, Bhanuprakash [this message]
2022-09-30 10:04 ` Petri Latvala
2022-10-06 19:33 ` Mohammed Thasleem
2022-10-06 19:56 ` Ville Syrjälä
2022-10-12 15:44 ` Thasleem, Mohammed
2022-09-19 21:55 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_properties: Create dynamic subtests (rev2) Patchwork
2022-09-20 4:48 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2022-09-22 21:18 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_properties: Create dynamic subtests (rev3) Patchwork
2022-09-23 2:52 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2022-09-28 14:32 ` [igt-dev] ✗ Fi.CI.BAT: failure for tests/kms_properties: Create dynamic subtests (rev4) Patchwork
2022-09-28 17:28 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2022-09-29 8:01 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2022-09-29 13:27 ` Patchwork
2022-10-06 20:21 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_properties: Create dynamic subtests (rev5) Patchwork
2022-10-07 6:48 ` [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=8beed0f0-e838-2370-0fe0-e056faf96e41@intel.com \
--to=bhanuprakash.modem@intel.com \
--cc=igt-dev@lists.freedesktop.org \
--cc=petri.latvala@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