* [igt-dev] [PATCH i-g-t v6] tests/kms_frontbuffer_tracking: Extend the test to enable FBC for each plane
@ 2023-11-03 3:27 Nidhi Gupta
2023-11-03 4:45 ` [igt-dev] ✓ CI.xeBAT: success for tests/kms_frontbuffer_tracking: Extend the test to enable FBC for each plane (rev8) Patchwork
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Nidhi Gupta @ 2023-11-03 3:27 UTC (permalink / raw)
To: igt-dev; +Cc: Nidhi Gupta
Added a new subtest to validate FBC on each plane, this new subtest
will first disable the fbc feature on all pipes and planes and then
enable it on all plane one by one and confirm.
v2: Modify tests to disable primary and enable other plane
to check fbc is enabled or not. <Bhanu>
v3: Implemented design changes as suggested <Bhanu>
v4: Fixed nitpicks (Bhanu)
Signed-off-by: Nidhi Gupta <nidhi1.gupta@intel.com>
---
tests/intel/kms_frontbuffer_tracking.c | 106 +++++++++++++++++++++++++
1 file changed, 106 insertions(+)
diff --git a/tests/intel/kms_frontbuffer_tracking.c b/tests/intel/kms_frontbuffer_tracking.c
index f90d09f9f..61c0dd0fd 100644
--- a/tests/intel/kms_frontbuffer_tracking.c
+++ b/tests/intel/kms_frontbuffer_tracking.c
@@ -43,6 +43,15 @@
#include "igt_sysfs.h"
#include "igt_psr.h"
+/**
+ * SUBTEST: plane-fbc-rte
+ * Description: Sanity test to enable FBC on a plane.
+ * Driver requirement: i915, xe
+ * Functionality: fbc
+ * Mega feature: General Display Features
+ * Test category: functionality test
+ */
+
#define TIME SLOW_QUICK(1000, 10000)
IGT_TEST_DESCRIPTION("Test the Kernel's frontbuffer tracking mechanism and "
@@ -888,6 +897,17 @@ static bool fbc_mode_too_large(void)
return strstr(buf, "FBC disabled: mode too large for compression\n");
}
+static bool fbc_enable_per_plane(int plane_index, enum pipe pipe)
+{
+ char buf[128];
+ char buf_plane[128];
+
+ sprintf(buf_plane, "%d%s", plane_index, kmstest_pipe_name(pipe));
+
+ debugfs_read_crtc("i915_fbc_status", buf);
+ return strstr(strstr(buf, "*"), buf_plane);
+}
+
static bool drrs_wait_until_rr_switch_to_low(void)
{
return igt_wait(is_drrs_low(), 5000, 1);
@@ -1691,6 +1711,27 @@ static void set_region_for_test(const struct test_mode *t,
do_assertions(ASSERT_NO_ACTION_CHANGE);
}
+static void set_plane_for_test_fbc(const struct test_mode *t, igt_plane_t *plane)
+{
+ struct igt_fb fb;
+ uint32_t color;
+
+ create_fb(t->format, prim_mode_params.mode.hdisplay, prim_mode_params.mode.vdisplay, t->tiling, t->plane, &fb);
+ color = pick_color(&fb, COLOR_PRIM_BG);
+ igt_draw_rect_fb(drm.fd, drm.bops, 0, &fb, IGT_DRAW_BLT,
+ 0, 0, fb.width, fb.height,
+ color);
+ igt_plane_set_fb(plane, &fb);
+ igt_plane_set_position(plane, 0, 0);
+ igt_plane_set_size(plane, prim_mode_params.mode.hdisplay, prim_mode_params.mode.vdisplay);
+ igt_fb_set_size(&fb, plane, prim_mode_params.mode.hdisplay, prim_mode_params.mode.vdisplay);
+ igt_display_commit_atomic(&drm.display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
+ wanted_crc = &blue_crcs[t->format].crc;
+ fbc_update_last_action();
+ do_assertions(ASSERT_FBC_ENABLED);
+ igt_assert_f(fbc_enable_per_plane(plane->index, prim_mode_params.pipe), "FBC disabled\n");
+}
+
static bool enable_features_for_test(const struct test_mode *t)
{
bool ret = false;
@@ -1941,6 +1982,57 @@ static void rte_subtest(const struct test_mode *t)
}
}
+static bool is_valid_plane(igt_plane_t *plane)
+{
+ int index = plane->index;
+
+ if (plane->type == DRM_PLANE_TYPE_CURSOR)
+ return false;
+ /*
+ * Execute test only on first three planes
+ */
+ return ((index >= 0) && (index < 3));
+}
+
+/**
+ * plane-fbc-rte - the basic sanity test
+ *
+ * METHOD
+ * Just disable primary screen, assert everything is disabled, then enable single
+ * screens and single plane one by one and assert that the tested fbc is enabled
+ * for the particular plane.
+ *
+ * EXPECTED RESULTS
+ * Blue screens and t->feature enabled.
+ *
+ * FAILURES
+ * A failure here means that fbc is not getting enabled for requested plane. It means
+ * kernel is not able to enable fbc on the requested plane.
+ */
+
+static void plane_fbc_rte_subtest(const struct test_mode *t)
+{
+ int ver;
+ igt_plane_t *plane;
+
+ ver = intel_display_ver(intel_get_drm_devid(drm.fd));
+ igt_require_f((ver >= 20), "Can't test fbc for each plane\n");
+ prepare_subtest_data(t, NULL);
+ unset_all_crtcs();
+ do_assertions(ASSERT_FBC_DISABLED | DONT_ASSERT_CRC);
+ igt_output_override_mode(prim_mode_params.output, &prim_mode_params.mode);
+ igt_output_set_pipe(prim_mode_params.output, prim_mode_params.pipe);
+
+ for_each_plane_on_pipe(&drm.display, prim_mode_params.pipe, plane) {
+ if (!is_valid_plane(plane))
+ continue;
+ set_plane_for_test_fbc(t, plane);
+ }
+
+ plane = NULL;
+ igt_display_reset(&drm.display);
+}
+
static void update_wanted_crc(const struct test_mode *t, igt_crc_t *crc)
{
if (t->screen == SCREEN_PRIM)
@@ -4936,6 +5028,20 @@ igt_main_args("", long_options, help_str, opt_handler, NULL)
}
}
+ t.pipes = PIPE_SINGLE;
+ t.feature = FEATURE_FBC;
+ t.screen = SCREEN_PRIM;
+ t.fbs = FBS_INDIVIDUAL;
+ t.format = FORMAT_DEFAULT;
+ /* Make sure nothing is using these values. */
+ t.flip = -1;
+ t.method = -1;
+ t.tiling = opt.tiling;
+
+ igt_subtest_f("plane-fbc-rte") {
+ plane_fbc_rte_subtest(&t);
+ }
+
TEST_MODE_ITER_BEGIN(t)
igt_subtest_f("%s-%s-%s-%s-%s-draw-%s",
--
2.39.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for tests/kms_frontbuffer_tracking: Extend the test to enable FBC for each plane (rev8)
2023-11-03 3:27 [igt-dev] [PATCH i-g-t v6] tests/kms_frontbuffer_tracking: Extend the test to enable FBC for each plane Nidhi Gupta
@ 2023-11-03 4:45 ` Patchwork
2023-11-03 4:59 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2023-11-03 4:45 UTC (permalink / raw)
To: Nidhi Gupta; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1216 bytes --]
== Series Details ==
Series: tests/kms_frontbuffer_tracking: Extend the test to enable FBC for each plane (rev8)
URL : https://patchwork.freedesktop.org/series/123724/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7571_BAT -> XEIGTPW_10111_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_10111_BAT that come from known issues:
### IGT changes ###
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#524]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/524
Build changes
-------------
* IGT: IGT_7571 -> IGTPW_10111
IGTPW_10111: 10111
IGT_7571: 9b79b510e53d913da5d23e86f3baa6c58a2feed8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-467-58dfdb8dc78e5668f9891c798ec3191863c1e0d2: 58dfdb8dc78e5668f9891c798ec3191863c1e0d2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10111/index.html
[-- Attachment #2: Type: text/html, Size: 1692 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_frontbuffer_tracking: Extend the test to enable FBC for each plane (rev8)
2023-11-03 3:27 [igt-dev] [PATCH i-g-t v6] tests/kms_frontbuffer_tracking: Extend the test to enable FBC for each plane Nidhi Gupta
2023-11-03 4:45 ` [igt-dev] ✓ CI.xeBAT: success for tests/kms_frontbuffer_tracking: Extend the test to enable FBC for each plane (rev8) Patchwork
@ 2023-11-03 4:59 ` Patchwork
2023-11-03 15:41 ` [igt-dev] [PATCH i-g-t v6] tests/kms_frontbuffer_tracking: Extend the test to enable FBC for each plane Modem, Bhanuprakash
2023-11-03 23:50 ` [igt-dev] ✓ Fi.CI.IGT: success for tests/kms_frontbuffer_tracking: Extend the test to enable FBC for each plane (rev8) Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2023-11-03 4:59 UTC (permalink / raw)
To: Nidhi Gupta; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 10345 bytes --]
== Series Details ==
Series: tests/kms_frontbuffer_tracking: Extend the test to enable FBC for each plane (rev8)
URL : https://patchwork.freedesktop.org/series/123724/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13833 -> IGTPW_10111
====================================================
Summary
-------
**WARNING**
Minor unknown changes coming with IGTPW_10111 need to be verified
manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_10111, please notify your bug team (lgci.bug.filing@intel.com) 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_10111/index.html
Participating hosts (37 -> 35)
------------------------------
Additional (1): bat-dg2-9
Missing (3): fi-kbl-soraka fi-hsw-4770 fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_10111:
### IGT changes ###
#### Warnings ####
* igt@kms_force_connector_basic@force-connector-state:
- bat-adlp-11: [SKIP][1] ([i915#4093]) -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/bat-adlp-11/igt@kms_force_connector_basic@force-connector-state.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/bat-adlp-11/igt@kms_force_connector_basic@force-connector-state.html
Known issues
------------
Here are the changes found in IGTPW_10111 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_mmap@basic:
- bat-dg2-9: NOTRUN -> [SKIP][3] ([i915#4083])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/bat-dg2-9/igt@gem_mmap@basic.html
* igt@gem_mmap_gtt@basic:
- bat-dg2-9: NOTRUN -> [SKIP][4] ([i915#4077]) +2 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/bat-dg2-9/igt@gem_mmap_gtt@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-dg2-9: NOTRUN -> [SKIP][5] ([i915#4079]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/bat-dg2-9/igt@gem_render_tiled_blits@basic.html
* igt@i915_pm_rps@basic-api:
- bat-dg2-9: NOTRUN -> [SKIP][6] ([i915#6621])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/bat-dg2-9/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@hangcheck:
- bat-dg2-11: [PASS][7] -> [ABORT][8] ([i915#9523])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/bat-dg2-11/igt@i915_selftest@live@hangcheck.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/bat-dg2-11/igt@i915_selftest@live@hangcheck.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-dg2-9: NOTRUN -> [SKIP][9] ([i915#5190])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/bat-dg2-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg2-9: NOTRUN -> [SKIP][10] ([i915#4215] / [i915#5190])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/bat-dg2-9/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- bat-dg2-9: NOTRUN -> [SKIP][11] ([i915#4212]) +6 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/bat-dg2-9/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- bat-dg2-9: NOTRUN -> [SKIP][12] ([i915#4212] / [i915#5608])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/bat-dg2-9/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-dg2-9: NOTRUN -> [SKIP][13] ([i915#4103] / [i915#4213] / [i915#5608]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/bat-dg2-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@basic-flip-before-cursor-legacy:
- bat-adlp-11: [PASS][14] -> [SKIP][15] ([i915#3546] / [i915#4229])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/bat-adlp-11/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/bat-adlp-11/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html
* igt@kms_flip@basic-plain-flip@b-dp5:
- bat-adlp-11: [PASS][16] -> [DMESG-WARN][17] ([i915#6868]) +1 other test dmesg-warn
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/bat-adlp-11/igt@kms_flip@basic-plain-flip@b-dp5.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/bat-adlp-11/igt@kms_flip@basic-plain-flip@b-dp5.html
* igt@kms_flip@basic-plain-flip@d-dp5:
- bat-adlp-11: [PASS][18] -> [FAIL][19] ([i915#6121]) +1 other test fail
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/bat-adlp-11/igt@kms_flip@basic-plain-flip@d-dp5.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/bat-adlp-11/igt@kms_flip@basic-plain-flip@d-dp5.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-dg2-9: NOTRUN -> [SKIP][20] ([fdo#109285])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/bat-dg2-9/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-dg2-9: NOTRUN -> [SKIP][21] ([i915#5274])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/bat-dg2-9/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_psr@sprite_plane_onoff:
- bat-dg2-9: NOTRUN -> [SKIP][22] ([i915#1072]) +3 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/bat-dg2-9/igt@kms_psr@sprite_plane_onoff.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-dg2-9: NOTRUN -> [SKIP][23] ([i915#3555] / [i915#4098])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/bat-dg2-9/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-dg2-9: NOTRUN -> [SKIP][24] ([i915#3708])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/bat-dg2-9/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-dg2-9: NOTRUN -> [SKIP][25] ([i915#3708] / [i915#4077]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/bat-dg2-9/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-write:
- bat-dg2-9: NOTRUN -> [SKIP][26] ([i915#3291] / [i915#3708]) +2 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/bat-dg2-9/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@dmabuf@all-tests@dma_fence:
- fi-pnv-d510: [FAIL][27] -> [PASS][28]
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/fi-pnv-d510/igt@dmabuf@all-tests@dma_fence.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/fi-pnv-d510/igt@dmabuf@all-tests@dma_fence.html
* igt@dmabuf@all-tests@sanitycheck:
- fi-pnv-d510: [ABORT][29] -> [PASS][30]
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/fi-pnv-d510/igt@dmabuf@all-tests@sanitycheck.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/fi-pnv-d510/igt@dmabuf@all-tests@sanitycheck.html
#### Warnings ####
* igt@i915_suspend@basic-s3-without-i915:
- bat-rpls-1: [ABORT][31] ([i915#7978] / [i915#8668]) -> [INCOMPLETE][32] ([i915#7443])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/bat-rpls-1/igt@i915_suspend@basic-s3-without-i915.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/bat-rpls-1/igt@i915_suspend@basic-s3-without-i915.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4093]: https://gitlab.freedesktop.org/drm/intel/issues/4093
[i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#4229]: https://gitlab.freedesktop.org/drm/intel/issues/4229
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
[i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6868]: https://gitlab.freedesktop.org/drm/intel/issues/6868
[i915#7443]: https://gitlab.freedesktop.org/drm/intel/issues/7443
[i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[i915#9523]: https://gitlab.freedesktop.org/drm/intel/issues/9523
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7571 -> IGTPW_10111
CI-20190529: 20190529
CI_DRM_13833: b978573539a590501c843a520bfc65b830d10eba @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10111: 10111
IGT_7571: 9b79b510e53d913da5d23e86f3baa6c58a2feed8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Testlist changes
----------------
+igt@kms_frontbuffer_tracking@plane-fbc-rte
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/index.html
[-- Attachment #2: Type: text/html, Size: 11885 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v6] tests/kms_frontbuffer_tracking: Extend the test to enable FBC for each plane
2023-11-03 3:27 [igt-dev] [PATCH i-g-t v6] tests/kms_frontbuffer_tracking: Extend the test to enable FBC for each plane Nidhi Gupta
2023-11-03 4:45 ` [igt-dev] ✓ CI.xeBAT: success for tests/kms_frontbuffer_tracking: Extend the test to enable FBC for each plane (rev8) Patchwork
2023-11-03 4:59 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork
@ 2023-11-03 15:41 ` Modem, Bhanuprakash
2023-11-03 23:50 ` [igt-dev] ✓ Fi.CI.IGT: success for tests/kms_frontbuffer_tracking: Extend the test to enable FBC for each plane (rev8) Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Modem, Bhanuprakash @ 2023-11-03 15:41 UTC (permalink / raw)
To: Nidhi Gupta, igt-dev
Hi Nidhi,
On Fri-03-11-2023 08:57 am, Nidhi Gupta wrote:
> Added a new subtest to validate FBC on each plane, this new subtest
> will first disable the fbc feature on all pipes and planes and then
> enable it on all plane one by one and confirm.
>
> v2: Modify tests to disable primary and enable other plane
> to check fbc is enabled or not. <Bhanu>
>
> v3: Implemented design changes as suggested <Bhanu>
>
> v4: Fixed nitpicks (Bhanu)
>
> Signed-off-by: Nidhi Gupta <nidhi1.gupta@intel.com>
> ---
> tests/intel/kms_frontbuffer_tracking.c | 106 +++++++++++++++++++++++++
> 1 file changed, 106 insertions(+)
>
> diff --git a/tests/intel/kms_frontbuffer_tracking.c b/tests/intel/kms_frontbuffer_tracking.c
> index f90d09f9f..61c0dd0fd 100644
> --- a/tests/intel/kms_frontbuffer_tracking.c
> +++ b/tests/intel/kms_frontbuffer_tracking.c
> @@ -43,6 +43,15 @@
> #include "igt_sysfs.h"
> #include "igt_psr.h"
>
> +/**
> + * SUBTEST: plane-fbc-rte
> + * Description: Sanity test to enable FBC on a plane.
> + * Driver requirement: i915, xe
> + * Functionality: fbc
> + * Mega feature: General Display Features
> + * Test category: functionality test
> + */
> +
> #define TIME SLOW_QUICK(1000, 10000)
>
> IGT_TEST_DESCRIPTION("Test the Kernel's frontbuffer tracking mechanism and "
> @@ -888,6 +897,17 @@ static bool fbc_mode_too_large(void)
> return strstr(buf, "FBC disabled: mode too large for compression\n");
> }
>
> +static bool fbc_enable_per_plane(int plane_index, enum pipe pipe)
> +{
> + char buf[128];
> + char buf_plane[128];
> +
> + sprintf(buf_plane, "%d%s", plane_index, kmstest_pipe_name(pipe));
> +
> + debugfs_read_crtc("i915_fbc_status", buf);
> + return strstr(strstr(buf, "*"), buf_plane);
> +}
> +
> static bool drrs_wait_until_rr_switch_to_low(void)
> {
> return igt_wait(is_drrs_low(), 5000, 1);
> @@ -1691,6 +1711,27 @@ static void set_region_for_test(const struct test_mode *t,
> do_assertions(ASSERT_NO_ACTION_CHANGE);
> }
>
> +static void set_plane_for_test_fbc(const struct test_mode *t, igt_plane_t *plane)
> +{
> + struct igt_fb fb;
> + uint32_t color;
> +
Please print some plane information, as it is easy to debug the failures.
> + create_fb(t->format, prim_mode_params.mode.hdisplay, prim_mode_params.mode.vdisplay, t->tiling, t->plane, &fb);
> + color = pick_color(&fb, COLOR_PRIM_BG);
> + igt_draw_rect_fb(drm.fd, drm.bops, 0, &fb, IGT_DRAW_BLT,
> + 0, 0, fb.width, fb.height,
> + color);
Code looks clumsy to me, please follow some coding standards.
Please add newline here.
> + igt_plane_set_fb(plane, &fb);
> + igt_plane_set_position(plane, 0, 0);
> + igt_plane_set_size(plane, prim_mode_params.mode.hdisplay, prim_mode_params.mode.vdisplay);
> + igt_fb_set_size(&fb, plane, prim_mode_params.mode.hdisplay, prim_mode_params.mode.vdisplay);
> + igt_display_commit_atomic(&drm.display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
Please add newline here.
> + wanted_crc = &blue_crcs[t->format].crc;
-----------------------^
This won't change per plane, please move it to plane_fbc_rte_subtest()
> + fbc_update_last_action();
> + do_assertions(ASSERT_FBC_ENABLED);
----------------------------------------^
As we are checking fbc lastupdate, don't we need to check for
ASSERT_NO_ACTION_CHANGE too?
> + igt_assert_f(fbc_enable_per_plane(plane->index, prim_mode_params.pipe), "FBC disabled\n");
> +}
> +
> static bool enable_features_for_test(const struct test_mode *t)
> {
> bool ret = false;
> @@ -1941,6 +1982,57 @@ static void rte_subtest(const struct test_mode *t)
> }
> }
>
> +static bool is_valid_plane(igt_plane_t *plane)
> +{
> + int index = plane->index;
> +
> + if (plane->type == DRM_PLANE_TYPE_CURSOR)
> + return false;
> + /*
> + * Execute test only on first three planes
> + */
> + return ((index >= 0) && (index < 3));
> +}
> +
> +/**
> + * plane-fbc-rte - the basic sanity test
> + *
> + * METHOD
> + * Just disable primary screen, assert everything is disabled, then enable single
> + * screens and single plane one by one and assert that the tested fbc is enabled
> + * for the particular plane.
> + *
> + * EXPECTED RESULTS
> + * Blue screens and t->feature enabled.
> + *
> + * FAILURES
> + * A failure here means that fbc is not getting enabled for requested plane. It means
> + * kernel is not able to enable fbc on the requested plane.
> + */
> +
> +static void plane_fbc_rte_subtest(const struct test_mode *t)
> +{
> + int ver;
> + igt_plane_t *plane;
> +
> + ver = intel_display_ver(intel_get_drm_devid(drm.fd));
I can see, we are checking display version multiple times across this
test, need a cleanup to call it once & preserve the info in data.
Anyway that is outof context to this patch.
> + igt_require_f((ver >= 20), "Can't test fbc for each plane\n");
Please add newline here.
> + prepare_subtest_data(t, NULL);
> + unset_all_crtcs();
> + do_assertions(ASSERT_FBC_DISABLED | DONT_ASSERT_CRC);
Please add newline here.
> + igt_output_override_mode(prim_mode_params.output, &prim_mode_params.mode);
> + igt_output_set_pipe(prim_mode_params.output, prim_mode_params.pipe);
> +
> + for_each_plane_on_pipe(&drm.display, prim_mode_params.pipe, plane) {
> + if (!is_valid_plane(plane))
> + continue;
Please add newline here.
> + set_plane_for_test_fbc(t, plane);
We need a cleanup here or in set_plane_for_test_fbc(). Otherwise plane-0
is always enabled even you tried to test plane-1 or 2 which causes
unexpected result.
> + }
> +
> + plane = NULL;
Doesn't matter to make it NULL, as this variable stays in stack.
> + igt_display_reset(&drm.display);
Good to have it, but not mandatory.
- Bhanu
> +}
> +
> static void update_wanted_crc(const struct test_mode *t, igt_crc_t *crc)
> {
> if (t->screen == SCREEN_PRIM)
> @@ -4936,6 +5028,20 @@ igt_main_args("", long_options, help_str, opt_handler, NULL)
> }
> }
>
> + t.pipes = PIPE_SINGLE;
> + t.feature = FEATURE_FBC;
> + t.screen = SCREEN_PRIM;
> + t.fbs = FBS_INDIVIDUAL;
> + t.format = FORMAT_DEFAULT;
> + /* Make sure nothing is using these values. */
> + t.flip = -1;
> + t.method = -1;
> + t.tiling = opt.tiling;
> +
> + igt_subtest_f("plane-fbc-rte") {
> + plane_fbc_rte_subtest(&t);
> + }
> +
> TEST_MODE_ITER_BEGIN(t)
>
> igt_subtest_f("%s-%s-%s-%s-%s-draw-%s",
^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for tests/kms_frontbuffer_tracking: Extend the test to enable FBC for each plane (rev8)
2023-11-03 3:27 [igt-dev] [PATCH i-g-t v6] tests/kms_frontbuffer_tracking: Extend the test to enable FBC for each plane Nidhi Gupta
` (2 preceding siblings ...)
2023-11-03 15:41 ` [igt-dev] [PATCH i-g-t v6] tests/kms_frontbuffer_tracking: Extend the test to enable FBC for each plane Modem, Bhanuprakash
@ 2023-11-03 23:50 ` Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2023-11-03 23:50 UTC (permalink / raw)
To: Nidhi Gupta; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100303 bytes --]
== Series Details ==
Series: tests/kms_frontbuffer_tracking: Extend the test to enable FBC for each plane (rev8)
URL : https://patchwork.freedesktop.org/series/123724/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13833_full -> IGTPW_10111_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/index.html
Participating hosts (11 -> 11)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_10111_full:
### IGT changes ###
#### Possible regressions ####
* {igt@kms_frontbuffer_tracking@plane-fbc-rte} (NEW):
- shard-mtlp: NOTRUN -> [SKIP][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-8/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
- shard-rkl: NOTRUN -> [SKIP][2]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
- shard-dg1: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg1-17/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
- shard-tglu: NOTRUN -> [SKIP][4]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-tglu-6/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
New tests
---------
New tests have been introduced between CI_DRM_13833_full and IGTPW_10111_full:
### New IGT tests (1) ###
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- Statuses : 7 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_10111_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][5] ([i915#8411])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-11/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@drm_fdinfo@busy-check-all@vecs1:
- shard-dg2: NOTRUN -> [SKIP][6] ([i915#8414]) +12 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-11/igt@drm_fdinfo@busy-check-all@vecs1.html
* igt@drm_fdinfo@virtual-busy-idle:
- shard-mtlp: NOTRUN -> [SKIP][7] ([i915#8414])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-5/igt@drm_fdinfo@virtual-busy-idle.html
* igt@fbdev@unaligned-read:
- shard-rkl: [PASS][8] -> [SKIP][9] ([i915#2582])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-7/igt@fbdev@unaligned-read.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@fbdev@unaligned-read.html
* igt@gem_busy@semaphore:
- shard-dg2: NOTRUN -> [SKIP][10] ([i915#3936])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-6/igt@gem_busy@semaphore.html
* igt@gem_ccs@suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][11] ([i915#7957])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: [PASS][12] -> [INCOMPLETE][13] ([i915#7297])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-dg2-7/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-1/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_close_race@multigpu-basic-process:
- shard-tglu: NOTRUN -> [SKIP][14] ([i915#7697])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-tglu-2/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg2: NOTRUN -> [SKIP][15] ([i915#7697]) +2 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-11/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-set-pat:
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#8562])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-11/igt@gem_create@create-ext-set-pat.html
- shard-rkl: NOTRUN -> [SKIP][17] ([i915#8562])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-1/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-tglu: [PASS][18] -> [FAIL][19] ([i915#6268])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-tglu-2/igt@gem_ctx_exec@basic-nohangcheck.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-tglu-4/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-mtlp: NOTRUN -> [SKIP][20] ([i915#8555])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-7/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg2: NOTRUN -> [SKIP][21] ([i915#8555])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-5/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1:
- shard-mtlp: NOTRUN -> [SKIP][22] ([i915#5882]) +5 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-7/igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg2: NOTRUN -> [SKIP][23] ([i915#280])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-7/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@in-flight-10ms:
- shard-mtlp: NOTRUN -> [ABORT][24] ([i915#9414])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-7/igt@gem_eio@in-flight-10ms.html
* igt@gem_eio@in-flight-suspend:
- shard-mtlp: [PASS][25] -> [FAIL][26] ([i915#5115])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-mtlp-8/igt@gem_eio@in-flight-suspend.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-8/igt@gem_eio@in-flight-suspend.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [PASS][27] -> [FAIL][28] ([i915#5784])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-dg1-18/igt@gem_eio@unwedge-stress.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg1-13/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@bonded-sync:
- shard-mtlp: NOTRUN -> [SKIP][29] ([i915#4771])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-5/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@parallel:
- shard-rkl: NOTRUN -> [SKIP][30] ([i915#4525]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-4/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_capture@capture-invisible@lmem0:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#6334]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-11/igt@gem_exec_capture@capture-invisible@lmem0.html
* igt@gem_exec_capture@many-4k-incremental:
- shard-dg2: NOTRUN -> [FAIL][32] ([i915#9606])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-6/igt@gem_exec_capture@many-4k-incremental.html
* igt@gem_exec_endless@dispatch@ccs1:
- shard-dg2: [PASS][33] -> [TIMEOUT][34] ([i915#7016])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-dg2-6/igt@gem_exec_endless@dispatch@ccs1.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-11/igt@gem_exec_endless@dispatch@ccs1.html
* igt@gem_exec_fair@basic-none-rrul:
- shard-dg1: NOTRUN -> [SKIP][35] ([i915#3539] / [i915#4852]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg1-17/igt@gem_exec_fair@basic-none-rrul.html
- shard-mtlp: NOTRUN -> [SKIP][36] ([i915#4473] / [i915#4771])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-7/igt@gem_exec_fair@basic-none-rrul.html
* igt@gem_exec_fair@basic-none-rrul@rcs0:
- shard-rkl: NOTRUN -> [FAIL][37] ([i915#2842])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-1/igt@gem_exec_fair@basic-none-rrul@rcs0.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-glk: NOTRUN -> [FAIL][38] ([i915#2842])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-glk4/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-none-solo:
- shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4473])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-5/igt@gem_exec_fair@basic-none-solo.html
* igt@gem_exec_fair@basic-sync:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#3539]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-5/igt@gem_exec_fair@basic-sync.html
* igt@gem_exec_fence@submit3:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#4812])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-7/igt@gem_exec_fence@submit3.html
* igt@gem_exec_fence@submit67:
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4812])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-6/igt@gem_exec_fence@submit67.html
* igt@gem_exec_flush@basic-uc-pro-default:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#3539] / [i915#4852]) +7 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-1/igt@gem_exec_flush@basic-uc-pro-default.html
* igt@gem_exec_reloc@basic-gtt-cpu-active:
- shard-rkl: [PASS][44] -> [SKIP][45] ([i915#3281]) +8 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-cpu-active.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-1/igt@gem_exec_reloc@basic-gtt-cpu-active.html
* igt@gem_exec_reloc@basic-gtt-cpu-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#3281]) +4 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-2/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html
* igt@gem_exec_reloc@basic-gtt-read:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#3281]) +13 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-11/igt@gem_exec_reloc@basic-gtt-read.html
* igt@gem_exec_reloc@basic-write-cpu-active:
- shard-dg1: NOTRUN -> [SKIP][48] ([i915#3281]) +3 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg1-17/igt@gem_exec_reloc@basic-write-cpu-active.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-rkl: NOTRUN -> [SKIP][49] ([i915#3281]) +2 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-7/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#4537] / [i915#4812])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-11/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_exec_suspend@basic-s4-devices@lmem0:
- shard-dg2: NOTRUN -> [ABORT][51] ([i915#7975] / [i915#8213])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-7/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
* igt@gem_exec_suspend@basic-s4-devices@smem:
- shard-tglu: [PASS][52] -> [ABORT][53] ([i915#7975] / [i915#8213])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-tglu-2/igt@gem_exec_suspend@basic-s4-devices@smem.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html
* igt@gem_fence_thrash@bo-copy:
- shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4860]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-4/igt@gem_fence_thrash@bo-copy.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#4860]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-6/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_gtt_cpu_tlb:
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4077]) +7 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-2/igt@gem_gtt_cpu_tlb.html
* igt@gem_lmem_swapping@heavy-random:
- shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4613]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-4/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@massive-random:
- shard-glk: NOTRUN -> [SKIP][58] ([fdo#109271] / [i915#4613])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-glk9/igt@gem_lmem_swapping@massive-random.html
- shard-rkl: NOTRUN -> [SKIP][59] ([i915#4613])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-2/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@parallel-random-engines:
- shard-apl: NOTRUN -> [SKIP][60] ([fdo#109271] / [i915#4613])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-apl1/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_mmap@bad-object:
- shard-dg1: NOTRUN -> [SKIP][61] ([i915#4083]) +4 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg1-13/igt@gem_mmap@bad-object.html
* igt@gem_mmap@bad-size:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4083]) +6 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-7/igt@gem_mmap@bad-size.html
* igt@gem_mmap@short-mmap:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#4083]) +4 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-2/igt@gem_mmap@short-mmap.html
* igt@gem_mmap_gtt@cpuset-big-copy:
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#4077]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg1-16/igt@gem_mmap_gtt@cpuset-big-copy.html
* igt@gem_mmap_wc@set-cache-level:
- shard-rkl: [PASS][65] -> [SKIP][66] ([i915#1850])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-2/igt@gem_mmap_wc@set-cache-level.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@gem_mmap_wc@set-cache-level.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#3282]) +2 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-1/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-rkl: [PASS][68] -> [SKIP][69] ([i915#3282]) +5 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads.html
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-1/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_pread@self:
- shard-rkl: NOTRUN -> [SKIP][70] ([i915#3282])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-2/igt@gem_pread@self.html
* igt@gem_pread@snoop:
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#3282]) +5 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-6/igt@gem_pread@snoop.html
* igt@gem_pxp@create-valid-protected-context:
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4270])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-7/igt@gem_pxp@create-valid-protected-context.html
* igt@gem_pxp@protected-encrypted-src-copy-not-readible:
- shard-rkl: NOTRUN -> [SKIP][73] ([i915#4270])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-dg2: NOTRUN -> [SKIP][74] ([i915#4270]) +5 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-1/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
- shard-dg1: NOTRUN -> [SKIP][75] ([i915#4270]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg1-15/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][76] ([i915#8428]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-8/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html
* igt@gem_render_copy@yf-tiled-to-vebox-linear:
- shard-rkl: NOTRUN -> [SKIP][77] ([i915#768])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@gem_render_copy@yf-tiled-to-vebox-linear.html
* igt@gem_render_tiled_blits@basic:
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#4079])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg1-17/igt@gem_render_tiled_blits@basic.html
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#4079])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-8/igt@gem_render_tiled_blits@basic.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#4079]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-5/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_softpin@evict-snoop:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#4885])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-2/igt@gem_softpin@evict-snoop.html
* igt@gem_tiled_wb:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#4077]) +8 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-2/igt@gem_tiled_wb.html
* igt@gem_unfence_active_buffers:
- shard-mtlp: NOTRUN -> [SKIP][83] ([i915#4879])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-7/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#3297]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-7/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#3297] / [i915#4880]) +2 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-11/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@mmap-offset-banned@gtt:
- shard-mtlp: NOTRUN -> [SKIP][86] ([i915#3297])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-7/igt@gem_userptr_blits@mmap-offset-banned@gtt.html
* igt@gem_userptr_blits@vma-merge:
- shard-dg2: NOTRUN -> [FAIL][87] ([i915#3318])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-5/igt@gem_userptr_blits@vma-merge.html
* igt@gem_workarounds@reset-fd:
- shard-mtlp: [PASS][88] -> [ABORT][89] ([i915#9414])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-mtlp-1/igt@gem_workarounds@reset-fd.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-2/igt@gem_workarounds@reset-fd.html
* igt@gen7_exec_parse@basic-offset:
- shard-dg2: NOTRUN -> [SKIP][90] ([fdo#109289]) +6 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-11/igt@gen7_exec_parse@basic-offset.html
* igt@gen7_exec_parse@basic-rejected:
- shard-dg1: NOTRUN -> [SKIP][91] ([fdo#109289])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg1-19/igt@gen7_exec_parse@basic-rejected.html
* igt@gen7_exec_parse@batch-without-end:
- shard-rkl: NOTRUN -> [SKIP][92] ([fdo#109289])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-4/igt@gen7_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@allowed-all:
- shard-rkl: [PASS][93] -> [SKIP][94] ([i915#2527]) +2 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-5/igt@gen9_exec_parse@allowed-all.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-2/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@batch-without-end:
- shard-tglu: NOTRUN -> [SKIP][95] ([i915#2527] / [i915#2856])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-tglu-4/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@bb-start-far:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#2856]) +5 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-11/igt@gen9_exec_parse@bb-start-far.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-mtlp: NOTRUN -> [SKIP][97] ([i915#2856]) +2 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-5/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@shadow-peek:
- shard-rkl: NOTRUN -> [SKIP][98] ([i915#2527]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-7/igt@gen9_exec_parse@shadow-peek.html
* igt@gen9_exec_parse@unaligned-access:
- shard-dg1: NOTRUN -> [SKIP][99] ([i915#2527])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg1-16/igt@gen9_exec_parse@unaligned-access.html
* igt@i915_module_load@load:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#6227])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-2/igt@i915_module_load@load.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#7091])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-6/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
- shard-mtlp: NOTRUN -> [SKIP][102] ([i915#8436])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-7/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_pm_rc6_residency@rc6-idle@rcs0:
- shard-tglu: NOTRUN -> [WARN][103] ([i915#2681]) +3 other tests warn
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
* igt@i915_pm_rpm@gem-execbuf-stress-pc8:
- shard-dg2: NOTRUN -> [SKIP][104] ([fdo#109293] / [fdo#109506])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-11/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
- shard-dg1: NOTRUN -> [SKIP][105] ([fdo#109293] / [fdo#109506])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg1-15/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
- shard-mtlp: NOTRUN -> [SKIP][106] ([fdo#109293])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-5/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
* igt@i915_pm_rps@thresholds-idle@gt0:
- shard-mtlp: NOTRUN -> [SKIP][107] ([i915#8925])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-2/igt@i915_pm_rps@thresholds-idle@gt0.html
* igt@i915_pm_rps@thresholds-idle@gt1:
- shard-mtlp: NOTRUN -> [SKIP][108] ([i915#3555] / [i915#8925])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-2/igt@i915_pm_rps@thresholds-idle@gt1.html
* igt@i915_pm_rps@thresholds-park@gt0:
- shard-dg2: NOTRUN -> [SKIP][109] ([i915#8925])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-7/igt@i915_pm_rps@thresholds-park@gt0.html
* igt@i915_pm_rps@thresholds@gt0:
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#8925])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg1-13/igt@i915_pm_rps@thresholds@gt0.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][111] ([i915#4387])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-11/igt@i915_pm_sseu@full-enable.html
* igt@i915_power@sanity:
- shard-rkl: [PASS][112] -> [SKIP][113] ([i915#7984])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-5/igt@i915_power@sanity.html
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-1/igt@i915_power@sanity.html
* igt@i915_query@hwconfig_table:
- shard-dg1: NOTRUN -> [SKIP][114] ([i915#6245])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg1-17/igt@i915_query@hwconfig_table.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-tglu: NOTRUN -> [SKIP][115] ([fdo#109303])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-tglu-9/igt@i915_query@query-topology-known-pci-ids.html
- shard-mtlp: NOTRUN -> [SKIP][116] ([fdo#109303])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-1/igt@i915_query@query-topology-known-pci-ids.html
* igt@i915_query@query-topology-unsupported:
- shard-dg2: NOTRUN -> [SKIP][117] ([fdo#109302])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-11/igt@i915_query@query-topology-unsupported.html
- shard-rkl: NOTRUN -> [SKIP][118] ([fdo#109302])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-1/igt@i915_query@query-topology-unsupported.html
* igt@i915_selftest@mock@memory_region:
- shard-dg1: NOTRUN -> [DMESG-WARN][119] ([i915#9311])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg1-16/igt@i915_selftest@mock@memory_region.html
* igt@i915_suspend@debugfs-reader:
- shard-dg2: [PASS][120] -> [FAIL][121] ([fdo#103375])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-dg2-1/igt@i915_suspend@debugfs-reader.html
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-5/igt@i915_suspend@debugfs-reader.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#4212])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-1/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-mtlp: NOTRUN -> [SKIP][123] ([i915#4212])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-5/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-dg2: NOTRUN -> [SKIP][124] ([i915#4212] / [i915#5608])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-1/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_async_flips@crc@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [FAIL][125] ([i915#8247]) +1 other test fail
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-5/igt@kms_async_flips@crc@pipe-a-edp-1.html
* igt@kms_async_flips@crc@pipe-d-dp-4:
- shard-dg2: NOTRUN -> [FAIL][126] ([i915#8247]) +3 other tests fail
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-11/igt@kms_async_flips@crc@pipe-d-dp-4.html
* igt@kms_async_flips@crc@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [DMESG-FAIL][127] ([i915#8561]) +1 other test dmesg-fail
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-5/igt@kms_async_flips@crc@pipe-d-edp-1.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-rkl: NOTRUN -> [SKIP][128] ([i915#9531])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#1769] / [i915#3555])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_atomic_transition@plane-use-after-nonblocking-unbind:
- shard-rkl: NOTRUN -> [SKIP][130] ([i915#1845] / [i915#4098]) +12 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@kms_atomic_transition@plane-use-after-nonblocking-unbind.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][131] ([i915#5286]) +2 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-7/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][132] ([fdo#111615] / [i915#5286])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-tglu-7/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][133] ([fdo#111614]) +4 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-11/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-dg1: NOTRUN -> [SKIP][134] ([i915#5286])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg1-14/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][135] ([i915#4538] / [i915#5286])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@linear-32bpp-rotate-180:
- shard-mtlp: [PASS][136] -> [FAIL][137] ([i915#5138])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-mtlp-5/igt@kms_big_fb@linear-32bpp-rotate-180.html
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-7/igt@kms_big_fb@linear-32bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][138] ([fdo#111614]) +1 other test skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-7/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu: [PASS][139] -> [FAIL][140] ([i915#3743]) +1 other test fail
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-tglu-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-tglu-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-apl: NOTRUN -> [SKIP][141] ([fdo#109271]) +35 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-apl7/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#5190]) +17 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-1/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][143] ([fdo#111614] / [i915#3638]) +2 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-1/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#4538] / [i915#5190]) +6 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-7/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][145] ([fdo#110723]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-1/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: NOTRUN -> [SKIP][146] ([fdo#111615]) +7 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#4538]) +4 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_joiner@basic:
- shard-tglu: NOTRUN -> [SKIP][148] ([i915#2705])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-tglu-6/igt@kms_big_joiner@basic.html
- shard-mtlp: NOTRUN -> [SKIP][149] ([i915#2705])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-8/igt@kms_big_joiner@basic.html
* igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#4087]) +3 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-5/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-tglu: NOTRUN -> [SKIP][151] ([fdo#111827])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-tglu-7/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_color@ctm-max:
- shard-glk: NOTRUN -> [SKIP][152] ([fdo#109271]) +48 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-glk2/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_color@degamma:
- shard-mtlp: NOTRUN -> [SKIP][153] ([fdo#111827]) +1 other test skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-4/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_color@gamma:
- shard-dg2: NOTRUN -> [SKIP][154] ([fdo#111827]) +1 other test skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-6/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#7828])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-7/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#7828]) +13 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-11/igt@kms_chamelium_frames@hdmi-crc-multiple.html
- shard-dg1: NOTRUN -> [SKIP][157] ([i915#7828]) +2 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg1-15/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
- shard-mtlp: NOTRUN -> [SKIP][158] ([i915#7828]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-8/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
- shard-tglu: NOTRUN -> [SKIP][159] ([i915#7828])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-tglu-8/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
* igt@kms_color@ctm-0-50@pipe-b:
- shard-rkl: [PASS][160] -> [SKIP][161] ([i915#4098]) +3 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-6/igt@kms_color@ctm-0-50@pipe-b.html
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@kms_color@ctm-0-50@pipe-b.html
* igt@kms_color@ctm-negative@pipe-c:
- shard-rkl: NOTRUN -> [SKIP][162] ([i915#4098]) +21 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@kms_color@ctm-negative@pipe-c.html
* igt@kms_color@deep-color:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#3555]) +9 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-7/igt@kms_color@deep-color.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][164] ([i915#3299]) +1 other test skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-11/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@legacy@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][165] ([i915#7173])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-11/igt@kms_content_protection@legacy@pipe-a-dp-4.html
* igt@kms_content_protection@srm:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#7118])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-2/igt@kms_content_protection@srm.html
- shard-dg1: NOTRUN -> [SKIP][167] ([i915#7116])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg1-16/igt@kms_content_protection@srm.html
- shard-mtlp: NOTRUN -> [SKIP][168] ([i915#6944])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-6/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#7118]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-1/igt@kms_content_protection@type1.html
- shard-mtlp: NOTRUN -> [SKIP][170] ([i915#3555] / [i915#6944])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-5/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-mtlp: NOTRUN -> [SKIP][171] ([i915#3359]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#3359]) +2 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-7/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-rkl: NOTRUN -> [SKIP][173] ([i915#3359])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-4/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg1: NOTRUN -> [SKIP][174] ([i915#3359])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg1-14/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][175] ([fdo#109274] / [fdo#111767] / [i915#5354])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
- shard-mtlp: NOTRUN -> [SKIP][176] ([fdo#111767] / [i915#3546])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#4103] / [i915#4213] / [i915#5608])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-dg1: NOTRUN -> [SKIP][178] ([i915#4103] / [i915#4213])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg1-15/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-rkl: NOTRUN -> [SKIP][179] ([fdo#111825]) +2 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-7/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
- shard-mtlp: NOTRUN -> [SKIP][180] ([i915#3546]) +3 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-2/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-snb: NOTRUN -> [SKIP][181] ([fdo#109271]) +24 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-snb4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-dg2: NOTRUN -> [SKIP][182] ([fdo#109274] / [i915#5354]) +8 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-rkl: [PASS][183] -> [SKIP][184] ([i915#1845] / [i915#4098]) +18 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [PASS][185] -> [FAIL][186] ([i915#2346]) +1 other test fail
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#8588])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-11/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-dg1: NOTRUN -> [SKIP][188] ([i915#8588])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg1-17/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-mtlp: NOTRUN -> [SKIP][189] ([i915#8588])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-8/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][190] ([i915#3804])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#8812])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-11/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-with-formats:
- shard-dg2: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#3840])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-6/igt@kms_dsc@dsc-with-formats.html
* igt@kms_fence_pin_leak:
- shard-dg2: NOTRUN -> [SKIP][193] ([i915#4881])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-11/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-dg2: NOTRUN -> [SKIP][194] ([fdo#109274] / [fdo#111767]) +1 other test skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-6/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg1: NOTRUN -> [SKIP][195] ([i915#8381])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg1-16/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][196] ([i915#3637]) +2 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-4/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-dg2: NOTRUN -> [SKIP][197] ([fdo#109274]) +2 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-2/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@flip-vs-suspend:
- shard-rkl: NOTRUN -> [SKIP][198] ([i915#3637] / [i915#4098]) +8 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend-interruptible@b-vga1:
- shard-snb: NOTRUN -> [DMESG-WARN][199] ([i915#8841]) +4 other tests dmesg-warn
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-snb7/igt@kms_flip@flip-vs-suspend-interruptible@b-vga1.html
* igt@kms_flip@flip-vs-suspend-interruptible@d-edp1:
- shard-mtlp: [PASS][200] -> [FAIL][201] ([fdo#103375]) +5 other tests fail
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-mtlp-2/igt@kms_flip@flip-vs-suspend-interruptible@d-edp1.html
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-8/igt@kms_flip@flip-vs-suspend-interruptible@d-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][202] ([i915#2672]) +5 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#2672]) +8 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
- shard-dg1: NOTRUN -> [SKIP][204] ([i915#2587] / [i915#2672]) +1 other test skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][205] ([i915#3555]) +10 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][206] ([i915#2672]) +2 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][207] ([i915#2672] / [i915#3555])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-dg2: NOTRUN -> [SKIP][208] ([fdo#109285])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-6/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt:
- shard-dg2: [PASS][209] -> [FAIL][210] ([i915#6880])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt:
- shard-rkl: [PASS][211] -> [SKIP][212] ([i915#1849] / [i915#4098]) +9 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen:
- shard-dg2: NOTRUN -> [FAIL][213] ([i915#6880])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][214] ([i915#8708]) +2 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][215] ([fdo#111825] / [i915#1825]) +11 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][216] ([i915#8708]) +19 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-rte:
- shard-rkl: NOTRUN -> [SKIP][217] ([i915#1849] / [i915#4098]) +9 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-tglu: NOTRUN -> [SKIP][218] ([fdo#109280]) +5 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-tglu-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-dg1: NOTRUN -> [SKIP][219] ([i915#5439])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#5460])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move:
- shard-rkl: NOTRUN -> [SKIP][221] ([i915#3023]) +6 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#5354]) +26 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-mtlp: NOTRUN -> [SKIP][223] ([i915#1825]) +26 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff:
- shard-dg1: NOTRUN -> [SKIP][224] ([fdo#111825]) +14 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#3458]) +15 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][226] ([i915#3458]) +1 other test skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-rte:
- shard-tglu: NOTRUN -> [SKIP][227] ([fdo#110189]) +2 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-1p-rte.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][228] ([i915#8708]) +9 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-rkl: NOTRUN -> [SKIP][229] ([i915#3555] / [i915#8228])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-1/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#3555] / [i915#8228]) +1 other test skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-6/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_invalid_mode@int-max-clock:
- shard-rkl: NOTRUN -> [SKIP][231] ([i915#3555] / [i915#4098]) +1 other test skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@kms_invalid_mode@int-max-clock.html
* igt@kms_panel_fitting@legacy:
- shard-dg2: NOTRUN -> [SKIP][232] ([i915#6301])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-5/igt@kms_panel_fitting@legacy.html
* igt@kms_plane@pixel-format:
- shard-rkl: NOTRUN -> [SKIP][233] ([i915#4098] / [i915#8825])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@kms_plane@pixel-format.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-c-dp-1:
- shard-apl: NOTRUN -> [FAIL][234] ([i915#4573]) +1 other test fail
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-apl6/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-c-dp-1.html
* igt@kms_plane_lowres@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#8821])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-11/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#8806])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-6/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][237] ([i915#3555] / [i915#8806])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-1/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-rkl: NOTRUN -> [SKIP][238] ([i915#6953] / [i915#8152]) +1 other test skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-rkl: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#4098] / [i915#8152])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][240] ([i915#5176] / [i915#9423]) +3 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg1-17/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][241] ([i915#5235]) +11 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5:
- shard-rkl: NOTRUN -> [SKIP][242] ([i915#4098] / [i915#6953] / [i915#8152])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][243] ([i915#5235]) +2 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-2/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][244] ([i915#3555] / [i915#5235])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-2/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75:
- shard-rkl: NOTRUN -> [SKIP][245] ([i915#3555] / [i915#4098] / [i915#6953] / [i915#8152])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20:
- shard-rkl: NOTRUN -> [SKIP][246] ([i915#8152]) +1 other test skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][247] ([i915#5235]) +3 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-3.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][248] ([i915#5235]) +3 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_prime@d3hot:
- shard-dg2: NOTRUN -> [SKIP][249] ([i915#6524] / [i915#6805])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-5/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
- shard-dg1: NOTRUN -> [SKIP][250] ([i915#658])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg1-19/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
- shard-apl: NOTRUN -> [SKIP][251] ([fdo#109271] / [i915#658])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-apl2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@plane-move-sf-dmg-area:
- shard-dg1: NOTRUN -> [SKIP][252] ([fdo#111068] / [i915#658])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg1-19/igt@kms_psr2_sf@plane-move-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#658]) +1 other test skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-glk: NOTRUN -> [SKIP][254] ([fdo#109271] / [i915#658])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-glk8/igt@kms_psr2_su@page_flip-nv12.html
- shard-rkl: NOTRUN -> [SKIP][255] ([fdo#111068] / [i915#658]) +1 other test skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-4/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@psr2_cursor_render:
- shard-dg1: NOTRUN -> [SKIP][256] ([i915#1072] / [i915#4078]) +3 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg1-16/igt@kms_psr@psr2_cursor_render.html
* igt@kms_psr@psr2_sprite_blt:
- shard-dg2: NOTRUN -> [SKIP][257] ([i915#1072]) +7 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-2/igt@kms_psr@psr2_sprite_blt.html
* igt@kms_psr@psr2_sprite_plane_move:
- shard-rkl: NOTRUN -> [SKIP][258] ([i915#1072]) +3 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-4/igt@kms_psr@psr2_sprite_plane_move.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg2: NOTRUN -> [SKIP][259] ([i915#5461] / [i915#658])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-mtlp: NOTRUN -> [SKIP][260] ([i915#4235]) +1 other test skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-8/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][261] ([fdo#111615] / [i915#5289])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-dg2: NOTRUN -> [SKIP][262] ([i915#4235]) +1 other test skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-7/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_vrr@flip-dpms:
- shard-dg1: NOTRUN -> [SKIP][263] ([i915#3555]) +1 other test skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg1-15/igt@kms_vrr@flip-dpms.html
- shard-mtlp: NOTRUN -> [SKIP][264] ([i915#3555] / [i915#8808])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-5/igt@kms_vrr@flip-dpms.html
* igt@perf@global-sseu-config:
- shard-dg2: NOTRUN -> [SKIP][265] ([i915#7387])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-10/igt@perf@global-sseu-config.html
* igt@perf@mi-rpc:
- shard-dg2: NOTRUN -> [SKIP][266] ([i915#2434])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-5/igt@perf@mi-rpc.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-dg1: NOTRUN -> [SKIP][267] ([fdo#109289] / [i915#2433])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg1-19/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@busy-double-start@rcs0:
- shard-dg1: NOTRUN -> [FAIL][268] ([i915#4349])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg1-17/igt@perf_pmu@busy-double-start@rcs0.html
* igt@perf_pmu@busy-double-start@vcs1:
- shard-mtlp: [PASS][269] -> [FAIL][270] ([i915#4349]) +2 other tests fail
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-mtlp-5/igt@perf_pmu@busy-double-start@vcs1.html
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-5/igt@perf_pmu@busy-double-start@vcs1.html
* igt@perf_pmu@cpu-hotplug:
- shard-dg2: NOTRUN -> [SKIP][271] ([i915#8850])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-6/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@frequency@gt0:
- shard-dg2: NOTRUN -> [FAIL][272] ([i915#6806])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-2/igt@perf_pmu@frequency@gt0.html
* igt@perf_pmu@rc6-all-gts:
- shard-dg2: NOTRUN -> [SKIP][273] ([i915#5608] / [i915#8516])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-11/igt@perf_pmu@rc6-all-gts.html
* igt@prime_vgem@basic-read:
- shard-rkl: [PASS][274] -> [SKIP][275] ([fdo#109295] / [i915#3291] / [i915#3708])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-5/igt@prime_vgem@basic-read.html
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-1/igt@prime_vgem@basic-read.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2: NOTRUN -> [SKIP][276] ([i915#3708])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-5/igt@prime_vgem@fence-read-hang.html
* igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted-signaled:
- shard-dg1: NOTRUN -> [FAIL][277] ([i915#9583])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg1-19/igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted-signaled.html
* igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted-submitted:
- shard-glk: NOTRUN -> [FAIL][278] ([i915#9583])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-glk5/igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted-submitted.html
- shard-dg2: NOTRUN -> [FAIL][279] ([i915#9583]) +2 other tests fail
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-10/igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted-submitted.html
- shard-rkl: NOTRUN -> [FAIL][280] ([i915#9583])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-2/igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted-submitted.html
* igt@syncobj_timeline@invalid-multi-wait-available-unsubmitted-signaled:
- shard-tglu: NOTRUN -> [FAIL][281] ([i915#9583])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-tglu-6/igt@syncobj_timeline@invalid-multi-wait-available-unsubmitted-signaled.html
- shard-mtlp: NOTRUN -> [FAIL][282] ([i915#9583])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-8/igt@syncobj_timeline@invalid-multi-wait-available-unsubmitted-signaled.html
* igt@syncobj_timeline@invalid-single-wait-all-available-unsubmitted:
- shard-dg1: NOTRUN -> [FAIL][283] ([i915#9582])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg1-18/igt@syncobj_timeline@invalid-single-wait-all-available-unsubmitted.html
* igt@v3d/v3d_job_submission@array-job-submission:
- shard-dg1: NOTRUN -> [SKIP][284] ([i915#2575]) +2 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg1-16/igt@v3d/v3d_job_submission@array-job-submission.html
* igt@v3d/v3d_perfmon@destroy-valid-perfmon:
- shard-mtlp: NOTRUN -> [SKIP][285] ([i915#2575]) +5 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-7/igt@v3d/v3d_perfmon@destroy-valid-perfmon.html
* igt@v3d/v3d_submit_cl@multiple-job-submission:
- shard-rkl: NOTRUN -> [SKIP][286] ([fdo#109315]) +3 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-1/igt@v3d/v3d_submit_cl@multiple-job-submission.html
* igt@v3d/v3d_submit_csd@job-perfmon:
- shard-dg2: NOTRUN -> [SKIP][287] ([i915#2575]) +14 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-6/igt@v3d/v3d_submit_csd@job-perfmon.html
* igt@vc4/vc4_perfmon@destroy-valid-perfmon:
- shard-rkl: NOTRUN -> [SKIP][288] ([i915#7711]) +3 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-4/igt@vc4/vc4_perfmon@destroy-valid-perfmon.html
* igt@vc4/vc4_perfmon@get-values-invalid-perfmon:
- shard-dg2: NOTRUN -> [SKIP][289] ([i915#7711]) +6 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-10/igt@vc4/vc4_perfmon@get-values-invalid-perfmon.html
* igt@vc4/vc4_purgeable_bo@access-purged-bo-mem:
- shard-mtlp: NOTRUN -> [SKIP][290] ([i915#7711]) +3 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-6/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html
* igt@vc4/vc4_tiling@get-bad-modifier:
- shard-dg1: NOTRUN -> [SKIP][291] ([i915#7711]) +3 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg1-16/igt@vc4/vc4_tiling@get-bad-modifier.html
* igt@vc4/vc4_wait_bo@unused-bo-1ns:
- shard-tglu: NOTRUN -> [SKIP][292] ([i915#2575])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-tglu-7/igt@vc4/vc4_wait_bo@unused-bo-1ns.html
#### Possible fixes ####
* igt@device_reset@unbind-reset-rebind:
- shard-rkl: [FAIL][293] ([i915#4778]) -> [PASS][294]
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-5/igt@device_reset@unbind-reset-rebind.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-4/igt@device_reset@unbind-reset-rebind.html
* igt@drm_fdinfo@virtual-idle:
- shard-rkl: [FAIL][295] ([i915#7742]) -> [PASS][296]
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-7/igt@drm_fdinfo@virtual-idle.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@drm_fdinfo@virtual-idle.html
* igt@fbdev@info:
- shard-rkl: [SKIP][297] ([i915#1849] / [i915#2582]) -> [PASS][298]
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-5/igt@fbdev@info.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-1/igt@fbdev@info.html
* igt@fbdev@unaligned-write:
- shard-rkl: [SKIP][299] ([i915#2582]) -> [PASS][300]
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-5/igt@fbdev@unaligned-write.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-1/igt@fbdev@unaligned-write.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: [INCOMPLETE][301] ([i915#9364]) -> [PASS][302]
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-dg2-2/igt@gem_create@create-ext-cpu-access-big.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-5/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_persistence@engines-hang@bcs0:
- shard-rkl: [SKIP][303] ([i915#6252]) -> [PASS][304]
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-5/igt@gem_ctx_persistence@engines-hang@bcs0.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-1/igt@gem_ctx_persistence@engines-hang@bcs0.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-rkl: [FAIL][305] ([i915#2842]) -> [PASS][306]
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-7/igt@gem_exec_fair@basic-pace@rcs0.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-7/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gem_exec_params@no-bsd:
- shard-rkl: [SKIP][307] ([fdo#109283] / [fdo#109315]) -> [PASS][308]
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-5/igt@gem_exec_params@no-bsd.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@gem_exec_params@no-bsd.html
* igt@gem_exec_reloc@basic-gtt-read:
- shard-rkl: [SKIP][309] ([i915#3281]) -> [PASS][310] +4 other tests pass
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-read.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-read.html
* igt@gem_gtt_cpu_tlb:
- shard-rkl: [SKIP][311] ([fdo#109315]) -> [PASS][312] +19 other tests pass
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-5/igt@gem_gtt_cpu_tlb.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-7/igt@gem_gtt_cpu_tlb.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [TIMEOUT][313] ([i915#5493]) -> [PASS][314]
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-dg2-2/igt@gem_lmem_swapping@smem-oom@lmem0.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-2/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_readwrite@write-bad-handle:
- shard-rkl: [SKIP][315] ([i915#3282]) -> [PASS][316] +1 other test pass
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-7/igt@gem_readwrite@write-bad-handle.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@gem_readwrite@write-bad-handle.html
* igt@gen9_exec_parse@bb-start-far:
- shard-rkl: [SKIP][317] ([i915#2527]) -> [PASS][318] +1 other test pass
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-4/igt@gen9_exec_parse@bb-start-far.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@gen9_exec_parse@bb-start-far.html
* igt@i915_hangman@engine-engine-error@bcs0:
- shard-rkl: [SKIP][319] ([i915#9588]) -> [PASS][320]
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-5/igt@i915_hangman@engine-engine-error@bcs0.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-4/igt@i915_hangman@engine-engine-error@bcs0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [ABORT][321] ([i915#8489] / [i915#8668]) -> [PASS][322]
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-idle@vcs0:
- shard-rkl: [WARN][323] ([i915#2681]) -> [PASS][324]
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-4/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
* igt@i915_pm_rc6_residency@rc6-idle@vecs0:
- shard-dg1: [FAIL][325] ([i915#3591]) -> [PASS][326]
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [FAIL][327] ([i915#5138]) -> [PASS][328]
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_color@ctm-green-to-red@pipe-b:
- shard-rkl: [SKIP][329] ([i915#4098]) -> [PASS][330] +10 other tests pass
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-5/igt@kms_color@ctm-green-to-red@pipe-b.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-1/igt@kms_color@ctm-green-to-red@pipe-b.html
* igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions:
- shard-rkl: [SKIP][331] ([i915#1845] / [i915#4098]) -> [PASS][332] +25 other tests pass
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-5/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-4/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-apl: [FAIL][333] ([i915#2346]) -> [PASS][334]
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-mtlp: [ABORT][335] ([i915#9414]) -> [PASS][336] +2 other tests pass
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-mtlp-7/igt@kms_fbcon_fbt@fbc-suspend.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-2/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2:
- shard-glk: [FAIL][337] ([i915#79]) -> [PASS][338]
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-glk3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html
* igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary:
- shard-rkl: [SKIP][339] ([i915#1849] / [i915#4098]) -> [PASS][340] +7 other tests pass
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
* {igt@kms_plane@pixel-format@pipe-b}:
- shard-glk: [DMESG-FAIL][341] ([i915#118]) -> [PASS][342]
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-glk8/igt@kms_plane@pixel-format@pipe-b.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-glk4/igt@kms_plane@pixel-format@pipe-b.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][343] ([i915#8292]) -> [PASS][344]
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-tglu-7/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-tglu-3/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
* {igt@kms_pm_dc@dc6-dpms}:
- shard-tglu: [FAIL][345] ([i915#9295]) -> [PASS][346]
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-tglu-2/igt@kms_pm_dc@dc6-dpms.html
* {igt@kms_pm_dc@dc9-dpms}:
- shard-apl: [SKIP][347] ([fdo#109271]) -> [PASS][348]
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-apl6/igt@kms_pm_dc@dc9-dpms.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-apl6/igt@kms_pm_dc@dc9-dpms.html
* {igt@kms_pm_rpm@modeset-lpsp}:
- shard-dg1: [SKIP][349] ([i915#9519]) -> [PASS][350]
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-dg1-17/igt@kms_pm_rpm@modeset-lpsp.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg1-19/igt@kms_pm_rpm@modeset-lpsp.html
* {igt@kms_pm_rpm@modeset-non-lpsp}:
- shard-rkl: [SKIP][351] ([i915#9519]) -> [PASS][352] +2 other tests pass
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- shard-mtlp: [FAIL][353] ([i915#9196]) -> [PASS][354] +1 other test pass
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][355] ([i915#9196]) -> [PASS][356]
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-tglu-10/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-tglu-10/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
* igt@syncobj_timeline@etime-single-wait-all-for-submit-available-unsubmitted:
- shard-rkl: [SKIP][357] ([i915#2575]) -> [PASS][358] +4 other tests pass
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-5/igt@syncobj_timeline@etime-single-wait-all-for-submit-available-unsubmitted.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-1/igt@syncobj_timeline@etime-single-wait-all-for-submit-available-unsubmitted.html
#### Warnings ####
* igt@gem_ccs@ctrl-surf-copy:
- shard-rkl: [SKIP][359] ([i915#7957]) -> [SKIP][360] ([i915#3555]) +1 other test skip
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-5/igt@gem_ccs@ctrl-surf-copy.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-2/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-rkl: [SKIP][361] ([i915#4098] / [i915#9323]) -> [SKIP][362] ([i915#7957])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-4/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_lmem_swapping@verify:
- shard-rkl: [SKIP][363] -> [SKIP][364] ([i915#4613])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-5/igt@gem_lmem_swapping@verify.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-2/igt@gem_lmem_swapping@verify.html
* igt@i915_pm_rpm@gem-execbuf-stress-pc8:
- shard-rkl: [SKIP][365] -> [SKIP][366] ([fdo#109293] / [fdo#109506])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-5/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-1/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
* igt@i915_query@hwconfig_table:
- shard-rkl: [SKIP][367] ([fdo#109315]) -> [SKIP][368] ([i915#6245])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-5/igt@i915_query@hwconfig_table.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@i915_query@hwconfig_table.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-rkl: [SKIP][369] ([i915#1769] / [i915#3555]) -> [SKIP][370] ([i915#1845] / [i915#4098])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-rkl: [SKIP][371] ([i915#1845] / [i915#4098]) -> [SKIP][372] ([i915#1769] / [i915#3555])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-rkl: [SKIP][373] ([i915#4098]) -> [SKIP][374] ([i915#5286]) +5 other tests skip
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-5/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-7/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: [SKIP][375] ([i915#5286]) -> [SKIP][376] ([i915#4098]) +6 other tests skip
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-rkl: [SKIP][377] ([i915#1845] / [i915#4098]) -> [SKIP][378] ([fdo#111614] / [i915#3638]) +2 other tests skip
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-5/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-2/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-rkl: [SKIP][379] ([fdo#111614] / [i915#3638]) -> [SKIP][380] ([i915#1845] / [i915#4098]) +2 other tests skip
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-7/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-rkl: [SKIP][381] ([fdo#110723]) -> [SKIP][382] ([i915#1845] / [i915#4098]) +2 other tests skip
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-rkl: [SKIP][383] ([fdo#111615]) -> [SKIP][384] ([i915#1845] / [i915#4098])
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-1/igt@kms_big_fb@yf-tiled-addfb.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: [SKIP][385] ([i915#1845] / [i915#4098]) -> [SKIP][386] ([fdo#110723]) +4 other tests skip
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-rkl: [SKIP][387] ([fdo#109315]) -> [SKIP][388] ([fdo#110723]) +1 other test skip
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_busy@extended-modeset-hang-newfb-with-reset:
- shard-rkl: [SKIP][389] ([fdo#109315]) -> [SKIP][390] ([i915#1845] / [i915#4098]) +2 other tests skip
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-5/igt@kms_busy@extended-modeset-hang-newfb-with-reset.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@kms_busy@extended-modeset-hang-newfb-with-reset.html
* igt@kms_chamelium_hpd@hdmi-hpd-fast:
- shard-rkl: [SKIP][391] ([i915#2575]) -> [SKIP][392] ([i915#7828])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-5/igt@kms_chamelium_hpd@hdmi-hpd-fast.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@kms_chamelium_hpd@hdmi-hpd-fast.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-rkl: [SKIP][393] ([i915#3116]) -> [SKIP][394] ([i915#1845] / [i915#4098]) +1 other test skip
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-1.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@lic:
- shard-rkl: [SKIP][395] ([i915#1845] / [i915#4098]) -> [SKIP][396] ([i915#7118])
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-5/igt@kms_content_protection@lic.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-1/igt@kms_content_protection@lic.html
* igt@kms_content_protection@srm:
- shard-rkl: [SKIP][397] ([i915#2575]) -> [SKIP][398] ([i915#7118])
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-5/igt@kms_content_protection@srm.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-2/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-dg2: [SKIP][399] ([i915#7118]) -> [SKIP][400] ([i915#7118] / [i915#7162])
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-dg2-1/igt@kms_content_protection@type1.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-dg2-11/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-rkl: [SKIP][401] ([i915#7118]) -> [SKIP][402] ([i915#1845] / [i915#4098])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-4/igt@kms_content_protection@uevent.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-rkl: [SKIP][403] ([fdo#109279] / [i915#3359]) -> [SKIP][404] ([i915#4098])
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-7/igt@kms_cursor_crc@cursor-offscreen-512x170.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-rkl: [SKIP][405] ([i915#2575]) -> [SKIP][406] ([fdo#109279] / [i915#3359])
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-512x170.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-rkl: [SKIP][407] ([i915#3555]) -> [SKIP][408] ([i915#4098])
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-1/igt@kms_cursor_crc@cursor-random-max-size.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-rkl: [SKIP][409] ([i915#4098]) -> [SKIP][410] ([i915#3555]) +2 other tests skip
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-rkl: [SKIP][411] ([i915#3359]) -> [SKIP][412] ([i915#4098])
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: [SKIP][413] ([i915#1845] / [i915#4098]) -> [SKIP][414] ([fdo#111825]) +4 other tests skip
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-rkl: [SKIP][415] ([i915#1845] / [i915#4098]) -> [SKIP][416] ([i915#4103]) +1 other test skip
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-rkl: [SKIP][417] ([fdo#111825]) -> [SKIP][418] ([i915#1845] / [i915#4098]) +3 other tests skip
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-1/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-rkl: [SKIP][419] ([i915#1845] / [i915#4098]) -> [SKIP][420] ([fdo#111767] / [fdo#111825])
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-rkl: [SKIP][421] ([fdo#111767] / [fdo#111825]) -> [SKIP][422] ([i915#1845] / [i915#4098])
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-4/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-rkl: [SKIP][423] ([i915#4103]) -> [SKIP][424] ([i915#1845] / [i915#4098])
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-rkl: [SKIP][425] ([i915#2575]) -> [SKIP][426] ([i915#4098]) +1 other test skip
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-5/igt@kms_display_modes@mst-extended-mode-negative.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: [SKIP][427] ([fdo#110189] / [i915#3955]) -> [SKIP][428] ([i915#3955]) +1 other test skip
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-rkl: [SKIP][429] ([i915#2575]) -> [SKIP][430] ([fdo#111825]) +1 other test skip
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-5/igt@kms_flip@2x-wf_vblank-ts-check.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-2/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-rkl: [SKIP][431] ([fdo#109315]) -> [SKIP][432] ([i915#3555])
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt:
- shard-rkl: [SKIP][433] ([fdo#109315]) -> [SKIP][434] ([i915#1849] / [i915#4098]) +1 other test skip
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: [SKIP][435] ([fdo#111825] / [i915#1825]) -> [SKIP][436] ([i915#1849] / [i915#4098]) +34 other tests skip
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-rkl: [SKIP][437] ([fdo#109315]) -> [SKIP][438] ([i915#5439])
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][439] ([i915#1849] / [i915#4098]) -> [SKIP][440] ([fdo#111825] / [i915#1825]) +33 other tests skip
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render:
- shard-rkl: [SKIP][441] ([i915#3023]) -> [SKIP][442] ([i915#1849] / [i915#4098]) +18 other tests skip
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
- shard-rkl: [SKIP][443] ([i915#1849] / [i915#4098]) -> [SKIP][444] ([i915#3023]) +22 other tests skip
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-pri-indfb-multidraw:
- shard-rkl: [SKIP][445] ([fdo#109315]) -> [SKIP][446] ([fdo#111825] / [i915#1825]) +5 other tests skip
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-pri-indfb-multidraw.html
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-pri-indfb-multidraw.html
* igt@kms_hdr@static-toggle-dpms:
- shard-rkl: [SKIP][447] ([i915#3555] / [i915#8228]) -> [SKIP][448] ([i915#1845] / [i915#4098])
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-1/igt@kms_hdr@static-toggle-dpms.html
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-5/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-rkl: [SKIP][449] ([i915#1845] / [i915#4098]) -> [SKIP][450] ([i915#6301])
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-5/igt@kms_panel_fitting@atomic-fastset.html
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/shard-rkl-1/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
- shard-rkl: [SKIP][451] ([fdo#109315]) -> [SKIP][452] ([i915#658])
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13833/shard-rkl-5/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1011
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10111/index.html
[-- Attachment #2: Type: text/html, Size: 109933 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-11-03 23:50 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-03 3:27 [igt-dev] [PATCH i-g-t v6] tests/kms_frontbuffer_tracking: Extend the test to enable FBC for each plane Nidhi Gupta
2023-11-03 4:45 ` [igt-dev] ✓ CI.xeBAT: success for tests/kms_frontbuffer_tracking: Extend the test to enable FBC for each plane (rev8) Patchwork
2023-11-03 4:59 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork
2023-11-03 15:41 ` [igt-dev] [PATCH i-g-t v6] tests/kms_frontbuffer_tracking: Extend the test to enable FBC for each plane Modem, Bhanuprakash
2023-11-03 23:50 ` [igt-dev] ✓ Fi.CI.IGT: success for tests/kms_frontbuffer_tracking: Extend the test to enable FBC for each plane (rev8) Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox