From: Petri Latvala <petri.latvala@intel.com>
To: igt-dev@lists.freedesktop.org
Cc: Martin Peres <martin.peres@free.fr>
Subject: [igt-dev] [PATCH i-g-t 2/2] tests/kms_plane: Use just one valid output
Date: Fri, 15 Mar 2019 14:53:33 +0200 [thread overview]
Message-ID: <20190315125333.18856-2-petri.latvala@intel.com> (raw)
In-Reply-To: <20190315125333.18856-1-petri.latvala@intel.com>
From: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
Since those are just pipe CRC tests output does not really matter.
Instead of running the test number-of-connected-outputs times per pipe,
let's run them just once.
Cc: Martin Peres <martin.peres@free.fr>
Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
Reviewed-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
---
tests/kms_plane.c | 78 +++++++++++++++++++----------------------------
1 file changed, 32 insertions(+), 46 deletions(-)
diff --git a/tests/kms_plane.c b/tests/kms_plane.c
index 82d4d1d0..d8a14ecb 100644
--- a/tests/kms_plane.c
+++ b/tests/kms_plane.c
@@ -219,28 +219,23 @@ test_plane_position_with_output(data_t *data,
static void
test_plane_position(data_t *data, enum pipe pipe, unsigned int flags)
{
+ int n_planes = data->display.pipes[pipe].n_planes;
igt_output_t *output;
- int connected_outs = 0;
-
- for_each_valid_output_on_pipe(&data->display, pipe, output) {
- int n_planes = data->display.pipes[pipe].n_planes;
- igt_crc_t reference_crc;
-
- test_init(data, pipe);
+ igt_crc_t reference_crc;
- test_grab_crc(data, output, pipe, &green, &reference_crc);
+ output = igt_get_single_output_for_pipe(&data->display, pipe);
+ igt_require(output);
- for (int plane = 1; plane < n_planes; plane++)
- test_plane_position_with_output(data, pipe, plane,
- output, &reference_crc,
- flags);
+ test_init(data, pipe);
- test_fini(data);
+ test_grab_crc(data, output, pipe, &green, &reference_crc);
- connected_outs++;
- }
+ for (int plane = 1; plane < n_planes; plane++)
+ test_plane_position_with_output(data, pipe, plane,
+ output, &reference_crc,
+ flags);
- igt_skip_on(connected_outs == 0);
+ test_fini(data);
}
/*
@@ -340,31 +335,24 @@ test_plane_panning_with_output(data_t *data,
static void
test_plane_panning(data_t *data, enum pipe pipe, unsigned int flags)
{
+ int n_planes = data->display.pipes[pipe].n_planes;
igt_output_t *output;
- int connected_outs = 0;
-
- for_each_valid_output_on_pipe(&data->display, pipe, output) {
- int n_planes = data->display.pipes[pipe].n_planes;
- igt_crc_t red_crc;
- igt_crc_t blue_crc;
-
- test_init(data, pipe);
+ igt_crc_t red_crc;
+ igt_crc_t blue_crc;
- test_grab_crc(data, output, pipe, &red, &red_crc);
- test_grab_crc(data, output, pipe, &blue, &blue_crc);
+ output = igt_get_single_output_for_pipe(&data->display, pipe);
+ igt_require(output);
- for (int plane = 1; plane < n_planes; plane++)
- test_plane_panning_with_output(data, pipe, plane,
- output,
- &red_crc, &blue_crc,
- flags);
+ test_init(data, pipe);
- test_fini(data);
+ test_grab_crc(data, output, pipe, &red, &red_crc);
+ test_grab_crc(data, output, pipe, &blue, &blue_crc);
- connected_outs++;
- }
+ for (int plane = 1; plane < n_planes; plane++)
+ test_plane_panning_with_output(data, pipe, plane, output,
+ &red_crc, &blue_crc, flags);
- igt_skip_on(connected_outs == 0);
+ test_fini(data);
}
static const color_t colors[] = {
@@ -601,22 +589,20 @@ static bool test_format_plane(data_t *data, enum pipe pipe,
static void
test_pixel_formats(data_t *data, enum pipe pipe)
{
+ bool result;
igt_output_t *output;
+ igt_plane_t *plane;
- igt_display_require_output_on_pipe(&data->display, pipe);
-
- for_each_valid_output_on_pipe(&data->display, pipe, output) {
- bool result = true;
- igt_plane_t *plane;
+ output = igt_get_single_output_for_pipe(&data->display, pipe);
+ igt_require(output);
- for_each_plane_on_pipe(&data->display, pipe, plane)
- result &= test_format_plane(data, pipe, output, plane);
+ result = true;
+ for_each_plane_on_pipe(&data->display, pipe, plane)
+ result &= test_format_plane(data, pipe, output, plane);
- igt_assert_f(result, "At least one CRC mismatch happened\n");
+ igt_assert_f(result, "At least one CRC mismatch happened\n");
-
- igt_output_set_pipe(output, PIPE_ANY);
- }
+ igt_output_set_pipe(output, PIPE_ANY);
}
static void
--
2.19.1
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
next prev parent reply other threads:[~2019-03-15 12:53 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-03-15 12:53 [igt-dev] [PATCH i-g-t 1/2] tests/kms_plane: Print count of mismatched colors Petri Latvala
2019-03-15 12:53 ` Petri Latvala [this message]
2019-03-18 9:14 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] tests/kms_plane: Print count of mismatched colors (rev2) Patchwork
2019-03-18 11:27 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2019-03-19 3:26 ` [igt-dev] [PATCH i-g-t 1/2] tests/kms_plane: Print count of mismatched colors Dhinakaran Pandiyan
-- strict thread matches above, loose matches on Subject: below --
2019-03-14 11:03 Arkadiusz Hiler
2019-03-14 11:03 ` [igt-dev] [PATCH i-g-t 2/2] tests/kms_plane: Use just one valid output Arkadiusz Hiler
2019-03-14 12:19 ` Maarten Lankhorst
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=20190315125333.18856-2-petri.latvala@intel.com \
--to=petri.latvala@intel.com \
--cc=igt-dev@lists.freedesktop.org \
--cc=martin.peres@free.fr \
/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