* [PATCH i-g-t 0/2] add subtest in kms_bw for connected outputs only
@ 2024-06-13 13:07 Kunal Joshi
2024-06-13 13:07 ` [PATCH i-g-t 1/2] tests/kms_bw: add subtest for only connected outputs Kunal Joshi
` (4 more replies)
0 siblings, 5 replies; 9+ messages in thread
From: Kunal Joshi @ 2024-06-13 13:07 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
forcing DP connector doesn't work well on intel HW and tests are skipping
with unsupported mode, add new test which runs test on connected
outputs only.
Kunal Joshi (2):
tests/kms_bw: add subtest for only connected outputs
HAX patch do not merge
tests/intel-ci/fast-feedback.testlist | 64 +++++++++++++++++++++++
tests/intel-ci/xe-fast-feedback.testlist | 66 ++++++++++++++++++++++++
tests/kms_bw.c | 41 ++++++++++++---
3 files changed, 165 insertions(+), 6 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH i-g-t 1/2] tests/kms_bw: add subtest for only connected outputs
2024-06-13 13:07 [PATCH i-g-t 0/2] add subtest in kms_bw for connected outputs only Kunal Joshi
@ 2024-06-13 13:07 ` Kunal Joshi
2024-06-13 14:48 ` Aurabindo Pillai
2024-06-13 13:07 ` [PATCH i-g-t 2/2] HAX patch do not merge Kunal Joshi
` (3 subsequent siblings)
4 siblings, 1 reply; 9+ messages in thread
From: Kunal Joshi @ 2024-06-13 13:07 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi, Aurabindo Pillai
forcing DP connector doesn't work well and tests are skipping
with unsupported mode, add new test which runs test on connected
outputs only.
Cc: Aurabindo Pillai <aurabindo.pillai@amd.com>
Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
---
tests/kms_bw.c | 41 +++++++++++++++++++++++++++++++++++------
1 file changed, 35 insertions(+), 6 deletions(-)
diff --git a/tests/kms_bw.c b/tests/kms_bw.c
index 05f7e79ad..bbf374612 100644
--- a/tests/kms_bw.c
+++ b/tests/kms_bw.c
@@ -48,6 +48,19 @@
* @2560x1440p: 2560x1440 resolution
* @3840x2160p: 3840x2160 resolution
* @2160x1440p: 2160x1440 resolution
+ *
+ * SUBTEST: connected-linear-tiling-%d-displays-%s
+ * Description: bw test with %arg[2]
+ *
+ * arg[1].values: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16
+ *
+ * arg[2]:
+ *
+ * @1920x1080p: 1920x1080 resolution
+ * @2560x1440p: 2560x1440 resolution
+ * @3840x2160p: 3840x2160 resolution
+ * @2160x1440p: 2160x1440 resolution
+ *
*/
/* Common test data. */
@@ -55,6 +68,7 @@ typedef struct data {
igt_display_t display;
igt_plane_t *primary[IGT_MAX_PIPES];
igt_output_t *output[IGT_MAX_PIPES];
+ igt_output_t *connected_output[IGT_MAX_PIPES];
igt_pipe_t *pipe[IGT_MAX_PIPES];
igt_pipe_crc_t *pipe_crc[IGT_MAX_PIPES];
drmModeModeInfo mode[IGT_MAX_PIPES];
@@ -62,6 +76,7 @@ typedef struct data {
int w[IGT_MAX_PIPES];
int h[IGT_MAX_PIPES];
int fd;
+ int connected_outputs;
} data_t;
static drmModeModeInfo test_mode[] = {
@@ -108,6 +123,7 @@ static void test_init(data_t *data)
igt_display_t *display = &data->display;
int i, max_pipes = display->n_pipes;
igt_output_t *output;
+ data->connected_outputs = 0;
for_each_pipe(display, i) {
data->pipe_id[i] = i;
@@ -124,12 +140,12 @@ static void test_init(data_t *data)
continue;
output = &display->outputs[i];
-
data->output[i] = output;
/* Only allow physically connected displays for the tests. */
if (!igt_output_is_connected(output))
continue;
+ data->connected_output[data->connected_outputs++] = output;
igt_assert(kmstest_get_connector_default_mode(
data->fd, output->config.connector, &data->mode[i]));
@@ -173,7 +189,7 @@ static void force_output_mode(data_t *d, igt_output_t *output,
igt_output_override_mode(output, mode);
}
-static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo *mode) {
+static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo *mode, bool physical) {
igt_display_t *display = &data->display;
igt_output_t *output;
struct igt_fb buffer[IGT_MAX_PIPES];
@@ -189,11 +205,15 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo
igt_skip_on_f(pipe >= num_pipes,
"ASIC does not have %d pipes\n", pipe);
+ igt_skip_on_f(physical && pipe > data->connected_outputs ,
+ "Only %d connected need %d pipes\n",data->connected_outputs, pipe);
+
+
test_init(data);
/* create buffers */
for (i = 0; i <= pipe; i++) {
- output = data->output[i];
+ output = physical ? data->connected_output[i] : data->output[i];
if (!output) {
continue;
}
@@ -219,7 +239,7 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo
igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
for (i = 0; i <= pipe; i++) {
- output = data->output[i];
+ output = physical ? data->connected_output[i] : data->output[i];
if (!output) {
continue;
}
@@ -230,7 +250,7 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo
}
for (i = pipe; i >= 0; i--) {
- output = data->output[i];
+ output = physical ? data->connected_output[i] : data->output[i];
if (!output)
continue;
@@ -265,10 +285,19 @@ igt_main
for (j = 0; j < ARRAY_SIZE(test_mode); j++) {
igt_subtest_f("linear-tiling-%d-displays-%s", i+1,
test_mode[j].name)
- run_test_linear_tiling(&data, i, &test_mode[j]);
+ run_test_linear_tiling(&data, i, &test_mode[j], false);
}
}
+ for (i = 0; i < IGT_MAX_PIPES; i++) {
+ for (j = 0; j < ARRAY_SIZE(test_mode); j++) {
+ igt_subtest_f("connected-linear-tiling-%d-displays-%s", i+1,
+ test_mode[j].name)
+ run_test_linear_tiling(&data, i, &test_mode[j], true);
+ }
+ }
+
+
igt_fixture
{
igt_display_fini(&data.display);
--
2.25.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH i-g-t 2/2] HAX patch do not merge
2024-06-13 13:07 [PATCH i-g-t 0/2] add subtest in kms_bw for connected outputs only Kunal Joshi
2024-06-13 13:07 ` [PATCH i-g-t 1/2] tests/kms_bw: add subtest for only connected outputs Kunal Joshi
@ 2024-06-13 13:07 ` Kunal Joshi
2024-06-13 14:23 ` ✓ CI.xeBAT: success for add subtest in kms_bw for connected outputs only Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 9+ messages in thread
From: Kunal Joshi @ 2024-06-13 13:07 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
---
tests/intel-ci/fast-feedback.testlist | 64 +++++++++++++++++++++++
tests/intel-ci/xe-fast-feedback.testlist | 66 ++++++++++++++++++++++++
2 files changed, 130 insertions(+)
diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist
index be0965110..65a7fe663 100644
--- a/tests/intel-ci/fast-feedback.testlist
+++ b/tests/intel-ci/fast-feedback.testlist
@@ -1,6 +1,70 @@
# Try to load the driver if it's not available yet.
igt@i915_module_load@load
+igt@kms_bw@linear-tiling-1-displays-1920x1080p
+igt@kms_bw@linear-tiling-1-displays-2560x1440p
+igt@kms_bw@linear-tiling-1-displays-3840x2160p
+igt@kms_bw@linear-tiling-1-displays-2160x1440p
+igt@kms_bw@linear-tiling-2-displays-1920x1080p
+igt@kms_bw@linear-tiling-2-displays-2560x1440p
+igt@kms_bw@linear-tiling-2-displays-3840x2160p
+igt@kms_bw@linear-tiling-2-displays-2160x1440p
+igt@kms_bw@linear-tiling-3-displays-1920x1080p
+igt@kms_bw@linear-tiling-3-displays-2560x1440p
+igt@kms_bw@linear-tiling-3-displays-3840x2160p
+igt@kms_bw@linear-tiling-3-displays-2160x1440p
+igt@kms_bw@linear-tiling-4-displays-1920x1080p
+igt@kms_bw@linear-tiling-4-displays-2560x1440p
+igt@kms_bw@linear-tiling-4-displays-3840x2160p
+igt@kms_bw@linear-tiling-4-displays-2160x1440p
+igt@kms_bw@linear-tiling-5-displays-1920x1080p
+igt@kms_bw@linear-tiling-5-displays-2560x1440p
+igt@kms_bw@linear-tiling-5-displays-3840x2160p
+igt@kms_bw@linear-tiling-5-displays-2160x1440p
+igt@kms_bw@linear-tiling-6-displays-1920x1080p
+igt@kms_bw@linear-tiling-6-displays-2560x1440p
+igt@kms_bw@linear-tiling-6-displays-3840x2160p
+igt@kms_bw@linear-tiling-6-displays-2160x1440p
+igt@kms_bw@linear-tiling-7-displays-1920x1080p
+igt@kms_bw@linear-tiling-7-displays-2560x1440p
+igt@kms_bw@linear-tiling-7-displays-3840x2160p
+igt@kms_bw@linear-tiling-7-displays-2160x1440p
+igt@kms_bw@linear-tiling-8-displays-1920x1080p
+igt@kms_bw@linear-tiling-8-displays-2560x1440p
+igt@kms_bw@linear-tiling-8-displays-3840x2160p
+igt@kms_bw@linear-tiling-8-displays-2160x1440p
+igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p
+igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p
+igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p
+igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p
+igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p
+igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p
+igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p
+igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p
+igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p
+igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p
+igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p
+igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p
+igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p
+igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p
+igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p
+igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p
+igt@kms_bw@connected-linear-tiling-5-displays-1920x1080p
+igt@kms_bw@connected-linear-tiling-5-displays-2560x1440p
+igt@kms_bw@connected-linear-tiling-5-displays-3840x2160p
+igt@kms_bw@connected-linear-tiling-5-displays-2160x1440p
+igt@kms_bw@connected-linear-tiling-6-displays-1920x1080p
+igt@kms_bw@connected-linear-tiling-6-displays-2560x1440p
+igt@kms_bw@connected-linear-tiling-6-displays-3840x2160p
+igt@kms_bw@connected-linear-tiling-6-displays-2160x1440p
+igt@kms_bw@connected-linear-tiling-7-displays-1920x1080p
+igt@kms_bw@connected-linear-tiling-7-displays-2560x1440p
+igt@kms_bw@connected-linear-tiling-7-displays-3840x2160p
+igt@kms_bw@connected-linear-tiling-7-displays-2160x1440p
+igt@kms_bw@connected-linear-tiling-8-displays-1920x1080p
+igt@kms_bw@connected-linear-tiling-8-displays-2560x1440p
+igt@kms_bw@connected-linear-tiling-8-displays-3840x2160p
+igt@kms_bw@connected-linear-tiling-8-displays-2160x1440p
# Keep alphabetically sorted by default
igt@core_auth@basic-auth
igt@debugfs_test@read_all_entries
diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist
index aa98b37e6..207edcab8 100644
--- a/tests/intel-ci/xe-fast-feedback.testlist
+++ b/tests/intel-ci/xe-fast-feedback.testlist
@@ -1,6 +1,72 @@
# Should be the first test
igt@xe_module_load@load
+igt@kms_bw@linear-tiling-1-displays-1920x1080p
+igt@kms_bw@linear-tiling-1-displays-2560x1440p
+igt@kms_bw@linear-tiling-1-displays-3840x2160p
+igt@kms_bw@linear-tiling-1-displays-2160x1440p
+igt@kms_bw@linear-tiling-2-displays-1920x1080p
+igt@kms_bw@linear-tiling-2-displays-2560x1440p
+igt@kms_bw@linear-tiling-2-displays-3840x2160p
+igt@kms_bw@linear-tiling-2-displays-2160x1440p
+igt@kms_bw@linear-tiling-3-displays-1920x1080p
+igt@kms_bw@linear-tiling-3-displays-2560x1440p
+igt@kms_bw@linear-tiling-3-displays-3840x2160p
+igt@kms_bw@linear-tiling-3-displays-2160x1440p
+igt@kms_bw@linear-tiling-4-displays-1920x1080p
+igt@kms_bw@linear-tiling-4-displays-2560x1440p
+igt@kms_bw@linear-tiling-4-displays-3840x2160p
+igt@kms_bw@linear-tiling-4-displays-2160x1440p
+igt@kms_bw@linear-tiling-5-displays-1920x1080p
+igt@kms_bw@linear-tiling-5-displays-2560x1440p
+igt@kms_bw@linear-tiling-5-displays-3840x2160p
+igt@kms_bw@linear-tiling-5-displays-2160x1440p
+igt@kms_bw@linear-tiling-6-displays-1920x1080p
+igt@kms_bw@linear-tiling-6-displays-2560x1440p
+igt@kms_bw@linear-tiling-6-displays-3840x2160p
+igt@kms_bw@linear-tiling-6-displays-2160x1440p
+igt@kms_bw@linear-tiling-7-displays-1920x1080p
+igt@kms_bw@linear-tiling-7-displays-2560x1440p
+igt@kms_bw@linear-tiling-7-displays-3840x2160p
+igt@kms_bw@linear-tiling-7-displays-2160x1440p
+igt@kms_bw@linear-tiling-8-displays-1920x1080p
+igt@kms_bw@linear-tiling-8-displays-2560x1440p
+igt@kms_bw@linear-tiling-8-displays-3840x2160p
+igt@kms_bw@linear-tiling-8-displays-2160x1440p
+igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p
+igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p
+igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p
+igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p
+igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p
+igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p
+igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p
+igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p
+igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p
+igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p
+igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p
+igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p
+igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p
+igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p
+igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p
+igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p
+igt@kms_bw@connected-linear-tiling-5-displays-1920x1080p
+igt@kms_bw@connected-linear-tiling-5-displays-2560x1440p
+igt@kms_bw@connected-linear-tiling-5-displays-3840x2160p
+igt@kms_bw@connected-linear-tiling-5-displays-2160x1440p
+igt@kms_bw@connected-linear-tiling-6-displays-1920x1080p
+igt@kms_bw@connected-linear-tiling-6-displays-2560x1440p
+igt@kms_bw@connected-linear-tiling-6-displays-3840x2160p
+igt@kms_bw@connected-linear-tiling-6-displays-2160x1440p
+igt@kms_bw@connected-linear-tiling-7-displays-1920x1080p
+igt@kms_bw@connected-linear-tiling-7-displays-2560x1440p
+igt@kms_bw@connected-linear-tiling-7-displays-3840x2160p
+igt@kms_bw@connected-linear-tiling-7-displays-2160x1440p
+igt@kms_bw@connected-linear-tiling-8-displays-1920x1080p
+igt@kms_bw@connected-linear-tiling-8-displays-2560x1440p
+igt@kms_bw@connected-linear-tiling-8-displays-3840x2160p
+igt@kms_bw@connected-linear-tiling-8-displays-2160x1440p
+
+
igt@fbdev@eof
igt@fbdev@info
igt@fbdev@nullptr
--
2.25.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* ✓ CI.xeBAT: success for add subtest in kms_bw for connected outputs only
2024-06-13 13:07 [PATCH i-g-t 0/2] add subtest in kms_bw for connected outputs only Kunal Joshi
2024-06-13 13:07 ` [PATCH i-g-t 1/2] tests/kms_bw: add subtest for only connected outputs Kunal Joshi
2024-06-13 13:07 ` [PATCH i-g-t 2/2] HAX patch do not merge Kunal Joshi
@ 2024-06-13 14:23 ` Patchwork
2024-06-13 14:33 ` ✗ Fi.CI.BAT: failure " Patchwork
2024-06-13 19:11 ` ✗ CI.xeFULL: " Patchwork
4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2024-06-13 14:23 UTC (permalink / raw)
To: Joshi, Kunal1; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5404 bytes --]
== Series Details ==
Series: add subtest in kms_bw for connected outputs only
URL : https://patchwork.freedesktop.org/series/134822/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7886_BAT -> XEIGTPW_11256_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (5 -> 5)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_11256_BAT:
### IGT changes ###
#### Possible regressions ####
* {igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p} (NEW):
- bat-adlp-7: NOTRUN -> [SKIP][1] +11 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/bat-adlp-7/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
- bat-dg2-oem2: NOTRUN -> [SKIP][2] +11 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/bat-dg2-oem2/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* {igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p} (NEW):
- {bat-lnl-1}: NOTRUN -> [SKIP][3] +11 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/bat-lnl-1/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
New tests
---------
New tests have been introduced between XEIGT_7886_BAT and XEIGTPW_11256_BAT:
### New IGT tests (16) ###
* igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p:
- Statuses : 3 pass(s) 2 skip(s)
- Exec time: [0.0, 0.48] s
* igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p:
- Statuses : 3 pass(s) 2 skip(s)
- Exec time: [0.0, 0.49] s
* igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p:
- Statuses : 3 pass(s) 2 skip(s)
- Exec time: [0.0, 0.49] s
* igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p:
- Statuses : 3 pass(s) 2 skip(s)
- Exec time: [0.0, 0.55] s
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- Statuses : 5 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- Statuses : 5 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- Statuses : 5 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
- Statuses : 5 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
- Statuses : 5 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
- Statuses : 5 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
- Statuses : 5 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
- Statuses : 5 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- Statuses : 5 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
- Statuses : 5 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- Statuses : 5 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
- Statuses : 5 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in XEIGTPW_11256_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* {igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p} (NEW):
- bat-atsm-2: NOTRUN -> [SKIP][4] ([Intel XE#1024]) +31 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/bat-atsm-2/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- bat-adlp-7: NOTRUN -> [SKIP][5] ([Intel XE#367]) +8 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/bat-adlp-7/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-3-displays-3840x2160p:
- bat-dg2-oem2: NOTRUN -> [SKIP][6] ([Intel XE#367]) +15 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/bat-dg2-oem2/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-4-displays-1920x1080p:
- bat-pvc-2: NOTRUN -> [SKIP][7] ([Intel XE#1024]) +31 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/bat-pvc-2/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1024
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
Build changes
-------------
* IGT: IGT_7886 -> IGTPW_11256
IGTPW_11256: 11256
IGT_7886: 53b62502a04bd57cbcb3ae85ffc2cdf09b2b22a9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1457-9f3ced27c8deae54c79db1743e37d2935558e048: 9f3ced27c8deae54c79db1743e37d2935558e048
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/index.html
[-- Attachment #2: Type: text/html, Size: 6688 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Fi.CI.BAT: failure for add subtest in kms_bw for connected outputs only
2024-06-13 13:07 [PATCH i-g-t 0/2] add subtest in kms_bw for connected outputs only Kunal Joshi
` (2 preceding siblings ...)
2024-06-13 14:23 ` ✓ CI.xeBAT: success for add subtest in kms_bw for connected outputs only Patchwork
@ 2024-06-13 14:33 ` Patchwork
2024-06-13 19:11 ` ✗ CI.xeFULL: " Patchwork
4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2024-06-13 14:33 UTC (permalink / raw)
To: Joshi, Kunal1; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 32276 bytes --]
== Series Details ==
Series: add subtest in kms_bw for connected outputs only
URL : https://patchwork.freedesktop.org/series/134822/
State : failure
== Summary ==
CI Bug Log - changes from IGT_7886 -> IGTPW_11256
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_11256 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_11256, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/index.html
Participating hosts (39 -> 43)
------------------------------
Additional (6): fi-kbl-7567u bat-dg1-7 fi-kbl-8809g fi-elk-e7500 bat-jsl-3 bat-mtlp-8
Missing (2): bat-arlh-2 fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_11256:
### IGT changes ###
#### Possible regressions ####
* {igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p} (NEW):
- bat-dg2-14: NOTRUN -> [SKIP][1] +63 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-dg2-14/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html
* {igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p} (NEW):
- {bat-arls-5}: NOTRUN -> [SKIP][2] +43 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-arls-5/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
* {igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p} (NEW):
- bat-dg2-8: NOTRUN -> [SKIP][3] +55 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-dg2-8/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
- bat-adls-6: NOTRUN -> [SKIP][4] +51 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-adls-6/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
* {igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p} (NEW):
- bat-jsl-3: NOTRUN -> [SKIP][5] +55 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-jsl-3/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
* {igt@kms_bw@connected-linear-tiling-5-displays-1920x1080p} (NEW):
- fi-tgl-1115g4: NOTRUN -> [SKIP][6] +57 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/fi-tgl-1115g4/igt@kms_bw@connected-linear-tiling-5-displays-1920x1080p.html
* {igt@kms_bw@connected-linear-tiling-8-displays-2160x1440p} (NEW):
- bat-adln-1: NOTRUN -> [SKIP][7] +52 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-adln-1/igt@kms_bw@connected-linear-tiling-8-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- bat-jsl-1: NOTRUN -> [SKIP][8] +55 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-jsl-1/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-2-displays-3840x2160p:
- bat-adlp-6: NOTRUN -> [SKIP][9] +52 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-adlp-6/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-4-displays-3840x2160p:
- bat-arls-1: NOTRUN -> [SKIP][10] +59 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-arls-1/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html
* {igt@kms_bw@linear-tiling-5-displays-2160x1440p} (NEW):
- bat-mtlp-8: NOTRUN -> [SKIP][11] +63 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-mtlp-8/igt@kms_bw@linear-tiling-5-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-6-displays-1920x1080p (NEW):
- fi-rkl-11600: NOTRUN -> [SKIP][12] +57 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/fi-rkl-11600/igt@kms_bw@linear-tiling-6-displays-1920x1080p.html
* {igt@kms_bw@linear-tiling-6-displays-2160x1440p} (NEW):
- {bat-rpls-4}: NOTRUN -> [SKIP][13] +44 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-rpls-4/igt@kms_bw@linear-tiling-6-displays-2160x1440p.html
- {bat-twl-1}: NOTRUN -> [SKIP][14] +43 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-twl-1/igt@kms_bw@linear-tiling-6-displays-2160x1440p.html
- bat-rplp-1: NOTRUN -> [SKIP][15] +55 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-rplp-1/igt@kms_bw@linear-tiling-6-displays-2160x1440p.html
* {igt@kms_bw@linear-tiling-7-displays-1920x1080p} (NEW):
- bat-arls-2: NOTRUN -> [SKIP][16] +55 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-arls-2/igt@kms_bw@linear-tiling-7-displays-1920x1080p.html
* {igt@kms_bw@linear-tiling-7-displays-2560x1440p} (NEW):
- bat-dg1-7: NOTRUN -> [SKIP][17] +60 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-dg1-7/igt@kms_bw@linear-tiling-7-displays-2560x1440p.html
- bat-adlp-9: NOTRUN -> [SKIP][18] +55 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-adlp-9/igt@kms_bw@linear-tiling-7-displays-2560x1440p.html
* {igt@kms_bw@linear-tiling-7-displays-3840x2160p} (NEW):
- {bat-arlh-1}: NOTRUN -> [SKIP][19] +43 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-arlh-1/igt@kms_bw@linear-tiling-7-displays-3840x2160p.html
- {bat-mtlp-9}: NOTRUN -> [SKIP][20] +43 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-mtlp-9/igt@kms_bw@linear-tiling-7-displays-3840x2160p.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- {bat-rpls-4}: NOTRUN -> [SKIP][21] +15 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-rpls-4/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
- {bat-twl-1}: NOTRUN -> [SKIP][22] +8 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-twl-1/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
- {bat-arls-5}: NOTRUN -> [SKIP][23] +15 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-arls-5/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-4-displays-3840x2160p:
- {bat-arlh-1}: NOTRUN -> [SKIP][24] +11 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-arlh-1/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html
- {bat-mtlp-9}: NOTRUN -> [SKIP][25] +15 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-mtlp-9/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html
New tests
---------
New tests have been introduced between IGT_7886 and IGTPW_11256:
### New IGT tests (48) ###
* igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p:
- Statuses : 28 pass(s) 14 skip(s)
- Exec time: [0.0, 0.61] s
* igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p:
- Statuses : 27 pass(s) 15 skip(s)
- Exec time: [0.0, 1.67] s
* igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p:
- Statuses : 25 pass(s) 17 skip(s)
- Exec time: [0.0, 1.60] s
* igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p:
- Statuses : 18 pass(s) 24 skip(s)
- Exec time: [0.0, 1.69] s
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- Statuses : 42 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- Statuses : 42 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- Statuses : 42 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
- Statuses : 42 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
- Statuses : 42 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
- Statuses : 42 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
- Statuses : 42 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
- Statuses : 42 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- Statuses : 42 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
- Statuses : 42 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- Statuses : 42 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
- Statuses : 42 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-5-displays-1920x1080p:
- Statuses : 42 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-5-displays-2160x1440p:
- Statuses : 42 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-5-displays-2560x1440p:
- Statuses : 42 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-5-displays-3840x2160p:
- Statuses : 42 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-6-displays-1920x1080p:
- Statuses : 42 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-6-displays-2160x1440p:
- Statuses : 42 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-6-displays-2560x1440p:
- Statuses : 42 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-6-displays-3840x2160p:
- Statuses : 42 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-7-displays-1920x1080p:
- Statuses : 42 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-7-displays-2160x1440p:
- Statuses : 42 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-7-displays-2560x1440p:
- Statuses : 42 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-7-displays-3840x2160p:
- Statuses : 42 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-8-displays-1920x1080p:
- Statuses : 42 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-8-displays-2160x1440p:
- Statuses : 42 skip(s)
- Exec time: [0.0, 0.00] s
* igt@kms_bw@connected-linear-tiling-8-displays-2560x1440p:
- Statuses : 42 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-8-displays-3840x2160p:
- Statuses : 42 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@linear-tiling-5-displays-1920x1080p:
- Statuses : 42 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@linear-tiling-5-displays-2160x1440p:
- Statuses : 42 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@linear-tiling-5-displays-2560x1440p:
- Statuses : 42 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@linear-tiling-5-displays-3840x2160p:
- Statuses : 42 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@linear-tiling-6-displays-1920x1080p:
- Statuses : 42 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@linear-tiling-6-displays-2160x1440p:
- Statuses : 42 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@linear-tiling-6-displays-2560x1440p:
- Statuses : 42 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@linear-tiling-6-displays-3840x2160p:
- Statuses : 42 skip(s)
- Exec time: [0.0, 0.00] s
* igt@kms_bw@linear-tiling-7-displays-1920x1080p:
- Statuses : 42 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@linear-tiling-7-displays-2160x1440p:
- Statuses : 42 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@linear-tiling-7-displays-2560x1440p:
- Statuses : 42 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@linear-tiling-7-displays-3840x2160p:
- Statuses : 42 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@linear-tiling-8-displays-1920x1080p:
- Statuses : 42 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@linear-tiling-8-displays-2160x1440p:
- Statuses : 42 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@linear-tiling-8-displays-2560x1440p:
- Statuses : 42 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@linear-tiling-8-displays-3840x2160p:
- Statuses : 42 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_11256 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-jsl-3: NOTRUN -> [SKIP][26] ([i915#9318])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-jsl-3/igt@debugfs_test@basic-hwmon.html
- bat-mtlp-8: NOTRUN -> [SKIP][27] ([i915#9318])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-mtlp-8/igt@debugfs_test@basic-hwmon.html
* igt@gem_huc_copy@huc-copy:
- fi-kbl-7567u: NOTRUN -> [SKIP][28] ([i915#2190])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/fi-kbl-7567u/igt@gem_huc_copy@huc-copy.html
- fi-kbl-8809g: NOTRUN -> [SKIP][29] ([i915#2190])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/fi-kbl-8809g/igt@gem_huc_copy@huc-copy.html
- bat-jsl-3: NOTRUN -> [SKIP][30] ([i915#2190])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-jsl-3/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- bat-jsl-3: NOTRUN -> [SKIP][31] ([i915#4613]) +3 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-jsl-3/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-mtlp-8: NOTRUN -> [SKIP][32] ([i915#4613]) +3 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-mtlp-8/igt@gem_lmem_swapping@parallel-random-engines.html
- fi-kbl-7567u: NOTRUN -> [SKIP][33] ([i915#4613]) +3 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/fi-kbl-7567u/igt@gem_lmem_swapping@parallel-random-engines.html
- fi-kbl-8809g: NOTRUN -> [SKIP][34] ([i915#4613]) +3 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/fi-kbl-8809g/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_mmap@basic:
- bat-mtlp-8: NOTRUN -> [SKIP][35] ([i915#4083])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-mtlp-8/igt@gem_mmap@basic.html
- bat-dg1-7: NOTRUN -> [SKIP][36] ([i915#4083])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-dg1-7/igt@gem_mmap@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-mtlp-8: NOTRUN -> [SKIP][37] ([i915#4079]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-mtlp-8/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_blits@basic:
- bat-dg1-7: NOTRUN -> [SKIP][38] ([i915#4077]) +2 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-dg1-7/igt@gem_tiled_blits@basic.html
* igt@gem_tiled_fence_blits@basic:
- bat-mtlp-8: NOTRUN -> [SKIP][39] ([i915#4077]) +2 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-mtlp-8/igt@gem_tiled_fence_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-dg1-7: NOTRUN -> [SKIP][40] ([i915#4079]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-dg1-7/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-mtlp-8: NOTRUN -> [SKIP][41] ([i915#6621])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-mtlp-8/igt@i915_pm_rps@basic-api.html
- bat-dg1-7: NOTRUN -> [SKIP][42] ([i915#6621])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-dg1-7/igt@i915_pm_rps@basic-api.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][43] ([i915#5190])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][44] ([i915#4212]) +8 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-mtlp-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html
- bat-dg1-7: NOTRUN -> [SKIP][45] ([i915#4215])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-dg1-7/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- bat-dg1-7: NOTRUN -> [SKIP][46] ([i915#4212]) +7 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-dg1-7/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* {igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p} (NEW):
- fi-kbl-8809g: NOTRUN -> [SKIP][47] +94 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/fi-kbl-8809g/igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p.html
* {igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p} (NEW):
- fi-elk-e7500: NOTRUN -> [SKIP][48] +83 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/fi-elk-e7500/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html
- bat-kbl-2: NOTRUN -> [SKIP][49] +63 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-kbl-2/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html
* {igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p} (NEW):
- fi-kbl-guc: NOTRUN -> [SKIP][50] +63 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/fi-kbl-guc/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
* {igt@kms_bw@connected-linear-tiling-5-displays-2160x1440p} (NEW):
- bat-dg2-9: NOTRUN -> [SKIP][51] ([i915#9197]) +63 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-dg2-9/igt@kms_bw@connected-linear-tiling-5-displays-2160x1440p.html
- fi-kbl-x1275: NOTRUN -> [SKIP][52] +63 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/fi-kbl-x1275/igt@kms_bw@connected-linear-tiling-5-displays-2160x1440p.html
- bat-adlp-11: NOTRUN -> [SKIP][53] ([i915#10470]) +63 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-adlp-11/igt@kms_bw@connected-linear-tiling-5-displays-2160x1440p.html
* {igt@kms_bw@connected-linear-tiling-6-displays-2160x1440p} (NEW):
- fi-bsw-nick: NOTRUN -> [SKIP][54] +59 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/fi-bsw-nick/igt@kms_bw@connected-linear-tiling-6-displays-2160x1440p.html
* {igt@kms_bw@connected-linear-tiling-8-displays-1920x1080p} (NEW):
- fi-cfl-8700k: NOTRUN -> [SKIP][55] +57 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/fi-cfl-8700k/igt@kms_bw@connected-linear-tiling-8-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-2-displays-2160x1440p:
- fi-blb-e6850: NOTRUN -> [SKIP][56] +63 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/fi-blb-e6850/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- bat-adlm-1: NOTRUN -> [SKIP][57] ([i915#9900]) +63 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-adlm-1/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- fi-cfl-8109u: NOTRUN -> [SKIP][58] +51 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/fi-cfl-8109u/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-3-displays-3840x2160p:
- fi-pnv-d510: NOTRUN -> [SKIP][59] +63 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/fi-pnv-d510/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-4-displays-1920x1080p:
- fi-cfl-guc: NOTRUN -> [SKIP][60] +57 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/fi-cfl-guc/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html
- bat-mtlp-6: NOTRUN -> [SKIP][61] ([i915#9792]) +63 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-mtlp-6/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-4-displays-2560x1440p:
- fi-bsw-n3050: NOTRUN -> [SKIP][62] +59 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/fi-bsw-n3050/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-5-displays-3840x2160p (NEW):
- fi-ivb-3770: NOTRUN -> [SKIP][63] +55 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/fi-ivb-3770/igt@kms_bw@linear-tiling-5-displays-3840x2160p.html
* {igt@kms_bw@linear-tiling-6-displays-2160x1440p} (NEW):
- fi-kbl-7567u: NOTRUN -> [SKIP][64] +67 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/fi-kbl-7567u/igt@kms_bw@linear-tiling-6-displays-2160x1440p.html
- {bat-apl-1}: NOTRUN -> [SKIP][65] +47 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-apl-1/igt@kms_bw@linear-tiling-6-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-6-displays-2560x1440p (NEW):
- fi-ilk-650: NOTRUN -> [SKIP][66] +55 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/fi-ilk-650/igt@kms_bw@linear-tiling-6-displays-2560x1440p.html
* {igt@kms_bw@linear-tiling-7-displays-2560x1440p} (NEW):
- fi-glk-j4005: NOTRUN -> [SKIP][67] +47 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/fi-glk-j4005/igt@kms_bw@linear-tiling-7-displays-2560x1440p.html
* {igt@kms_bw@linear-tiling-7-displays-3840x2160p} (NEW):
- bat-atsm-1: NOTRUN -> [SKIP][68] ([i915#6078]) +63 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-atsm-1/igt@kms_bw@linear-tiling-7-displays-3840x2160p.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-jsl-3: NOTRUN -> [SKIP][69] ([i915#4103]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-jsl-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- bat-mtlp-8: NOTRUN -> [SKIP][70] ([i915#4213]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- bat-dg1-7: NOTRUN -> [SKIP][71] ([i915#4103] / [i915#4213]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-dg1-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-jsl-3: NOTRUN -> [SKIP][72] ([i915#3555] / [i915#9886])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-jsl-3/igt@kms_dsc@dsc-basic.html
- bat-mtlp-8: NOTRUN -> [SKIP][73] ([i915#3555] / [i915#3840] / [i915#9159])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-mtlp-8/igt@kms_dsc@dsc-basic.html
- bat-dg1-7: NOTRUN -> [SKIP][74] ([i915#3555] / [i915#3840])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-dg1-7/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-jsl-3: NOTRUN -> [SKIP][75]
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-jsl-3/igt@kms_force_connector_basic@force-load-detect.html
- bat-mtlp-8: NOTRUN -> [SKIP][76]
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-mtlp-8/igt@kms_force_connector_basic@force-load-detect.html
- bat-dg1-7: NOTRUN -> [SKIP][77]
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-dg1-7/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-mtlp-8: NOTRUN -> [SKIP][78] ([i915#5274])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_hdmi_inject@inject-audio:
- bat-dg1-7: NOTRUN -> [SKIP][79] ([i915#433])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-dg1-7/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pm_backlight@basic-brightness:
- bat-dg1-7: NOTRUN -> [SKIP][80] ([i915#5354])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-dg1-7/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-primary-mmap-gtt@edp-1:
- bat-mtlp-8: NOTRUN -> [SKIP][81] ([i915#4077] / [i915#9688])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-mtlp-8/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html
* igt@kms_psr@psr-primary-page-flip:
- bat-dg1-7: NOTRUN -> [SKIP][82] ([i915#1072] / [i915#9732]) +3 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-dg1-7/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-jsl-3: NOTRUN -> [SKIP][83] ([i915#3555])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-jsl-3/igt@kms_setmode@basic-clone-single-crtc.html
- bat-mtlp-8: NOTRUN -> [SKIP][84] ([i915#3555] / [i915#8809])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-mtlp-8/igt@kms_setmode@basic-clone-single-crtc.html
- bat-dg1-7: NOTRUN -> [SKIP][85] ([i915#3555])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-dg1-7/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-mmap:
- bat-dg1-7: NOTRUN -> [SKIP][86] ([i915#3708] / [i915#4077]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-dg1-7/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-fence-read:
- bat-mtlp-8: NOTRUN -> [SKIP][87] ([i915#3708]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-mtlp-8/igt@prime_vgem@basic-fence-read.html
- bat-dg1-7: NOTRUN -> [SKIP][88] ([i915#3708]) +3 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-dg1-7/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-gtt:
- bat-mtlp-8: NOTRUN -> [SKIP][89] ([i915#3708] / [i915#4077]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-mtlp-8/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-write:
- bat-mtlp-8: NOTRUN -> [SKIP][90] ([i915#10216] / [i915#3708])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-mtlp-8/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@i915_pm_rpm@module-reload:
- {bat-mtlp-9}: [CRASH][91] ([i915#10911]) -> [PASS][92]
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7886/bat-mtlp-9/igt@i915_pm_rpm@module-reload.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-mtlp-9/igt@i915_pm_rpm@module-reload.html
* igt@kms_busy@basic@flip:
- {bat-apl-1}: [DMESG-WARN][93] ([i915#180] / [i915#1982]) -> [PASS][94]
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7886/bat-apl-1/igt@kms_busy@basic@flip.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-apl-1/igt@kms_busy@basic@flip.html
* igt@kms_flip@basic-plain-flip@b-dp6:
- {bat-mtlp-9}: [DMESG-WARN][95] ([i915#11009]) -> [PASS][96]
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7886/bat-mtlp-9/igt@kms_flip@basic-plain-flip@b-dp6.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-mtlp-9/igt@kms_flip@basic-plain-flip@b-dp6.html
* igt@kms_flip@basic-plain-flip@c-dp7:
- {bat-mtlp-9}: [FAIL][97] ([i915#6121]) -> [PASS][98] +5 other tests pass
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7886/bat-mtlp-9/igt@kms_flip@basic-plain-flip@c-dp7.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/bat-mtlp-9/igt@kms_flip@basic-plain-flip@c-dp7.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216
[i915#10470]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10470
[i915#10580]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10580
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10911]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10911
[i915#10979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10979
[i915#11009]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11009
[i915#11060]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11060
[i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
[i915#433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/433
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#6078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6078
[i915#6121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6121
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#9159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9159
[i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9792
[i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886
[i915#9900]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9900
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7886 -> IGTPW_11256
CI-20190529: 20190529
CI_DRM_14933: 9f3ced27c8deae54c79db1743e37d2935558e048 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11256: 11256
IGT_7886: 53b62502a04bd57cbcb3ae85ffc2cdf09b2b22a9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11256/index.html
[-- Attachment #2: Type: text/html, Size: 37925 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t 1/2] tests/kms_bw: add subtest for only connected outputs
2024-06-13 13:07 ` [PATCH i-g-t 1/2] tests/kms_bw: add subtest for only connected outputs Kunal Joshi
@ 2024-06-13 14:48 ` Aurabindo Pillai
0 siblings, 0 replies; 9+ messages in thread
From: Aurabindo Pillai @ 2024-06-13 14:48 UTC (permalink / raw)
To: Kunal Joshi, igt-dev
On 6/13/24 9:07 AM, Kunal Joshi wrote:
> forcing DP connector doesn't work well and tests are skipping
> with unsupported mode, add new test which runs test on connected
> outputs only.
>
> Cc: Aurabindo Pillai <aurabindo.pillai@amd.com>
> Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
> ---
> tests/kms_bw.c | 41 +++++++++++++++++++++++++++++++++++------
> 1 file changed, 35 insertions(+), 6 deletions(-)
>
> diff --git a/tests/kms_bw.c b/tests/kms_bw.c
> index 05f7e79ad..bbf374612 100644
> --- a/tests/kms_bw.c
> +++ b/tests/kms_bw.c
> @@ -48,6 +48,19 @@
> * @2560x1440p: 2560x1440 resolution
> * @3840x2160p: 3840x2160 resolution
> * @2160x1440p: 2160x1440 resolution
> + *
> + * SUBTEST: connected-linear-tiling-%d-displays-%s
> + * Description: bw test with %arg[2]
> + *
> + * arg[1].values: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16
> + *
> + * arg[2]:
> + *
> + * @1920x1080p: 1920x1080 resolution
> + * @2560x1440p: 2560x1440 resolution
> + * @3840x2160p: 3840x2160 resolution
> + * @2160x1440p: 2160x1440 resolution
> + *
> */
>
> /* Common test data. */
> @@ -55,6 +68,7 @@ typedef struct data {
> igt_display_t display;
> igt_plane_t *primary[IGT_MAX_PIPES];
> igt_output_t *output[IGT_MAX_PIPES];
> + igt_output_t *connected_output[IGT_MAX_PIPES];
> igt_pipe_t *pipe[IGT_MAX_PIPES];
> igt_pipe_crc_t *pipe_crc[IGT_MAX_PIPES];
> drmModeModeInfo mode[IGT_MAX_PIPES];
> @@ -62,6 +76,7 @@ typedef struct data {
> int w[IGT_MAX_PIPES];
> int h[IGT_MAX_PIPES];
> int fd;
> + int connected_outputs;
> } data_t;
>
> static drmModeModeInfo test_mode[] = {
> @@ -108,6 +123,7 @@ static void test_init(data_t *data)
> igt_display_t *display = &data->display;
> int i, max_pipes = display->n_pipes;
> igt_output_t *output;
> + data->connected_outputs = 0;
>
> for_each_pipe(display, i) {
> data->pipe_id[i] = i;
> @@ -124,12 +140,12 @@ static void test_init(data_t *data)
> continue;
>
> output = &display->outputs[i];
> -
> data->output[i] = output;
>
> /* Only allow physically connected displays for the tests. */
> if (!igt_output_is_connected(output))
> continue;
> + data->connected_output[data->connected_outputs++] = output;
>
> igt_assert(kmstest_get_connector_default_mode(
> data->fd, output->config.connector, &data->mode[i]));
> @@ -173,7 +189,7 @@ static void force_output_mode(data_t *d, igt_output_t *output,
> igt_output_override_mode(output, mode);
> }
>
> -static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo *mode) {
> +static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo *mode, bool physical) {
> igt_display_t *display = &data->display;
> igt_output_t *output;
> struct igt_fb buffer[IGT_MAX_PIPES];
> @@ -189,11 +205,15 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo
> igt_skip_on_f(pipe >= num_pipes,
> "ASIC does not have %d pipes\n", pipe);
>
> + igt_skip_on_f(physical && pipe > data->connected_outputs ,
> + "Only %d connected need %d pipes\n",data->connected_outputs, pipe);
> +
> +
> test_init(data);
>
> /* create buffers */
> for (i = 0; i <= pipe; i++) {
> - output = data->output[i];
> + output = physical ? data->connected_output[i] : data->output[i];
> if (!output) {
> continue;
> }
> @@ -219,7 +239,7 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo
> igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
>
> for (i = 0; i <= pipe; i++) {
> - output = data->output[i];
> + output = physical ? data->connected_output[i] : data->output[i];
> if (!output) {
> continue;
> }
> @@ -230,7 +250,7 @@ static void run_test_linear_tiling(data_t *data, int pipe, const drmModeModeInfo
> }
>
> for (i = pipe; i >= 0; i--) {
> - output = data->output[i];
> + output = physical ? data->connected_output[i] : data->output[i];
> if (!output)
> continue;
>
> @@ -265,10 +285,19 @@ igt_main
> for (j = 0; j < ARRAY_SIZE(test_mode); j++) {
> igt_subtest_f("linear-tiling-%d-displays-%s", i+1,
> test_mode[j].name)
> - run_test_linear_tiling(&data, i, &test_mode[j]);
> + run_test_linear_tiling(&data, i, &test_mode[j], false);
> }
> }
>
> + for (i = 0; i < IGT_MAX_PIPES; i++) {
> + for (j = 0; j < ARRAY_SIZE(test_mode); j++) {
> + igt_subtest_f("connected-linear-tiling-%d-displays-%s", i+1,
> + test_mode[j].name)
> + run_test_linear_tiling(&data, i, &test_mode[j], true);
> + }
> + }
> +
> +
> igt_fixture
> {
> igt_display_fini(&data.display);
Thanks! The patch is:
Reviewed-by: Aurabindo Pillai <aurabindo.pillai@amd.com>
--
Thanks & Regards,
Aurabindo Pillai
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ CI.xeFULL: failure for add subtest in kms_bw for connected outputs only
2024-06-13 13:07 [PATCH i-g-t 0/2] add subtest in kms_bw for connected outputs only Kunal Joshi
` (3 preceding siblings ...)
2024-06-13 14:33 ` ✗ Fi.CI.BAT: failure " Patchwork
@ 2024-06-13 19:11 ` Patchwork
4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2024-06-13 19:11 UTC (permalink / raw)
To: Joshi, Kunal1; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 26685 bytes --]
== Series Details ==
Series: add subtest in kms_bw for connected outputs only
URL : https://patchwork.freedesktop.org/series/134822/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_7886_full -> XEIGTPW_11256_full
====================================================
Summary
-------
**WARNING**
Minor unknown changes coming with XEIGTPW_11256_full need to be verified
manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11256_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (3 -> 2)
------------------------------
Missing (1): shard-adlp
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_11256_full:
### IGT changes ###
#### Possible regressions ####
* {igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p} (NEW):
- {shard-lnl}: NOTRUN -> [SKIP][1] +4 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-lnl-7/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
#### Warnings ####
* igt@xe_exec_reset@parallel-gt-reset:
- shard-dg2-set2: [INCOMPLETE][2] ([Intel XE#1195]) -> [TIMEOUT][3]
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7886/shard-dg2-433/igt@xe_exec_reset@parallel-gt-reset.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-dg2-466/igt@xe_exec_reset@parallel-gt-reset.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move:
- {shard-lnl}: [SKIP][4] ([Intel XE#656]) -> [INCOMPLETE][5]
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7886/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-suspend:
- {shard-lnl}: [PASS][6] -> [DMESG-WARN][7]
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7886/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
* igt@kms_vrr@flip-suspend@pipe-a-edp-1:
- {shard-lnl}: NOTRUN -> [DMESG-WARN][8] +1 other test dmesg-warn
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-lnl-6/igt@kms_vrr@flip-suspend@pipe-a-edp-1.html
New tests
---------
New tests have been introduced between XEIGT_7886_full and XEIGTPW_11256_full:
### New IGT tests (16) ###
* igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.01, 0.49] s
* igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p:
- Statuses : 1 skip(s)
- Exec time: [0.02] s
* igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.02, 0.49] s
* igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.03, 0.55] s
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- Statuses : 2 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- Statuses : 2 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
- Statuses : 2 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
- Statuses : 2 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
- Statuses : 2 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in XEIGTPW_11256_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][9] ([Intel XE#1201] / [Intel XE#316])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-dg2-435/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#1201] / [Intel XE#619])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-dg2-433/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#1124] / [Intel XE#1201]) +2 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_joiner@basic:
- shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#1201] / [Intel XE#346])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-dg2-463/igt@kms_big_joiner@basic.html
* {igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p} (NEW):
- shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#1201]) +15 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-dg2-433/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +7 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-dg2-466/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#1201] / [Intel XE#787]) +27 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-6.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
- shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#1201] / [Intel XE#373]) +2 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-dg2-464/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
- shard-dg2-set2: [PASS][17] -> [DMESG-WARN][18] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#910])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7886/shard-dg2-434/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-dg2-466/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][19] ([Intel XE#1214] / [Intel XE#282]) +3 other tests dmesg-warn
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-dg2-466/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@forked-move@pipe-b:
- shard-dg2-set2: [PASS][20] -> [DMESG-WARN][21] ([Intel XE#1214] / [Intel XE#282]) +6 other tests dmesg-warn
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7886/shard-dg2-463/igt@kms_cursor_legacy@forked-move@pipe-b.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-dg2-463/igt@kms_cursor_legacy@forked-move@pipe-b.html
* igt@kms_feature_discovery@psr1:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#1135] / [Intel XE#1201])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-dg2-434/igt@kms_feature_discovery@psr1.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#1201] / [Intel XE#651]) +7 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#1201] / [Intel XE#653]) +5 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc.html
* igt@kms_hdmi_inject@inject-audio:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#1201] / [Intel XE#417])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-dg2-435/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#1201] / [Intel XE#305] / [Intel XE#455]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#1201] / [Intel XE#305]) +2 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-hdmi-a-6.html
* igt@kms_psr@pr-cursor-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#1201] / [Intel XE#929]) +5 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-dg2-464/igt@kms_psr@pr-cursor-plane-onoff.html
* igt@xe_compute_preempt@compute-preempt:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#1201] / [Intel XE#1280] / [Intel XE#455]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-dg2-466/igt@xe_compute_preempt@compute-preempt.html
* igt@xe_evict@evict-beng-mixed-many-threads-large:
- shard-dg2-set2: NOTRUN -> [TIMEOUT][30] ([Intel XE#1041] / [Intel XE#1473] / [Intel XE#392])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-dg2-463/igt@xe_evict@evict-beng-mixed-many-threads-large.html
* igt@xe_evict@evict-beng-mixed-threads-large:
- shard-dg2-set2: [PASS][31] -> [TIMEOUT][32] ([Intel XE#1473] / [Intel XE#392])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7886/shard-dg2-464/igt@xe_evict@evict-beng-mixed-threads-large.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-dg2-434/igt@xe_evict@evict-beng-mixed-threads-large.html
* igt@xe_exec_fault_mode@many-execqueues-basic-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#1201] / [Intel XE#288]) +4 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-dg2-466/igt@xe_exec_fault_mode@many-execqueues-basic-prefetch.html
* igt@xe_gt_freq@freq_low_max:
- shard-dg2-set2: [PASS][34] -> [FAIL][35] ([Intel XE#1045] / [Intel XE#1204])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7886/shard-dg2-466/igt@xe_gt_freq@freq_low_max.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-dg2-433/igt@xe_gt_freq@freq_low_max.html
* igt@xe_live_ktest@xe_bo:
- shard-dg2-set2: [PASS][36] -> [SKIP][37] ([Intel XE#1192] / [Intel XE#1201])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7886/shard-dg2-433/igt@xe_live_ktest@xe_bo.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-dg2-433/igt@xe_live_ktest@xe_bo.html
* igt@xe_pm@s3-basic-exec:
- shard-dg2-set2: [PASS][38] -> [DMESG-WARN][39] ([Intel XE#1214] / [Intel XE#1551] / [Intel XE#569]) +2 other tests dmesg-warn
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7886/shard-dg2-466/igt@xe_pm@s3-basic-exec.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-dg2-464/igt@xe_pm@s3-basic-exec.html
* igt@xe_pm@s4-vm-bind-prefetch:
- shard-dg2-set2: [PASS][40] -> [DMESG-WARN][41] ([Intel XE#1214]) +3 other tests dmesg-warn
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7886/shard-dg2-464/igt@xe_pm@s4-vm-bind-prefetch.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-dg2-464/igt@xe_pm@s4-vm-bind-prefetch.html
* igt@xe_query@multigpu-query-hwconfig:
- shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#1201] / [Intel XE#944])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-dg2-463/igt@xe_query@multigpu-query-hwconfig.html
#### Possible fixes ####
* igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-4:
- shard-dg2-set2: [FAIL][43] ([Intel XE#827]) -> [PASS][44] +1 other test pass
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7886/shard-dg2-464/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-4.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-dg2-463/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-4.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
- shard-dg2-set2: [DMESG-WARN][45] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#910]) -> [PASS][46] +1 other test pass
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7886/shard-dg2-463/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-dg2-433/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions:
- shard-dg2-set2: [DMESG-WARN][47] ([Intel XE#1214] / [Intel XE#282]) -> [PASS][48] +6 other tests pass
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7886/shard-dg2-435/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-dg2-464/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
* igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a6-dp4:
- shard-dg2-set2: [DMESG-WARN][49] ([Intel XE#1214]) -> [PASS][50] +4 other tests pass
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7886/shard-dg2-433/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a6-dp4.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-dg2-463/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a6-dp4.html
* igt@kms_plane_cursor@primary:
- {shard-lnl}: [INCOMPLETE][51] -> [PASS][52] +1 other test pass
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7886/shard-lnl-3/igt@kms_plane_cursor@primary.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-lnl-8/igt@kms_plane_cursor@primary.html
* igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-6-size-64:
- shard-dg2-set2: [FAIL][53] ([Intel XE#616]) -> [PASS][54] +1 other test pass
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7886/shard-dg2-466/igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-6-size-64.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-dg2-434/igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-6-size-64.html
* igt@xe_evict@evict-beng-large-multi-vm-cm:
- shard-dg2-set2: [FAIL][55] ([Intel XE#1600]) -> [PASS][56]
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7886/shard-dg2-463/igt@xe_evict@evict-beng-large-multi-vm-cm.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-dg2-434/igt@xe_evict@evict-beng-large-multi-vm-cm.html
* igt@xe_evict@evict-threads-large:
- shard-dg2-set2: [TIMEOUT][57] ([Intel XE#1473] / [Intel XE#392]) -> [PASS][58] +1 other test pass
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7886/shard-dg2-433/igt@xe_evict@evict-threads-large.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-dg2-435/igt@xe_evict@evict-threads-large.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race:
- {shard-lnl}: [ABORT][59] ([Intel XE#2097]) -> [PASS][60]
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7886/shard-lnl-8/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-lnl-2/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race.html
* igt@xe_pm@s2idle-d3hot-basic-exec:
- shard-dg2-set2: [INCOMPLETE][61] ([Intel XE#1195] / [Intel XE#1358]) -> [PASS][62]
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7886/shard-dg2-464/igt@xe_pm@s2idle-d3hot-basic-exec.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-dg2-466/igt@xe_pm@s2idle-d3hot-basic-exec.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-dg2-set2: [INCOMPLETE][63] ([Intel XE#1195]) -> [PASS][64]
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7886/shard-dg2-463/igt@xe_pm@s4-vm-bind-unbind-all.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-dg2-435/igt@xe_pm@s4-vm-bind-unbind-all.html
#### Warnings ####
* igt@kms_cursor_legacy@torture-bo@pipe-a:
- shard-dg2-set2: [DMESG-WARN][65] ([Intel XE#1214] / [Intel XE#282]) -> [DMESG-WARN][66] ([Intel XE#1214] / [Intel XE#877]) +1 other test dmesg-warn
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7886/shard-dg2-463/igt@kms_cursor_legacy@torture-bo@pipe-a.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-dg2-434/igt@kms_cursor_legacy@torture-bo@pipe-a.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b:
- shard-dg2-set2: [DMESG-FAIL][67] ([Intel XE#1551]) -> [FAIL][68] ([Intel XE#616]) +1 other test fail
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7886/shard-dg2-464/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-dg2-463/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-dg2-set2: [TIMEOUT][69] ([Intel XE#1473] / [Intel XE#402]) -> [TIMEOUT][70] ([Intel XE#1473])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7886/shard-dg2-466/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-dg2-466/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict@evict-beng-threads-large:
- shard-dg2-set2: [TIMEOUT][71] ([Intel XE#1473]) -> [INCOMPLETE][72] ([Intel XE#1195] / [Intel XE#1473])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7886/shard-dg2-464/igt@xe_evict@evict-beng-threads-large.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-dg2-464/igt@xe_evict@evict-beng-threads-large.html
* igt@xe_evict@evict-mixed-many-threads-large:
- shard-dg2-set2: [TIMEOUT][73] ([Intel XE#1041] / [Intel XE#1473] / [Intel XE#392]) -> [INCOMPLETE][74] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7886/shard-dg2-464/igt@xe_evict@evict-mixed-many-threads-large.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/shard-dg2-466/igt@xe_evict@evict-mixed-many-threads-large.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1041]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1041
[Intel XE#1045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1045
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131
[Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201
[Intel XE#1204]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1204
[Intel XE#1214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1214
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1413
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450
[Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551
[Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600
[Intel XE#1622]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1622
[Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
[Intel XE#1725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1725
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042
[Intel XE#2097]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2097
[Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/294
[Intel XE#305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/305
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392
[Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402
[Intel XE#417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/417
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498
[Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#910]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/910
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_7886 -> IGTPW_11256
IGTPW_11256: 11256
IGT_7886: 53b62502a04bd57cbcb3ae85ffc2cdf09b2b22a9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1457-9f3ced27c8deae54c79db1743e37d2935558e048: 9f3ced27c8deae54c79db1743e37d2935558e048
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11256/index.html
[-- Attachment #2: Type: text/html, Size: 29296 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH i-g-t 0/2] add subtest in kms_bw for connected outputs only
@ 2024-06-17 16:10 Kunal Joshi
0 siblings, 0 replies; 9+ messages in thread
From: Kunal Joshi @ 2024-06-17 16:10 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
forcing DP connector doesn't work well on intel HW and tests are skipping
with unsupported mode, add new test which runs test on connected
outputs only.
Kunal Joshi (2):
tests/kms_bw: add subtest for only connected outputs
HAX patch do not merge
tests/intel-ci/fast-feedback.testlist | 64 +++++++++++++++++++++++
tests/intel-ci/xe-fast-feedback.testlist | 66 ++++++++++++++++++++++++
tests/kms_bw.c | 43 ++++++++++++---
3 files changed, 167 insertions(+), 6 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH i-g-t 0/2] add subtest in kms_bw for connected outputs only
@ 2024-06-19 8:04 Kunal Joshi
0 siblings, 0 replies; 9+ messages in thread
From: Kunal Joshi @ 2024-06-19 8:04 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
forcing DP connector doesn't work well on intel HW and tests are skipping
with unsupported mode, add new test which runs test on connected
outputs only.
Kunal Joshi (2):
tests/kms_bw: add subtest for only connected outputs
HAX patch do not merge
tests/intel-ci/fast-feedback.testlist | 64 +++++++++++++++++++++++
tests/intel-ci/xe-fast-feedback.testlist | 66 ++++++++++++++++++++++++
tests/kms_bw.c | 48 +++++++++++++----
3 files changed, 169 insertions(+), 9 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2024-06-19 7:52 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-13 13:07 [PATCH i-g-t 0/2] add subtest in kms_bw for connected outputs only Kunal Joshi
2024-06-13 13:07 ` [PATCH i-g-t 1/2] tests/kms_bw: add subtest for only connected outputs Kunal Joshi
2024-06-13 14:48 ` Aurabindo Pillai
2024-06-13 13:07 ` [PATCH i-g-t 2/2] HAX patch do not merge Kunal Joshi
2024-06-13 14:23 ` ✓ CI.xeBAT: success for add subtest in kms_bw for connected outputs only Patchwork
2024-06-13 14:33 ` ✗ Fi.CI.BAT: failure " Patchwork
2024-06-13 19:11 ` ✗ CI.xeFULL: " Patchwork
-- strict thread matches above, loose matches on Subject: below --
2024-06-17 16:10 [PATCH i-g-t 0/2] " Kunal Joshi
2024-06-19 8:04 Kunal Joshi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox