* [PATCH i-g-t v3,0/3] Add dsc+bigjoiner subtest
@ 2024-09-04 7:24 Swati Sharma
2024-09-04 7:24 ` [PATCH i-g-t v3, 1/3] tests/intel/kms_dsc: move restore funcs() to reset func() Swati Sharma
` (5 more replies)
0 siblings, 6 replies; 7+ messages in thread
From: Swati Sharma @ 2024-09-04 7:24 UTC (permalink / raw)
To: igt-dev; +Cc: Swati Sharma
This series uses big joiner debugfs.
New subtest is added to validate dsc + big joiner use case.
Swati Sharma (3):
tests/intel/kms_dsc: move restore funcs() to reset func()
dsc: add dsc+big joiner helper func
tests/intel/kms_dsc: add new subtest
lib/igt_dsc.c | 17 +++++++++++++++++
lib/igt_dsc.h | 1 +
tests/intel/kms_dsc.c | 28 ++++++++++++++++++++++++++--
tests/intel/kms_dsc_helper.c | 33 +++++++++++++++++++++++++++++++++
tests/intel/kms_dsc_helper.h | 3 +++
5 files changed, 80 insertions(+), 2 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH i-g-t v3, 1/3] tests/intel/kms_dsc: move restore funcs() to reset func()
2024-09-04 7:24 [PATCH i-g-t v3,0/3] Add dsc+bigjoiner subtest Swati Sharma
@ 2024-09-04 7:24 ` Swati Sharma
2024-09-04 7:24 ` [PATCH i-g-t v3,2/3] dsc: add dsc+big joiner helper func Swati Sharma
` (4 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Swati Sharma @ 2024-09-04 7:24 UTC (permalink / raw)
To: igt-dev; +Cc: Swati Sharma
It makes sense to move restore funcs() to reset func().
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
---
tests/intel/kms_dsc.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/tests/intel/kms_dsc.c b/tests/intel/kms_dsc.c
index 9b48caf76..ef4646957 100644
--- a/tests/intel/kms_dsc.c
+++ b/tests/intel/kms_dsc.c
@@ -126,6 +126,9 @@ static void test_reset(data_t *data)
igt_debug("Reset DSC output format\n");
data->output_format = DSC_FORMAT_RGB;
force_dsc_output_format(data->drm_fd, data->output, data->output_format);
+
+ restore_force_dsc_en();
+ restore_force_dsc_fractional_bpp_en();
}
static void test_cleanup(data_t *data)
@@ -236,8 +239,6 @@ static void update_display(data_t *data, uint32_t test_type)
mode->vrefresh,
enabled ? "ON" : "OFF");
- restore_force_dsc_en();
- restore_force_dsc_fractional_bpp_en();
if (test_type & TEST_DSC_BPC) {
current_bpc = igt_get_pipe_current_bpc(data->drm_fd, data->pipe);
--
2.25.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH i-g-t v3,2/3] dsc: add dsc+big joiner helper func
2024-09-04 7:24 [PATCH i-g-t v3,0/3] Add dsc+bigjoiner subtest Swati Sharma
2024-09-04 7:24 ` [PATCH i-g-t v3, 1/3] tests/intel/kms_dsc: move restore funcs() to reset func() Swati Sharma
@ 2024-09-04 7:24 ` Swati Sharma
2024-09-04 7:24 ` [PATCH i-g-t v3,3/3] tests/intel/kms_dsc: add new subtest Swati Sharma
` (3 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Swati Sharma @ 2024-09-04 7:24 UTC (permalink / raw)
To: igt-dev; +Cc: Swati Sharma
Add dsc with big joiner helper functions.
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
---
lib/igt_dsc.c | 17 +++++++++++++++++
lib/igt_dsc.h | 1 +
tests/intel/kms_dsc_helper.c | 33 +++++++++++++++++++++++++++++++++
tests/intel/kms_dsc_helper.h | 3 +++
4 files changed, 54 insertions(+)
diff --git a/lib/igt_dsc.c b/lib/igt_dsc.c
index 229cd3298..6674ba77e 100644
--- a/lib/igt_dsc.c
+++ b/lib/igt_dsc.c
@@ -308,3 +308,20 @@ int igt_get_dsc_fractional_bpp_debugfs_fd(int drmfd, char *connector_name)
return openat(igt_debugfs_dir(drmfd), file_name, O_WRONLY);
}
+
+/**
+ * igt_get_bigjoiner_debugfs_fd:
+ * @drmfd: A drm file descriptor
+ * @connector_name: Name of the libdrm connector we're going to use
+ *
+ * Returns: fd of the Big Joiner debugfs for the given connector,
+ * else returns -1.
+*/
+int igt_get_bigjoiner_debugfs_fd(int drmfd, char *connector_name)
+{
+ char file_name[128] = {0};
+
+ sprintf(file_name, "%s/i915_bigjoiner_force_enable", connector_name);
+
+ return openat(igt_debugfs_dir(drmfd), file_name, O_WRONLY);
+}
diff --git a/lib/igt_dsc.h b/lib/igt_dsc.h
index 7ab0917ec..52651ab95 100644
--- a/lib/igt_dsc.h
+++ b/lib/igt_dsc.h
@@ -27,5 +27,6 @@ int igt_get_dsc_fractional_bpp_supported(int drmfd, char *connector_name);
bool igt_is_force_dsc_fractional_bpp_enabled(int drmfd, char *connector_name);
int igt_force_dsc_fractional_bpp_enable(int drmfd, char *connector_name);
int igt_get_dsc_fractional_bpp_debugfs_fd(int drmfd, char *connector_name);
+int igt_get_bigjoiner_debugfs_fd(int drmfd, char *connector_name);
#endif
diff --git a/tests/intel/kms_dsc_helper.c b/tests/intel/kms_dsc_helper.c
index 0de09b8e9..22095b215 100644
--- a/tests/intel/kms_dsc_helper.c
+++ b/tests/intel/kms_dsc_helper.c
@@ -7,8 +7,10 @@
static bool force_dsc_en_orig;
static bool force_dsc_fractional_bpp_en_orig;
+static bool force_dsc_bigjoiner_en_orig;
static int force_dsc_restore_fd = -1;
static int force_dsc_fractional_bpp_restore_fd = -1;
+static int force_dsc_bigjoiner_restore_fd = -1;
void force_dsc_enable(int drmfd, igt_output_t *output)
{
@@ -54,6 +56,7 @@ void kms_dsc_exit_handler(int sig)
{
restore_force_dsc_en();
restore_force_dsc_fractional_bpp_en();
+ restore_force_dsc_bigjoiner_en();
}
bool is_dsc_supported_by_source(int drmfd)
@@ -201,3 +204,33 @@ bool is_dsc_fractional_bpp_supported(int disp_ver, int drmfd, igt_output_t *outp
return true;
}
+
+void force_dsc_bigjoiner_enable(int drmfd, igt_output_t *output)
+{
+ bool status;
+
+ igt_debug("Forcing DSC Big Joiner on %s\n", output->name);
+ status = kmstest_force_connector_bigjoiner(drmfd, output->config.connector);
+ igt_assert_f(status, "forcing dsc big joiner debugfs_write failed\n");
+}
+
+void save_force_dsc_bigjoiner_en(int drmfd, igt_output_t *output)
+{
+ force_dsc_bigjoiner_en_orig =
+ igt_check_force_joiner_status(drmfd, output->name);
+ force_dsc_bigjoiner_restore_fd =
+ igt_get_bigjoiner_debugfs_fd(drmfd, output->name);
+ igt_assert(force_dsc_bigjoiner_restore_fd >= 0);
+}
+
+void restore_force_dsc_bigjoiner_en(void)
+{
+ if (force_dsc_bigjoiner_restore_fd < 0)
+ return;
+
+ igt_debug("Restoring DSC Big Joiner enable\n");
+ igt_assert(write(force_dsc_bigjoiner_restore_fd, force_dsc_bigjoiner_en_orig ? "1" : "0", 1) == 1);
+
+ close(force_dsc_bigjoiner_restore_fd);
+ force_dsc_bigjoiner_restore_fd = -1;
+}
diff --git a/tests/intel/kms_dsc_helper.h b/tests/intel/kms_dsc_helper.h
index 4dbd88fe7..b2f8ea1ca 100644
--- a/tests/intel/kms_dsc_helper.h
+++ b/tests/intel/kms_dsc_helper.h
@@ -38,5 +38,8 @@ void force_dsc_fractional_bpp_enable(int drmfd, igt_output_t *output);
void save_force_dsc_fractional_bpp_en(int drmfd, igt_output_t *output);
void restore_force_dsc_fractional_bpp_en(void);
bool is_dsc_fractional_bpp_supported(int disp_ver, int drmfd, igt_output_t *output);
+void force_dsc_bigjoiner_enable(int drmfd, igt_output_t *output);
+void save_force_dsc_bigjoiner_en(int drmfd, igt_output_t *output);
+void restore_force_dsc_bigjoiner_en(void);
#endif
--
2.25.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH i-g-t v3,3/3] tests/intel/kms_dsc: add new subtest
2024-09-04 7:24 [PATCH i-g-t v3,0/3] Add dsc+bigjoiner subtest Swati Sharma
2024-09-04 7:24 ` [PATCH i-g-t v3, 1/3] tests/intel/kms_dsc: move restore funcs() to reset func() Swati Sharma
2024-09-04 7:24 ` [PATCH i-g-t v3,2/3] dsc: add dsc+big joiner helper func Swati Sharma
@ 2024-09-04 7:24 ` Swati Sharma
2024-09-04 17:02 ` ✓ Fi.CI.BAT: success for Add dsc+bigjoiner subtest (rev3) Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Swati Sharma @ 2024-09-04 7:24 UTC (permalink / raw)
To: igt-dev; +Cc: Swati Sharma
Add new subtest to validate dsc and big joiner usecase.
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
---
tests/intel/kms_dsc.c | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/tests/intel/kms_dsc.c b/tests/intel/kms_dsc.c
index ef4646957..c9e9bf853 100644
--- a/tests/intel/kms_dsc.c
+++ b/tests/intel/kms_dsc.c
@@ -50,6 +50,7 @@
* arg[1]:
*
* @basic: DSC with default parameters
+ * @with-bigjoiner: DSC with default parameters and big joiner
* @with-bpc: DSC with certain input BPC for the connector
* @with-bpc-formats: DSC with certain input BPC for the connector and diff formats
* @with-formats: DSC with default parameters and creating fb with diff formats
@@ -70,6 +71,7 @@ IGT_TEST_DESCRIPTION("Test to validate display stream compression");
#define TEST_DSC_FORMAT (1<<1)
#define TEST_DSC_OUTPUT_FORMAT (1<<2)
#define TEST_DSC_FRACTIONAL_BPP (1<<3)
+#define TEST_DSC_BIGJOINER (1<<4)
typedef struct {
int drm_fd;
@@ -129,6 +131,7 @@ static void test_reset(data_t *data)
restore_force_dsc_en();
restore_force_dsc_fractional_bpp_en();
+ restore_force_dsc_bigjoiner_en();
}
static void test_cleanup(data_t *data)
@@ -181,6 +184,12 @@ static void update_display(data_t *data, uint32_t test_type)
force_dsc_fractional_bpp_enable(data->drm_fd, data->output);
}
+ if (test_type & TEST_DSC_BIGJOINER) {
+ igt_debug("DSC big joiner is supported on %s\n", data->output->name);
+ save_force_dsc_bigjoiner_en(data->drm_fd, data->output);
+ force_dsc_bigjoiner_enable(data->drm_fd, data->output);
+ }
+
igt_output_set_pipe(output, data->pipe);
primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
@@ -266,12 +275,16 @@ static void test_dsc(data_t *data, uint32_t test_type, int bpc,
igt_display_t *display = &data->display;
igt_output_t *output;
enum pipe pipe;
+ int max_pipes = 0;
char name[3][LEN] = {
{0},
{0},
{0},
};
+ for_each_pipe(display, pipe)
+ max_pipes++;
+
igt_require(check_gen11_bpc_constraint(data->drm_fd, data->input_bpc));
for_each_pipe_with_valid_output(display, pipe, output) {
@@ -286,6 +299,9 @@ static void test_dsc(data_t *data, uint32_t test_type, int bpc,
igt_get_output_max_bpc(data->drm_fd, output->name) < MIN_DSC_BPC)
continue;
+ if ((test_type & TEST_DSC_BIGJOINER) && data->pipe == max_pipes - 1)
+ continue;
+
if ((test_type & TEST_DSC_OUTPUT_FORMAT) &&
(!is_dsc_output_format_supported(data->drm_fd, data->disp_ver,
data->output, data->output_format)))
@@ -352,6 +368,13 @@ igt_main_args("l", NULL, help_str, opt_handler, &data)
test_dsc(&data, TEST_DSC_BASIC, DEFAULT_BPC,
DRM_FORMAT_XRGB8888, DSC_FORMAT_RGB);
+ igt_describe("Tests basic display stream compression functionality with big joiner "
+ "if supported by a connector by forcing DSC and big joiner on all connectors "
+ "that support it with default parameters");
+ igt_subtest_with_dynamic("dsc-with-bigjoiner")
+ test_dsc(&data, TEST_DSC_BASIC | TEST_DSC_BIGJOINER, DEFAULT_BPC,
+ DRM_FORMAT_XRGB8888, DSC_FORMAT_RGB);
+
igt_describe("Tests basic display stream compression functionality if supported "
"by a connector by forcing DSC on all connectors that support it "
"with default parameters and creating fb with diff formats");
--
2.25.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* ✓ Fi.CI.BAT: success for Add dsc+bigjoiner subtest (rev3)
2024-09-04 7:24 [PATCH i-g-t v3,0/3] Add dsc+bigjoiner subtest Swati Sharma
` (2 preceding siblings ...)
2024-09-04 7:24 ` [PATCH i-g-t v3,3/3] tests/intel/kms_dsc: add new subtest Swati Sharma
@ 2024-09-04 17:02 ` Patchwork
2024-09-04 17:05 ` ✓ CI.xeBAT: " Patchwork
2024-09-05 14:33 ` ✗ Fi.CI.IGT: failure " Patchwork
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-09-04 17:02 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 19456 bytes --]
== Series Details ==
Series: Add dsc+bigjoiner subtest (rev3)
URL : https://patchwork.freedesktop.org/series/128266/
State : success
== Summary ==
CI Bug Log - changes from IGT_8005 -> IGTPW_11691
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/index.html
Participating hosts (34 -> 39)
------------------------------
Additional (6): bat-dg1-7 bat-arlh-3 fi-pnv-d510 bat-dg2-11 bat-jsl-1 bat-mtlp-8
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_11691 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-jsl-1: NOTRUN -> [SKIP][1] ([i915#9318])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-jsl-1/igt@debugfs_test@basic-hwmon.html
- bat-mtlp-8: NOTRUN -> [SKIP][2] ([i915#9318])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-mtlp-8/igt@debugfs_test@basic-hwmon.html
* igt@gem_huc_copy@huc-copy:
- bat-jsl-1: NOTRUN -> [SKIP][3] ([i915#2190])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-jsl-1/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-mtlp-8: NOTRUN -> [SKIP][4] ([i915#4613]) +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-mtlp-8/igt@gem_lmem_swapping@parallel-random-engines.html
- bat-jsl-1: NOTRUN -> [SKIP][5] ([i915#4613]) +3 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-jsl-1/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_mmap@basic:
- bat-dg2-11: NOTRUN -> [SKIP][6] ([i915#4083])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-dg2-11/igt@gem_mmap@basic.html
- bat-mtlp-8: NOTRUN -> [SKIP][7] ([i915#4083])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-mtlp-8/igt@gem_mmap@basic.html
- bat-dg1-7: NOTRUN -> [SKIP][8] ([i915#4083])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-dg1-7/igt@gem_mmap@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-dg2-11: NOTRUN -> [SKIP][9] ([i915#4079]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-dg2-11/igt@gem_render_tiled_blits@basic.html
- bat-mtlp-8: NOTRUN -> [SKIP][10] ([i915#4079]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-mtlp-8/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_blits@basic:
- bat-dg1-7: NOTRUN -> [SKIP][11] ([i915#4077]) +2 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-dg1-7/igt@gem_tiled_blits@basic.html
* igt@gem_tiled_fence_blits@basic:
- bat-dg2-11: NOTRUN -> [SKIP][12] ([i915#4077]) +2 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-dg2-11/igt@gem_tiled_fence_blits@basic.html
- bat-mtlp-8: NOTRUN -> [SKIP][13] ([i915#4077]) +2 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-mtlp-8/igt@gem_tiled_fence_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-dg1-7: NOTRUN -> [SKIP][14] ([i915#4079]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-dg1-7/igt@gem_tiled_pread_basic.html
* igt@i915_module_load@load:
- fi-kbl-7567u: [PASS][15] -> [DMESG-WARN][16] ([i915#180] / [i915#9925]) +1 other test dmesg-warn
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/fi-kbl-7567u/igt@i915_module_load@load.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/fi-kbl-7567u/igt@i915_module_load@load.html
* igt@i915_module_load@reload:
- fi-kbl-7567u: [PASS][17] -> [DMESG-WARN][18] ([i915#180] / [i915#1982] / [i915#9925])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/fi-kbl-7567u/igt@i915_module_load@reload.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/fi-kbl-7567u/igt@i915_module_load@reload.html
* igt@i915_pm_rpm@module-reload:
- fi-kbl-7567u: [PASS][19] -> [DMESG-WARN][20] ([i915#11621] / [i915#180] / [i915#1982] / [i915#9925])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/fi-kbl-7567u/igt@i915_pm_rpm@module-reload.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/fi-kbl-7567u/igt@i915_pm_rpm@module-reload.html
* igt@i915_pm_rps@basic-api:
- bat-dg2-11: NOTRUN -> [SKIP][21] ([i915#11681] / [i915#6621])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-dg2-11/igt@i915_pm_rps@basic-api.html
- bat-mtlp-8: NOTRUN -> [SKIP][22] ([i915#11681] / [i915#6621])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-mtlp-8/igt@i915_pm_rps@basic-api.html
- bat-dg1-7: NOTRUN -> [SKIP][23] ([i915#11681] / [i915#6621])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-dg1-7/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@hangcheck:
- bat-arls-1: [PASS][24] -> [DMESG-WARN][25] ([i915#11349])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/bat-arls-1/igt@i915_selftest@live@hangcheck.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-arls-1/igt@i915_selftest@live@hangcheck.html
* igt@i915_selftest@live@sanitycheck:
- fi-kbl-7567u: [PASS][26] -> [DMESG-WARN][27] ([i915#11621]) +80 other tests dmesg-warn
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html
* igt@i915_selftest@live@workarounds:
- bat-mtlp-8: NOTRUN -> [ABORT][28] ([i915#12061])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-mtlp-8/igt@i915_selftest@live@workarounds.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- bat-dg2-11: NOTRUN -> [SKIP][29] ([i915#4212]) +7 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-dg2-11/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-dg2-11: NOTRUN -> [SKIP][30] ([i915#5190])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-dg2-11/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- bat-mtlp-8: NOTRUN -> [SKIP][31] ([i915#5190])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/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][32] ([i915#4212]) +8 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-mtlp-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html
- bat-dg1-7: NOTRUN -> [SKIP][33] ([i915#4215])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-dg1-7/igt@kms_addfb_basic@basic-y-tiled-legacy.html
- bat-dg2-11: NOTRUN -> [SKIP][34] ([i915#4215] / [i915#5190])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- bat-dg1-7: NOTRUN -> [SKIP][35] ([i915#4212]) +7 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-dg1-7/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_busy@basic@flip:
- fi-kbl-7567u: [PASS][36] -> [DMESG-WARN][37] ([i915#180])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/fi-kbl-7567u/igt@kms_busy@basic@flip.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/fi-kbl-7567u/igt@kms_busy@basic@flip.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- bat-dg2-11: NOTRUN -> [SKIP][38] ([i915#4103] / [i915#4213]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][39] ([i915#4213]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- bat-jsl-1: NOTRUN -> [SKIP][40] ([i915#4103]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-jsl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- bat-dg1-7: NOTRUN -> [SKIP][41] ([i915#4103] / [i915#4213]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-dg1-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-dg2-11: NOTRUN -> [SKIP][42] ([i915#3555] / [i915#3840])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-dg2-11/igt@kms_dsc@dsc-basic.html
- bat-mtlp-8: NOTRUN -> [SKIP][43] ([i915#3555] / [i915#3840] / [i915#9159])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-mtlp-8/igt@kms_dsc@dsc-basic.html
- bat-jsl-1: NOTRUN -> [SKIP][44] ([i915#3555] / [i915#9886])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-jsl-1/igt@kms_dsc@dsc-basic.html
- bat-dg1-7: NOTRUN -> [SKIP][45] ([i915#3555] / [i915#3840])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-dg1-7/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-mtlp-8: NOTRUN -> [SKIP][46]
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-mtlp-8/igt@kms_force_connector_basic@force-load-detect.html
- bat-jsl-1: NOTRUN -> [SKIP][47]
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-jsl-1/igt@kms_force_connector_basic@force-load-detect.html
- bat-dg1-7: NOTRUN -> [SKIP][48]
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-dg1-7/igt@kms_force_connector_basic@force-load-detect.html
- bat-dg2-11: NOTRUN -> [SKIP][49]
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-dg2-11/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-dg2-11: NOTRUN -> [SKIP][50] ([i915#5274])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-dg2-11/igt@kms_force_connector_basic@prune-stale-modes.html
- bat-mtlp-8: NOTRUN -> [SKIP][51] ([i915#5274])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_hdmi_inject@inject-audio:
- bat-dg1-7: NOTRUN -> [SKIP][52] ([i915#433])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-dg1-7/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-dg2-11: NOTRUN -> [SKIP][53] ([i915#9197]) +3 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
* igt@kms_pm_backlight@basic-brightness:
- bat-dg2-11: NOTRUN -> [SKIP][54] ([i915#5354])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-dg2-11/igt@kms_pm_backlight@basic-brightness.html
- bat-dg1-7: NOTRUN -> [SKIP][55] ([i915#5354])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-dg1-7/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- fi-kbl-7567u: [PASS][56] -> [DMESG-WARN][57] ([i915#11621] / [i915#180] / [i915#9925]) +36 other tests dmesg-warn
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html
* igt@kms_psr@psr-primary-mmap-gtt:
- fi-pnv-d510: NOTRUN -> [SKIP][58] +32 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/fi-pnv-d510/igt@kms_psr@psr-primary-mmap-gtt.html
* igt@kms_psr@psr-primary-mmap-gtt@edp-1:
- bat-mtlp-8: NOTRUN -> [SKIP][59] ([i915#4077] / [i915#9688])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/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][60] ([i915#1072] / [i915#9732]) +3 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-dg1-7/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_psr@psr-sprite-plane-onoff:
- bat-dg2-11: NOTRUN -> [SKIP][61] ([i915#1072] / [i915#9732]) +3 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-dg2-11/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-dg2-11: NOTRUN -> [SKIP][62] ([i915#3555])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-dg2-11/igt@kms_setmode@basic-clone-single-crtc.html
- bat-mtlp-8: NOTRUN -> [SKIP][63] ([i915#3555] / [i915#8809])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-mtlp-8/igt@kms_setmode@basic-clone-single-crtc.html
- bat-jsl-1: NOTRUN -> [SKIP][64] ([i915#3555])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-jsl-1/igt@kms_setmode@basic-clone-single-crtc.html
- bat-dg1-7: NOTRUN -> [SKIP][65] ([i915#3555])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-dg1-7/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-dg2-11: NOTRUN -> [SKIP][66] ([i915#3708])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-dg2-11/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-dg1-7: NOTRUN -> [SKIP][67] ([i915#3708] / [i915#4077]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-dg1-7/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-fence-read:
- bat-mtlp-8: NOTRUN -> [SKIP][68] ([i915#3708]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-mtlp-8/igt@prime_vgem@basic-fence-read.html
- bat-dg1-7: NOTRUN -> [SKIP][69] ([i915#3708]) +3 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-dg1-7/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-gtt:
- bat-dg2-11: NOTRUN -> [SKIP][70] ([i915#3708] / [i915#4077]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-dg2-11/igt@prime_vgem@basic-gtt.html
- bat-mtlp-8: NOTRUN -> [SKIP][71] ([i915#3708] / [i915#4077]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-mtlp-8/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-write:
- bat-dg2-11: NOTRUN -> [SKIP][72] ([i915#3291] / [i915#3708]) +2 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-dg2-11/igt@prime_vgem@basic-write.html
- bat-mtlp-8: NOTRUN -> [SKIP][73] ([i915#10216] / [i915#3708])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/bat-mtlp-8/igt@prime_vgem@basic-write.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10196
[i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#11343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11343
[i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346
[i915#11349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11349
[i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621
[i915#11666]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11666
[i915#11671]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11671
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11723
[i915#11724]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11724
[i915#11725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11725
[i915#11726]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11726
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[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#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[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#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#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886
[i915#9925]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9925
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8005 -> IGTPW_11691
CI-20190529: 20190529
CI_DRM_15358: c72d3ffc0308b71024de6f80c3596668991c67ea @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11691: 11691
IGT_8005: fc3113c8c1e99797b2d4769aaf02265be64a7589 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/index.html
[-- Attachment #2: Type: text/html, Size: 24524 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ CI.xeBAT: success for Add dsc+bigjoiner subtest (rev3)
2024-09-04 7:24 [PATCH i-g-t v3,0/3] Add dsc+bigjoiner subtest Swati Sharma
` (3 preceding siblings ...)
2024-09-04 17:02 ` ✓ Fi.CI.BAT: success for Add dsc+bigjoiner subtest (rev3) Patchwork
@ 2024-09-04 17:05 ` Patchwork
2024-09-05 14:33 ` ✗ Fi.CI.IGT: failure " Patchwork
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-09-04 17:05 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 851 bytes --]
== Series Details ==
Series: Add dsc+bigjoiner subtest (rev3)
URL : https://patchwork.freedesktop.org/series/128266/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8005_BAT -> XEIGTPW_11691_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8005 -> IGTPW_11691
IGTPW_11691: 11691
IGT_8005: fc3113c8c1e99797b2d4769aaf02265be64a7589 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1890-c72d3ffc0308b71024de6f80c3596668991c67ea: c72d3ffc0308b71024de6f80c3596668991c67ea
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11691/index.html
[-- Attachment #2: Type: text/html, Size: 1396 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ Fi.CI.IGT: failure for Add dsc+bigjoiner subtest (rev3)
2024-09-04 7:24 [PATCH i-g-t v3,0/3] Add dsc+bigjoiner subtest Swati Sharma
` (4 preceding siblings ...)
2024-09-04 17:05 ` ✓ CI.xeBAT: " Patchwork
@ 2024-09-05 14:33 ` Patchwork
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-09-05 14:33 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 90495 bytes --]
== Series Details ==
Series: Add dsc+bigjoiner subtest (rev3)
URL : https://patchwork.freedesktop.org/series/128266/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8005_full -> IGTPW_11691_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_11691_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_11691_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.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/index.html
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_11691_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_eio@reset-stress:
- shard-glk: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-glk6/igt@gem_eio@reset-stress.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-glk6/igt@gem_eio@reset-stress.html
* {igt@kms_dsc@dsc-with-bigjoiner} (NEW):
- shard-rkl: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-5/igt@kms_dsc@dsc-with-bigjoiner.html
- shard-dg1: NOTRUN -> [SKIP][4]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-16/igt@kms_dsc@dsc-with-bigjoiner.html
- shard-tglu: NOTRUN -> [SKIP][5]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-tglu-9/igt@kms_dsc@dsc-with-bigjoiner.html
- shard-mtlp: NOTRUN -> [SKIP][6]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-mtlp-8/igt@kms_dsc@dsc-with-bigjoiner.html
- shard-dg2: NOTRUN -> [SKIP][7]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-11/igt@kms_dsc@dsc-with-bigjoiner.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ab-vga1-hdmi-a1:
- shard-snb: NOTRUN -> [INCOMPLETE][8]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-snb6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ab-vga1-hdmi-a1.html
New tests
---------
New tests have been introduced between IGT_8005_full and IGTPW_11691_full:
### New IGT tests (1) ###
* igt@kms_dsc@dsc-with-bigjoiner:
- Statuses : 6 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_11691_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg1: NOTRUN -> [SKIP][9] ([i915#8411]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-15/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: NOTRUN -> [SKIP][10] ([i915#11078])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-2/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_fdinfo@busy-check-all@bcs0:
- shard-dg1: NOTRUN -> [SKIP][11] ([i915#8414]) +11 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-18/igt@drm_fdinfo@busy-check-all@bcs0.html
* igt@drm_fdinfo@busy-idle@bcs0:
- shard-dg2: NOTRUN -> [SKIP][12] ([i915#8414]) +8 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-6/igt@drm_fdinfo@busy-idle@bcs0.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-rkl: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#9323])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-2/igt@gem_ccs@block-multicopy-inplace.html
- shard-dg1: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#9323])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-16/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-rkl: NOTRUN -> [SKIP][15] ([i915#9323])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-5/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_close_race@multigpu-basic-process:
- shard-snb: NOTRUN -> [SKIP][16] +23 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-snb5/igt@gem_close_race@multigpu-basic-process.html
- shard-mtlp: NOTRUN -> [SKIP][17] ([i915#7697])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-mtlp-3/igt@gem_close_race@multigpu-basic-process.html
- shard-rkl: NOTRUN -> [SKIP][18] ([i915#7697])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-4/igt@gem_close_race@multigpu-basic-process.html
- shard-dg1: NOTRUN -> [SKIP][19] ([i915#7697])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-15/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-tglu: NOTRUN -> [SKIP][20] ([i915#6335])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-tglu-8/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_engines@invalid-engines:
- shard-rkl: NOTRUN -> [FAIL][21] ([i915#12027])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-5/igt@gem_ctx_engines@invalid-engines.html
- shard-glk: [PASS][22] -> [FAIL][23] ([i915#12027])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-glk3/igt@gem_ctx_engines@invalid-engines.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-glk6/igt@gem_ctx_engines@invalid-engines.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#8555]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-8/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_persistence@legacy-engines-hostile-preempt:
- shard-snb: NOTRUN -> [SKIP][25] ([i915#1099]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-snb5/igt@gem_ctx_persistence@legacy-engines-hostile-preempt.html
* igt@gem_eio@reset-stress:
- shard-dg1: NOTRUN -> [FAIL][26] ([i915#5784])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-15/igt@gem_eio@reset-stress.html
* igt@gem_exec_balancer@bonded-dual:
- shard-dg1: NOTRUN -> [SKIP][27] ([i915#4771])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-14/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg2: NOTRUN -> [SKIP][28] ([i915#4812]) +2 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-3/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-tglu: NOTRUN -> [FAIL][29] ([i915#6117])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-tglu-6/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_big@single:
- shard-tglu: [PASS][30] -> [ABORT][31] ([i915#11713])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-tglu-9/igt@gem_exec_big@single.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-tglu-3/igt@gem_exec_big@single.html
* igt@gem_exec_capture@capture-invisible@lmem0:
- shard-dg1: NOTRUN -> [SKIP][32] ([i915#6334]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-17/igt@gem_exec_capture@capture-invisible@lmem0.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-rkl: NOTRUN -> [SKIP][33] ([i915#6334])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-4/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@capture@vecs0-lmem0:
- shard-dg2: NOTRUN -> [FAIL][34] ([i915#11965]) +3 other tests fail
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-5/igt@gem_exec_capture@capture@vecs0-lmem0.html
* igt@gem_exec_fair@basic-none-rrul:
- shard-dg1: NOTRUN -> [SKIP][35] ([i915#3539] / [i915#4852]) +2 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-18/igt@gem_exec_fair@basic-none-rrul.html
* igt@gem_exec_fair@basic-none-rrul@rcs0:
- shard-rkl: NOTRUN -> [FAIL][36] ([i915#2842]) +1 other test fail
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-5/igt@gem_exec_fair@basic-none-rrul@rcs0.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-tglu: NOTRUN -> [FAIL][37] ([i915#2842])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-tglu-9/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [PASS][38] -> [FAIL][39] ([i915#2842])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html
- shard-rkl: [PASS][40] -> [FAIL][41] ([i915#2842])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-rkl-4/igt@gem_exec_fair@basic-pace-share@rcs0.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-2/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-glk: NOTRUN -> [FAIL][42] ([i915#2842])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-glk1/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_fair@basic-throttle:
- shard-dg1: NOTRUN -> [SKIP][43] ([i915#3539]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-16/igt@gem_exec_fair@basic-throttle.html
* igt@gem_exec_fence@submit:
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#4812]) +2 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-18/igt@gem_exec_fence@submit.html
* igt@gem_exec_flush@basic-uc-ro-default:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#3539] / [i915#4852]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-11/igt@gem_exec_flush@basic-uc-ro-default.html
* igt@gem_exec_flush@basic-uc-set-default:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#3539])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-11/igt@gem_exec_flush@basic-uc-set-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#5107])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-10/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-cpu:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#3281]) +5 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-5/igt@gem_exec_reloc@basic-cpu.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-rkl: NOTRUN -> [SKIP][49] ([i915#3281]) +12 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-4/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-cpu-wc:
- shard-dg1: NOTRUN -> [SKIP][50] ([i915#3281]) +9 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-18/igt@gem_exec_reloc@basic-cpu-wc.html
* igt@gem_exec_schedule@preempt-queue:
- shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4537] / [i915#4812])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-mtlp-6/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#4537] / [i915#4812]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-4/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_fence_thrash@bo-write-verify-threaded-none:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#4860])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-11/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#4860]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-16/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-rkl: NOTRUN -> [SKIP][55] ([i915#4613]) +3 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-1/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-tglu: NOTRUN -> [SKIP][56] ([i915#4613]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-tglu-6/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][57] ([i915#4565])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-13/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [PASS][58] -> [TIMEOUT][59] ([i915#5493])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-dg2-10/igt@gem_lmem_swapping@smem-oom@lmem0.html
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-3/igt@gem_lmem_swapping@smem-oom@lmem0.html
- shard-dg1: [PASS][60] -> [TIMEOUT][61] ([i915#5493])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-glk: NOTRUN -> [SKIP][62] ([i915#4613]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-glk1/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_media_vme:
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#284])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-18/igt@gem_media_vme.html
* igt@gem_mmap_gtt@big-copy:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#4077]) +9 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-11/igt@gem_mmap_gtt@big-copy.html
* igt@gem_mmap_gtt@cpuset-medium-copy-odd:
- shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4077]) +3 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-mtlp-2/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html
* igt@gem_mmap_wc@bad-size:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#4083]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-5/igt@gem_mmap_wc@bad-size.html
* igt@gem_mmap_wc@write-read-distinct:
- shard-dg1: NOTRUN -> [SKIP][67] ([i915#4083]) +6 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-14/igt@gem_mmap_wc@write-read-distinct.html
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#3282]) +4 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-1/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][69] ([i915#3282]) +2 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pwrite@basic-exhaustion:
- shard-dg1: NOTRUN -> [SKIP][70] ([i915#3282]) +4 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-17/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@create-regular-context-1:
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#4270]) +2 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-11/igt@gem_pxp@create-regular-context-1.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-rkl: NOTRUN -> [SKIP][72] ([i915#4270]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-2/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@reject-modify-context-protection-off-3:
- shard-tglu: NOTRUN -> [SKIP][73] ([i915#4270]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-tglu-8/igt@gem_pxp@reject-modify-context-protection-off-3.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#4270]) +4 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-17/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#5190] / [i915#8428]) +6 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-11/igt@gem_render_copy@y-tiled-ccs-to-y-tiled.html
* igt@gem_render_copy@y-tiled-to-vebox-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][76] ([i915#8428])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-mtlp-3/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-rkl: NOTRUN -> [SKIP][77] ([i915#8411]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-5/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_pwrite:
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#4079])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-15/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#3297]) +3 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-4/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-glk: NOTRUN -> [SKIP][80] ([i915#3323])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-glk1/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-dg1: NOTRUN -> [SKIP][81] ([i915#3297]) +2 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-15/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gen7_exec_parse@bitmasks:
- shard-dg2: NOTRUN -> [SKIP][82] +16 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-7/igt@gen7_exec_parse@bitmasks.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-dg1: NOTRUN -> [SKIP][83] ([i915#2527]) +2 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-15/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@batch-zero-length:
- shard-tglu: NOTRUN -> [SKIP][84] ([i915#2527] / [i915#2856]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-tglu-7/igt@gen9_exec_parse@batch-zero-length.html
* igt@gen9_exec_parse@unaligned-access:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#2856]) +3 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-1/igt@gen9_exec_parse@unaligned-access.html
* igt@gen9_exec_parse@valid-registers:
- shard-rkl: NOTRUN -> [SKIP][86] ([i915#2527]) +5 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-4/igt@gen9_exec_parse@valid-registers.html
* igt@i915_module_load@load:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#6227])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-5/igt@i915_module_load@load.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu: [PASS][88] -> [ABORT][89] ([i915#9820])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-tglu-7/igt@i915_module_load@reload-with-fault-injection.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-tglu-9/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg2: [PASS][90] -> [ABORT][91] ([i915#9820])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_module_load@resize-bar:
- shard-tglu: NOTRUN -> [SKIP][92] ([i915#6412])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-tglu-7/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: NOTRUN -> [SKIP][93] ([i915#8399])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-2/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-rkl: NOTRUN -> [SKIP][94] ([i915#6590])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-3/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0:
- shard-dg1: NOTRUN -> [FAIL][95] ([i915#3591])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg1: NOTRUN -> [SKIP][96] ([i915#11681] / [i915#6621]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-16/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@thresholds-park:
- shard-dg1: NOTRUN -> [SKIP][97] ([i915#11681])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-17/igt@i915_pm_rps@thresholds-park.html
* igt@i915_power@sanity:
- shard-mtlp: [PASS][98] -> [SKIP][99] ([i915#7984])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-mtlp-5/igt@i915_power@sanity.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-mtlp-4/igt@i915_power@sanity.html
* igt@i915_selftest@mock@memory_region:
- shard-dg1: NOTRUN -> [DMESG-WARN][100] ([i915#9311])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-15/igt@i915_selftest@mock@memory_region.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg1: NOTRUN -> [SKIP][101] ([i915#4215])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-15/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#8709]) +11 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-rkl: NOTRUN -> [SKIP][103] ([i915#9531])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@modeset-transition-nonblocking@2x-outputs:
- shard-glk: [PASS][104] -> [FAIL][105] ([i915#11859])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-glk2/igt@kms_atomic_transition@modeset-transition-nonblocking@2x-outputs.html
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-glk8/igt@kms_atomic_transition@modeset-transition-nonblocking@2x-outputs.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-rkl: NOTRUN -> [SKIP][106] ([i915#1769] / [i915#3555])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1:
- shard-dg2: [PASS][107] -> [FAIL][108] ([i915#5956])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-10/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1:
- shard-snb: [PASS][109] -> [FAIL][110] ([i915#5956])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-snb4/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-snb2/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-tglu: NOTRUN -> [SKIP][111] ([i915#5286]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-tglu-7/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][112] ([i915#4538] / [i915#5286]) +7 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-18/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#5286]) +5 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-1/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
- shard-dg1: NOTRUN -> [SKIP][114] ([i915#5286])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-16/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][115] ([i915#3638]) +4 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-4/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][116] ([i915#3638]) +4 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-13/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#5190])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-3/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#4538] / [i915#5190]) +11 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-5/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][119] ([i915#4538]) +6 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-15/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_joiner@invalid-modeset:
- shard-tglu: NOTRUN -> [SKIP][120] ([i915#10656])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-tglu-7/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][121] ([i915#12042]) +2 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-1/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][122] ([i915#6095]) +71 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-18/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#12042]) +2 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-3/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][124] ([i915#6095]) +67 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][125] ([i915#10307] / [i915#6095]) +195 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-1/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-dg1: NOTRUN -> [SKIP][126] ([i915#12042]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-17/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][127] ([i915#6095]) +7 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-tglu-7/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-1.html
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-10/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][129] ([i915#6095]) +7 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-mtlp-3/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-c-edp-1.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#7213]) +3 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-5/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#4087]) +3 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-4/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_audio@hdmi-audio:
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#7828]) +6 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-6/igt@kms_chamelium_audio@hdmi-audio.html
* igt@kms_chamelium_edid@dp-edid-read:
- shard-mtlp: NOTRUN -> [SKIP][133] ([i915#7828])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-mtlp-6/igt@kms_chamelium_edid@dp-edid-read.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#7828]) +10 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-5/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-tglu: NOTRUN -> [SKIP][135] ([i915#7828]) +2 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-tglu-8/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_hpd@hdmi-hpd-fast:
- shard-dg1: NOTRUN -> [SKIP][136] ([i915#7828]) +8 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-15/igt@kms_chamelium_hpd@hdmi-hpd-fast.html
* igt@kms_content_protection@atomic:
- shard-dg1: NOTRUN -> [SKIP][137] ([i915#7116] / [i915#9424])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-16/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@legacy:
- shard-tglu: NOTRUN -> [SKIP][138] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-tglu-8/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-0:
- shard-dg1: NOTRUN -> [SKIP][139] ([i915#9424])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-17/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-1:
- shard-rkl: NOTRUN -> [SKIP][140] ([i915#9424])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-1/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@mei-interface:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#9424])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-10/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-rkl: NOTRUN -> [SKIP][142] ([i915#7118])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-5/igt@kms_content_protection@srm.html
* igt@kms_content_protection@srm@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][143] ([i915#7173])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-11/igt@kms_content_protection@srm@pipe-a-dp-4.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#7118] / [i915#9424])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-4/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-dg1: NOTRUN -> [SKIP][145] ([i915#3555]) +6 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-17/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#11453]) +2 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-rkl: NOTRUN -> [SKIP][147] ([i915#11453]) +2 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-3/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-dg1: NOTRUN -> [SKIP][148] ([i915#4103] / [i915#4213]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-14/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-tglu: NOTRUN -> [SKIP][149] +40 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-tglu-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [PASS][150] -> [FAIL][151] ([i915#2346])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#9067])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-18/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#4103] / [i915#4213])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#9723])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#8588])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-2/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-dg1: NOTRUN -> [SKIP][156] ([i915#8588])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-16/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][157] ([i915#3804])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_aux_dev:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#1257])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-10/igt@kms_dp_aux_dev.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#8812])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-6/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-tglu: NOTRUN -> [SKIP][160] ([i915#3840])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-tglu-6/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-formats:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#3555] / [i915#3840])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-1/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg1: NOTRUN -> [SKIP][162] ([i915#3840] / [i915#9053])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-17/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#3955])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-2/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@display-2x:
- shard-dg1: NOTRUN -> [SKIP][164] ([i915#1839])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-13/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-3x:
- shard-rkl: NOTRUN -> [SKIP][165] ([i915#1839])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-3/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#1839])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-11/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@psr2:
- shard-dg1: NOTRUN -> [SKIP][167] ([i915#658])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-14/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-tglu: NOTRUN -> [SKIP][168] ([i915#3637]) +2 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-tglu-7/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2:
- shard-glk: [PASS][169] -> [FAIL][170] ([i915#79])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-glk3/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#8381])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-11/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-plain-flip-fb-recreate@ab-vga1-hdmi-a1:
- shard-snb: [PASS][172] -> [FAIL][173] ([i915#2122]) +2 other tests fail
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-snb5/igt@kms_flip@2x-plain-flip-fb-recreate@ab-vga1-hdmi-a1.html
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-snb7/igt@kms_flip@2x-plain-flip-fb-recreate@ab-vga1-hdmi-a1.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-rkl: NOTRUN -> [SKIP][174] +20 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-2/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][175] ([i915#9934]) +6 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-18/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
- shard-mtlp: NOTRUN -> [SKIP][176] ([i915#3637])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-mtlp-7/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@flip-vs-fences:
- shard-dg1: NOTRUN -> [SKIP][177] ([i915#8381])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-15/igt@kms_flip@flip-vs-fences.html
* igt@kms_flip@wf_vblank-ts-check@a-hdmi-a2:
- shard-rkl: [PASS][178] -> [FAIL][179] ([i915#11961])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-rkl-1/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a2.html
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-5/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a2.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][180] ([i915#2587] / [i915#2672])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#2672]) +6 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][182] ([i915#2672]) +2 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][183] ([i915#2587] / [i915#2672]) +2 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-tglu-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][184] ([i915#8708]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu:
- shard-dg2: [PASS][185] -> [FAIL][186] ([i915#6880])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite:
- shard-mtlp: NOTRUN -> [SKIP][187] ([i915#1825]) +2 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][188] +47 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#5354]) +30 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-tglu: NOTRUN -> [SKIP][190] ([i915#5439])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-tglu-9/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#3458]) +16 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][192] ([i915#3458]) +18 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][193] ([i915#8708]) +17 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][194] ([i915#3023]) +25 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-dg1: NOTRUN -> [SKIP][195] ([i915#5439])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-rkl: NOTRUN -> [SKIP][196] ([i915#9766])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][197] ([i915#8708]) +24 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][198] ([i915#1825]) +40 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#6118])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-3/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-dg1: NOTRUN -> [SKIP][200] ([i915#3555] / [i915#8228]) +1 other test skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-18/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-tglu: NOTRUN -> [SKIP][201] ([i915#3555] / [i915#8228]) +1 other test skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-tglu-9/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@static-toggle-dpms:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#3555] / [i915#8228])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-5/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_hdr@static-toggle-suspend:
- shard-rkl: NOTRUN -> [SKIP][203] ([i915#3555] / [i915#8228]) +1 other test skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-5/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg1: NOTRUN -> [SKIP][204] ([i915#6301])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-18/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_panel_fitting@legacy:
- shard-dg2: NOTRUN -> [SKIP][205] ([i915#6301])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-5/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][206] ([i915#7862]) +1 other test fail
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-glk8/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][207] ([i915#10647]) +1 other test fail
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-glk6/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#3555]) +4 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-4/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#8806])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-6/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][210] ([i915#9423]) +23 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][211] ([i915#9423]) +11 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-17/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c-hdmi-a-4.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][212] ([i915#9423]) +3 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-3/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][213] ([i915#9423]) +11 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-tglu-8/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#5235]) +1 other test skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][215] ([i915#9728]) +1 other test skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][216] ([i915#5235]) +2 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-mtlp-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c-edp-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#5235])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-mtlp-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][218] ([i915#9728]) +7 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-17/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#9685]) +1 other test skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-6/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc6-dpms:
- shard-rkl: NOTRUN -> [SKIP][220] ([i915#3361])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-2/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: [PASS][221] -> [SKIP][222] ([i915#4281])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-tglu-6/igt@kms_pm_dc@dc9-dpms.html
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-tglu-9/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#8430])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-10/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-mtlp: NOTRUN -> [SKIP][224] ([i915#9519])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-mtlp-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@fences:
- shard-dg1: NOTRUN -> [SKIP][225] ([i915#4077]) +14 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-15/igt@kms_pm_rpm@fences.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-rkl: [PASS][226] -> [SKIP][227] ([i915#9519]) +1 other test skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp.html
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2: [PASS][228] -> [SKIP][229] ([i915#9519]) +1 other test skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
- shard-rkl: NOTRUN -> [SKIP][230] ([i915#9519])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
- shard-dg1: NOTRUN -> [SKIP][231] ([i915#9519])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-18/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg2: NOTRUN -> [SKIP][232] ([i915#6524] / [i915#6805])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-5/igt@kms_prime@basic-crc-vgem.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: NOTRUN -> [SKIP][233] ([i915#6524])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-5/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-sf:
- shard-dg2: NOTRUN -> [SKIP][234] ([i915#11520]) +2 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-6/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-exceed-sf:
- shard-dg1: NOTRUN -> [SKIP][235] ([i915#11520]) +2 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-17/igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf:
- shard-rkl: NOTRUN -> [SKIP][236] ([i915#11520]) +4 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][237] ([i915#11520])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-tglu-9/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg1: NOTRUN -> [SKIP][238] ([i915#9683])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-17/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-psr-cursor-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][239] ([i915#1072] / [i915#9732]) +13 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-1/igt@kms_psr@fbc-psr-cursor-mmap-cpu.html
* igt@kms_psr@fbc-psr-cursor-plane-onoff:
- shard-tglu: NOTRUN -> [SKIP][240] ([i915#9732]) +8 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-tglu-5/igt@kms_psr@fbc-psr-cursor-plane-onoff.html
* igt@kms_psr@fbc-psr-primary-mmap-cpu@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][241] ([i915#9688])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-mtlp-1/igt@kms_psr@fbc-psr-primary-mmap-cpu@edp-1.html
* igt@kms_psr@fbc-psr-primary-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#1072] / [i915#9673] / [i915#9732]) +5 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-11/igt@kms_psr@fbc-psr-primary-mmap-gtt.html
* igt@kms_psr@fbc-psr2-cursor-mmap-gtt:
- shard-glk: NOTRUN -> [SKIP][243] +236 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-glk1/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html
* igt@kms_psr@psr2-primary-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][244] ([i915#1072] / [i915#9732]) +22 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-16/igt@kms_psr@psr2-primary-mmap-cpu.html
* igt@kms_psr@psr2-suspend:
- shard-rkl: NOTRUN -> [SKIP][245] ([i915#1072] / [i915#9732]) +25 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-5/igt@kms_psr@psr2-suspend.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-rkl: NOTRUN -> [SKIP][246] ([i915#9685])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-rkl: NOTRUN -> [SKIP][247] ([i915#5289])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
- shard-dg1: NOTRUN -> [SKIP][248] ([i915#5289])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-15/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][249] ([i915#11131] / [i915#5190]) +1 other test skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-tglu: NOTRUN -> [SKIP][250] ([i915#3555]) +6 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-tglu-5/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-dg2: NOTRUN -> [SKIP][251] ([i915#3555]) +4 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-6/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_sysfs_edid_timing:
- shard-dg1: NOTRUN -> [FAIL][252] ([IGT#2] / [i915#6493])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-17/igt@kms_sysfs_edid_timing.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg1: NOTRUN -> [SKIP][253] ([i915#8623])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-18/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [FAIL][254] ([i915#9196])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
* igt@kms_vrr@lobf:
- shard-rkl: NOTRUN -> [SKIP][255] ([i915#11920])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-3/igt@kms_vrr@lobf.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-rkl: NOTRUN -> [SKIP][256] ([i915#9906]) +1 other test skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-5/igt@kms_vrr@seamless-rr-switch-virtual.html
- shard-dg1: NOTRUN -> [SKIP][257] ([i915#9906]) +1 other test skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-15/igt@kms_vrr@seamless-rr-switch-virtual.html
- shard-mtlp: NOTRUN -> [SKIP][258] ([i915#8808] / [i915#9906])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-mtlp-2/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-dg2: NOTRUN -> [SKIP][259] ([i915#9906])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-1/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-check-output:
- shard-glk: NOTRUN -> [SKIP][260] ([i915#2437])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-glk3/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg1: NOTRUN -> [SKIP][261] ([i915#2437])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-16/igt@kms_writeback@writeback-fb-id.html
* igt@perf@per-context-mode-unprivileged:
- shard-dg1: NOTRUN -> [SKIP][262] ([i915#2433]) +1 other test skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-16/igt@perf@per-context-mode-unprivileged.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][263] ([i915#2433])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-3/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@cpu-hotplug:
- shard-rkl: NOTRUN -> [SKIP][264] ([i915#8850])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-3/igt@perf_pmu@cpu-hotplug.html
- shard-dg1: NOTRUN -> [SKIP][265] ([i915#8850])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-17/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@rc6-all-gts:
- shard-rkl: NOTRUN -> [SKIP][266] ([i915#8516])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-2/igt@perf_pmu@rc6-all-gts.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: NOTRUN -> [CRASH][267] ([i915#9351])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-8/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
* igt@prime_vgem@basic-fence-flip:
- shard-dg1: NOTRUN -> [SKIP][268] ([i915#3708])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-15/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-read:
- shard-rkl: NOTRUN -> [SKIP][269] ([i915#3291] / [i915#3708])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-3/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-write:
- shard-dg2: NOTRUN -> [SKIP][270] ([i915#3291] / [i915#3708])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-6/igt@prime_vgem@basic-write.html
* igt@prime_vgem@coherency-gtt:
- shard-dg2: NOTRUN -> [SKIP][271] ([i915#3708] / [i915#4077]) +1 other test skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-10/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-flip-hang:
- shard-rkl: NOTRUN -> [SKIP][272] ([i915#3708])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-4/igt@prime_vgem@fence-flip-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-rkl: NOTRUN -> [SKIP][273] ([i915#9917]) +2 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-2/igt@sriov_basic@bind-unbind-vf.html
- shard-dg1: NOTRUN -> [SKIP][274] ([i915#9917]) +1 other test skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-14/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-tglu: NOTRUN -> [SKIP][275] ([i915#9917])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-tglu-6/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-dg2: NOTRUN -> [SKIP][276] ([i915#9917])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-8/igt@sriov_basic@enable-vfs-bind-unbind-each.html
* igt@syncobj_timeline@invalid-wait-zero-handles:
- shard-dg1: NOTRUN -> [FAIL][277] ([i915#9781]) +1 other test fail
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-17/igt@syncobj_timeline@invalid-wait-zero-handles.html
* igt@syncobj_wait@invalid-wait-zero-handles:
- shard-rkl: NOTRUN -> [FAIL][278] ([i915#9781])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-4/igt@syncobj_wait@invalid-wait-zero-handles.html
#### Possible fixes ####
* igt@gem_eio@kms:
- shard-dg2: [FAIL][279] ([i915#5784]) -> [PASS][280]
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-dg2-2/igt@gem_eio@kms.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-10/igt@gem_eio@kms.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: [FAIL][281] ([i915#2846]) -> [PASS][282]
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-rkl-5/igt@gem_exec_fair@basic-deadline.html
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-5/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-tglu: [FAIL][283] ([i915#2842]) -> [PASS][284]
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-tglu-5/igt@gem_exec_fair@basic-pace-share@rcs0.html
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-rkl: [FAIL][285] ([i915#2842]) -> [PASS][286] +1 other test pass
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-rkl-5/igt@gem_exec_fair@basic-pace@rcs0.html
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-2/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: [ABORT][287] ([i915#9820]) -> [PASS][288]
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-2/igt@i915_module_load@reload-with-fault-injection.html
- shard-snb: [ABORT][289] ([i915#9820]) -> [PASS][290]
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-rkl: [INCOMPLETE][291] ([i915#4817]) -> [PASS][292]
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-rkl-3/igt@i915_suspend@basic-s3-without-i915.html
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-5/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a2:
- shard-rkl: [FAIL][293] ([i915#2122]) -> [PASS][294]
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-rkl-5/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a2.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-3/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a2.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a2:
- shard-rkl: [FAIL][295] ([i915#11989]) -> [PASS][296]
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-rkl-5/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a2.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-3/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a2.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite:
- shard-dg2: [FAIL][297] ([i915#6880]) -> [PASS][298]
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-snb: [SKIP][299] -> [PASS][300] +1 other test pass
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-rkl: [SKIP][301] ([i915#9519]) -> [PASS][302]
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-rkl-4/igt@kms_pm_rpm@dpms-non-lpsp.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-1/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: [SKIP][303] ([i915#9519]) -> [PASS][304] +2 other tests pass
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_psr@psr2-sprite-blt@edp-1:
- shard-mtlp: [FAIL][305] ([i915#10105]) -> [PASS][306]
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-mtlp-6/igt@kms_psr@psr2-sprite-blt@edp-1.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-mtlp-5/igt@kms_psr@psr2-sprite-blt@edp-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:
- shard-snb: [FAIL][307] ([i915#9196]) -> [PASS][308]
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-snb5/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-snb6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
* igt@perf_pmu@busy-double-start@vecs0:
- shard-mtlp: [FAIL][309] ([i915#4349]) -> [PASS][310] +2 other tests pass
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-mtlp-3/igt@perf_pmu@busy-double-start@vecs0.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-mtlp-8/igt@perf_pmu@busy-double-start@vecs0.html
#### Warnings ####
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [ABORT][311] ([i915#10131] / [i915#9697]) -> [INCOMPLETE][312] ([i915#10887])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
- shard-tglu: [FAIL][313] ([i915#3591]) -> [WARN][314] ([i915#2681])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][315] ([i915#9424]) -> [SKIP][316] ([i915#9433])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-dg1-16/igt@kms_content_protection@mei-interface.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg1-13/igt@kms_content_protection@mei-interface.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2: [SKIP][317] ([i915#11453] / [i915#3359]) -> [SKIP][318] ([i915#11453])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-dg2-11/igt@kms_cursor_crc@cursor-random-512x512.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-4/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-dg2: [SKIP][319] ([i915#11453]) -> [SKIP][320] ([i915#11453] / [i915#3359])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-dg2-1/igt@kms_cursor_crc@cursor-sliding-512x512.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-11/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render:
- shard-dg2: [SKIP][321] ([i915#3458]) -> [SKIP][322] ([i915#10433] / [i915#3458])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: [SKIP][323] ([i915#10433] / [i915#3458]) -> [SKIP][324] ([i915#3458]) +2 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][325] ([i915#4070] / [i915#4816]) -> [SKIP][326] ([i915#4816])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: [SKIP][327] ([i915#3361]) -> [SKIP][328] ([i915#4281])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-rkl-4/igt@kms_pm_dc@dc9-dpms.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_psr@fbc-pr-primary-page-flip:
- shard-dg2: [SKIP][329] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][330] ([i915#1072] / [i915#9732]) +10 other tests skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-dg2-11/igt@kms_psr@fbc-pr-primary-page-flip.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-5/igt@kms_psr@fbc-pr-primary-page-flip.html
* igt@kms_psr@psr2-cursor-blt:
- shard-dg2: [SKIP][331] ([i915#1072] / [i915#9732]) -> [SKIP][332] ([i915#1072] / [i915#9673] / [i915#9732]) +11 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-dg2-1/igt@kms_psr@psr2-cursor-blt.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-11/igt@kms_psr@psr2-cursor-blt.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-dg2: [SKIP][333] ([i915#11131] / [i915#4235]) -> [SKIP][334] ([i915#11131]) +1 other test skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-dg2-11/igt@kms_rotation_crc@bad-pixel-format.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-10/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-dg2: [SKIP][335] ([i915#11131]) -> [SKIP][336] ([i915#11131] / [i915#4235])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-dg2-3/igt@kms_rotation_crc@sprite-rotation-270.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-11/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: [FAIL][337] ([i915#9100]) -> [FAIL][338] ([i915#7484])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8005/shard-dg2-11/igt@perf@non-zero-reason@0-rcs0.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/shard-dg2-3/igt@perf@non-zero-reason@0-rcs0.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
[i915#10105]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10105
[i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11131
[i915#11453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713
[i915#11859]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11859
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#11961]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11961
[i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965
[i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989
[i915#12027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12027
[i915#12042]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12042
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122
[i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2846
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
[i915#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070
[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#4087]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
[i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
[i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6117]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6117
[i915#6118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6118
[i915#6227]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6227
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[i915#6493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6493
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213
[i915#7484]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7484
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862
[i915#79]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/79
[i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8588]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8588
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
[i915#8806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8806
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8850]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8850
[i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100
[i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196
[i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9351]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9351
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9697
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9728]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9728
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9781
[i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8005 -> IGTPW_11691
CI-20190529: 20190529
CI_DRM_15358: c72d3ffc0308b71024de6f80c3596668991c67ea @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11691: 11691
IGT_8005: fc3113c8c1e99797b2d4769aaf02265be64a7589 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11691/index.html
[-- Attachment #2: Type: text/html, Size: 111401 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-09-05 14:33 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-04 7:24 [PATCH i-g-t v3,0/3] Add dsc+bigjoiner subtest Swati Sharma
2024-09-04 7:24 ` [PATCH i-g-t v3, 1/3] tests/intel/kms_dsc: move restore funcs() to reset func() Swati Sharma
2024-09-04 7:24 ` [PATCH i-g-t v3,2/3] dsc: add dsc+big joiner helper func Swati Sharma
2024-09-04 7:24 ` [PATCH i-g-t v3,3/3] tests/intel/kms_dsc: add new subtest Swati Sharma
2024-09-04 17:02 ` ✓ Fi.CI.BAT: success for Add dsc+bigjoiner subtest (rev3) Patchwork
2024-09-04 17:05 ` ✓ CI.xeBAT: " Patchwork
2024-09-05 14:33 ` ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox