* [i-g-t,0/2] tests/i915/pm_rc6_residency: Replace waitboost with
@ 2024-11-25 15:58 sk.anirban
2024-11-25 15:58 ` [i-g-t, 1/2] tests/i915/pm_rc6_residency: Replace waitboost with spinner and use sysfs to reach peak frequency sk.anirban
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: sk.anirban @ 2024-11-25 15:58 UTC (permalink / raw)
To: igt-dev; +Cc: anshuman.gupta, badal.nilawar, riana.tauro, Sk Anirban
From: Sk Anirban <sk.anirban@intel.com>
Leverage IGT spinner to trigger frequency scaling and
set RPS minimum frequency to RP0 for achieving peak frequency.
This method replaces the existing waitboost mechanism used
to reach maximum frequency.
Signed-off-by: Sk Anirban <sk.anirban@intel.com>
Sk Anirban (2):
tests/i915/pm_rc6_residency: Replace waitboost with spinner and use
sysfs to reach peak frequency
HAX: Add rc6-idle tests to fast feedback list
tests/intel-ci/fast-feedback.testlist | 1 +
tests/intel/i915_pm_rc6_residency.c | 98 ++++++++++++++++++---------
2 files changed, 67 insertions(+), 32 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 6+ messages in thread
* [i-g-t, 1/2] tests/i915/pm_rc6_residency: Replace waitboost with spinner and use sysfs to reach peak frequency
2024-11-25 15:58 [i-g-t,0/2] tests/i915/pm_rc6_residency: Replace waitboost with sk.anirban
@ 2024-11-25 15:58 ` sk.anirban
2024-11-25 15:58 ` [i-g-t,2/2] HAX: Add rc6-idle tests to fast feedback list sk.anirban
` (3 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: sk.anirban @ 2024-11-25 15:58 UTC (permalink / raw)
To: igt-dev; +Cc: anshuman.gupta, badal.nilawar, riana.tauro, Sk Anirban
From: Sk Anirban <sk.anirban@intel.com>
Leverage IGT spinner to trigger frequency scaling and
set RPS minimum frequency to RP0 for achieving peak frequency.
This method replaces the existing waitboost mechanism used
to reach maximum frequency.
Signed-off-by: Sk Anirban <sk.anirban@intel.com>
---
tests/intel/i915_pm_rc6_residency.c | 98 +++++++++++++++++++----------
1 file changed, 66 insertions(+), 32 deletions(-)
diff --git a/tests/intel/i915_pm_rc6_residency.c b/tests/intel/i915_pm_rc6_residency.c
index 7942d46d3..b646e181f 100644
--- a/tests/intel/i915_pm_rc6_residency.c
+++ b/tests/intel/i915_pm_rc6_residency.c
@@ -290,17 +290,6 @@ static unsigned int measured_usleep(unsigned int usec)
return igt_nsec_elapsed(&ts);
}
-static uint32_t batch_create(int fd)
-{
- const uint32_t bbe = MI_BATCH_BUFFER_END;
- uint32_t handle;
-
- handle = gem_create(fd, 4096);
- gem_write(fd, handle, 0, &bbe, sizeof(bbe));
-
- return handle;
-}
-
static int open_pmu(int i915, uint64_t config)
{
int fd;
@@ -312,45 +301,80 @@ static int open_pmu(int i915, uint64_t config)
return fd;
}
-#define WAITBOOST 0x1
+#define FREQUENT_BOOST 0x1
#define ONCE 0x2
static void sighandler(int sig)
{
}
-static void bg_load(int i915, uint32_t ctx_id, uint64_t engine_flags, unsigned int flags, unsigned long *ctl)
+static uint32_t get_freq(int dirfd, uint8_t id)
+{
+ uint32_t val;
+
+ igt_assert(igt_sysfs_rps_scanf(dirfd, id, "%u", &val) == 1);
+
+ return val;
+}
+
+static int set_freq(int dirfd, uint8_t id, uint32_t val)
+{
+ return igt_sysfs_rps_printf(dirfd, id, "%u", val);
+}
+
+static void bg_load(int i915, uint32_t ctx_id, uint64_t engine_flags,
+ unsigned int flags, unsigned long *ctl, unsigned int gt)
{
const bool has_execlists = intel_gen(intel_get_drm_devid(i915)) >= 8;
- struct drm_i915_gem_exec_object2 obj = {
- .handle = batch_create(i915),
- };
- struct drm_i915_gem_execbuffer2 execbuf = {
- .buffers_ptr = to_user_pointer(&obj),
- .buffer_count = 1,
- .flags = engine_flags,
- .rsvd1 = ctx_id,
- };
struct sigaction act = {
.sa_handler = sighandler
};
+ uint32_t rpn, rp0;
+ int sys;
+
+ igt_require_gem(i915);
+ sys = igt_sysfs_open(i915);
+ igt_require(sys != -1);
+ rpn = get_freq(sys, RPS_RPn_FREQ_MHZ);
+ rp0 = get_freq(sys, RPS_RP0_FREQ_MHZ);
sigaction(SIGINT, &act, NULL);
do {
uint64_t submit, wait, elapsed;
struct timespec tv = {};
+ const intel_ctx_t *ctx;
+ igt_spin_t *spin;
+ uint64_t ahnd;
- igt_nsec_elapsed(&tv);
+ ctx = intel_ctx_create_for_gt(i915, gt);
+ ahnd = get_reloc_ahnd(i915, ctx->id);
- gem_execbuf(i915, &execbuf);
+ igt_nsec_elapsed(&tv);
+ spin = igt_spin_new(i915,
+ .ahnd = ahnd,
+ .ctx = ctx,
+ .engine = engine_flags);
submit = igt_nsec_elapsed(&tv);
- if (flags & WAITBOOST) {
- gem_sync(i915, obj.handle);
+ if (flags & FREQUENT_BOOST) {
+ /* Set MIN freq to RP0 to achieve the peak freq */
+ igt_assert_lt(0, set_freq(sys, RPS_MIN_FREQ_MHZ, rp0));
+ igt_assert(gem_bo_busy(i915, spin->handle));
+
+ /* Restore the MIN freq back to default */
+ igt_assert_lt(0, set_freq(sys, RPS_MIN_FREQ_MHZ, rpn));
+ igt_spin_free(i915, spin);
+ gem_quiescent_gpu(i915);
+ put_ahnd(ahnd);
+ intel_ctx_destroy(i915, ctx);
if (flags & ONCE)
- flags &= ~WAITBOOST;
+ flags &= ~FREQUENT_BOOST;
} else {
- while (gem_bo_busy(i915, obj.handle))
- usleep(0);
+ igt_assert(gem_bo_busy(i915, spin->handle));
+ igt_assert_lt(0, set_freq(sys, RPS_MIN_FREQ_MHZ, rpn));
+ igt_spin_free(i915, spin);
+ gem_quiescent_gpu(i915);
+ put_ahnd(ahnd);
+ intel_ctx_destroy(i915, ctx);
}
wait = igt_nsec_elapsed(&tv);
@@ -398,8 +422,8 @@ static void rc6_idle(int i915, uint32_t ctx_id, uint64_t flags, unsigned int gt)
double power;
} phases[] = {
{ "normal", 0 },
- { "boost", WAITBOOST },
- { "once", WAITBOOST | ONCE },
+ { "boost", FREQUENT_BOOST },
+ { "once", FREQUENT_BOOST | ONCE },
};
struct power_sample sample[2];
unsigned long slept, cycles;
@@ -438,7 +462,7 @@ static void rc6_idle(int i915, uint32_t ctx_id, uint64_t flags, unsigned int gt)
for (int p = 0; p < ARRAY_SIZE(phases); p++) {
memset(done, 0, 2 * sizeof(*done));
igt_fork(child, 1) /* Setup up a very light load */
- bg_load(i915, ctx_id, flags, phases[p].flags, done);
+ bg_load(i915, ctx_id, flags, phases[p].flags, done, gt);
igt_power_get_energy(&gpu, &sample[0]);
cycles = -READ_ONCE(done[1]);
@@ -605,6 +629,11 @@ igt_main
i915 = drm_open_driver(DRIVER_INTEL);
}
+ igt_fixture
+ {
+ intel_allocator_multiprocess_start();
+ }
+
igt_subtest_with_dynamic("rc6-idle") {
const struct intel_execution_engine2 *e;
@@ -623,6 +652,11 @@ igt_main
}
}
+ igt_fixture
+ {
+ intel_allocator_multiprocess_stop();
+ }
+
igt_subtest_with_dynamic("rc6-fence") {
igt_require_gem(i915);
gem_quiescent_gpu(i915);
--
2.34.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [i-g-t,2/2] HAX: Add rc6-idle tests to fast feedback list
2024-11-25 15:58 [i-g-t,0/2] tests/i915/pm_rc6_residency: Replace waitboost with sk.anirban
2024-11-25 15:58 ` [i-g-t, 1/2] tests/i915/pm_rc6_residency: Replace waitboost with spinner and use sysfs to reach peak frequency sk.anirban
@ 2024-11-25 15:58 ` sk.anirban
2024-11-25 22:20 ` ✓ Xe.CI.BAT: success for tests/i915/pm_rc6_residency: Replace waitboost with Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: sk.anirban @ 2024-11-25 15:58 UTC (permalink / raw)
To: igt-dev; +Cc: anshuman.gupta, badal.nilawar, riana.tauro, Sk Anirban
From: Sk Anirban <sk.anirban@intel.com>
Add pm_rc6_residency-rc6@idle to i915-fast-feedback
Signed-off-by: Sk Anirban <sk.anirban@intel.com>
---
tests/intel-ci/fast-feedback.testlist | 1 +
1 file changed, 1 insertion(+)
diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist
index be0965110..e74b51080 100644
--- a/tests/intel-ci/fast-feedback.testlist
+++ b/tests/intel-ci/fast-feedback.testlist
@@ -53,6 +53,7 @@ igt@gem_wait@busy@all-engines
igt@gem_wait@wait@all-engines
igt@i915_getparams_basic@basic-eu-total
igt@i915_getparams_basic@basic-subslice-total
+igt@i915_pm_rc6_residency@rc6-idle
igt@i915_hangman@error-state-basic
igt@i915_pciid
igt@kms_addfb_basic@addfb25-4-tiled
--
2.34.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* ✓ Xe.CI.BAT: success for tests/i915/pm_rc6_residency: Replace waitboost with
2024-11-25 15:58 [i-g-t,0/2] tests/i915/pm_rc6_residency: Replace waitboost with sk.anirban
2024-11-25 15:58 ` [i-g-t, 1/2] tests/i915/pm_rc6_residency: Replace waitboost with spinner and use sysfs to reach peak frequency sk.anirban
2024-11-25 15:58 ` [i-g-t,2/2] HAX: Add rc6-idle tests to fast feedback list sk.anirban
@ 2024-11-25 22:20 ` Patchwork
2024-11-25 22:51 ` ✗ i915.CI.BAT: failure " Patchwork
2024-11-26 0:49 ` ✗ Xe.CI.Full: " Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2024-11-25 22:20 UTC (permalink / raw)
To: sk.anirban; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2326 bytes --]
== Series Details ==
Series: tests/i915/pm_rc6_residency: Replace waitboost with
URL : https://patchwork.freedesktop.org/series/141759/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8125_BAT -> XEIGTPW_12192_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 8)
------------------------------
Missing (1): bat-pvc-2
Known issues
------------
Here are the changes found in XEIGTPW_12192_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@unbind-rebind:
- bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#3517]) +2 other tests dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html
* igt@kms_pipe_crc_basic@nonblocking-crc@pipe-c-hdmi-a-3:
- bat-bmg-1: [PASS][3] -> [DMESG-WARN][4] ([Intel XE#877]) +1 other test dmesg-warn
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/bat-bmg-1/igt@kms_pipe_crc_basic@nonblocking-crc@pipe-c-hdmi-a-3.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/bat-bmg-1/igt@kms_pipe_crc_basic@nonblocking-crc@pipe-c-hdmi-a-3.html
* igt@kms_psr@psr-cursor-plane-move:
- bat-adlp-7: [PASS][5] -> [SKIP][6] ([Intel XE#455]) +3 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/bat-adlp-7/igt@kms_psr@psr-cursor-plane-move.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/bat-adlp-7/igt@kms_psr@psr-cursor-plane-move.html
[Intel XE#3517]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3517
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
Build changes
-------------
* IGT: IGT_8125 -> IGTPW_12192
IGTPW_12192: 12192
IGT_8125: fbfda23ba003aab3454436d95c233dcf5e3bee54 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2275-6510562075d8541c218e72188f9ef339f8ba371f: 6510562075d8541c218e72188f9ef339f8ba371f
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/index.html
[-- Attachment #2: Type: text/html, Size: 2949 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ i915.CI.BAT: failure for tests/i915/pm_rc6_residency: Replace waitboost with
2024-11-25 15:58 [i-g-t,0/2] tests/i915/pm_rc6_residency: Replace waitboost with sk.anirban
` (2 preceding siblings ...)
2024-11-25 22:20 ` ✓ Xe.CI.BAT: success for tests/i915/pm_rc6_residency: Replace waitboost with Patchwork
@ 2024-11-25 22:51 ` Patchwork
2024-11-26 0:49 ` ✗ Xe.CI.Full: " Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2024-11-25 22:51 UTC (permalink / raw)
To: sk.anirban; +Cc: igt-dev
== Series Details ==
Series: tests/i915/pm_rc6_residency: Replace waitboost with
URL : https://patchwork.freedesktop.org/series/141759/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8125 -> IGTPW_12192
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12192 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12192, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12192/index.html
Participating hosts (45 -> 44)
------------------------------
Missing (1): fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12192:
### IGT changes ###
#### Possible regressions ####
* igt@gem_lmem_swapping@parallel-random-engines@lmem0:
- bat-dg2-14: [PASS][1] -> [ABORT][2] +1 other test abort
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8125/bat-dg2-14/igt@gem_lmem_swapping@parallel-random-engines@lmem0.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12192/bat-dg2-14/igt@gem_lmem_swapping@parallel-random-engines@lmem0.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0:
- bat-mtlp-8: NOTRUN -> [FAIL][3] +5 other tests fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12192/bat-mtlp-8/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
* igt@i915_pm_rc6_residency@rc6-idle@gt1-vcs0:
- bat-mtlp-6: NOTRUN -> [FAIL][4] +5 other tests fail
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12192/bat-mtlp-6/igt@i915_pm_rc6_residency@rc6-idle@gt1-vcs0.html
* igt@i915_pm_rc6_residency@rc6-idle@gt1-vecs0:
- bat-arlh-2: NOTRUN -> [FAIL][5] +5 other tests fail
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12192/bat-arlh-2/igt@i915_pm_rc6_residency@rc6-idle@gt1-vecs0.html
- bat-arlh-3: NOTRUN -> [FAIL][6] +5 other tests fail
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12192/bat-arlh-3/igt@i915_pm_rc6_residency@rc6-idle@gt1-vecs0.html
- bat-arls-5: NOTRUN -> [FAIL][7] +5 other tests fail
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12192/bat-arls-5/igt@i915_pm_rc6_residency@rc6-idle@gt1-vecs0.html
* igt@i915_selftest@live@guc_hang:
- bat-adlp-9: [PASS][8] -> [ABORT][9]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8125/bat-adlp-9/igt@i915_selftest@live@guc_hang.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12192/bat-adlp-9/igt@i915_selftest@live@guc_hang.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0:
- {bat-mtlp-9}: NOTRUN -> [FAIL][10] +5 other tests fail
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12192/bat-mtlp-9/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
- {bat-arls-6}: NOTRUN -> [FAIL][11] +5 other tests fail
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12192/bat-arls-6/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
Known issues
------------
Here are the changes found in IGTPW_12192 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_tiled_blits@basic:
- fi-pnv-d510: [PASS][12] -> [SKIP][13] +2 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8125/fi-pnv-d510/igt@gem_tiled_blits@basic.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12192/fi-pnv-d510/igt@gem_tiled_blits@basic.html
* igt@i915_pm_rc6_residency@rc6-idle:
- fi-tgl-1115g4: NOTRUN -> [WARN][14] ([i915#2681]) +4 other tests warn
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12192/fi-tgl-1115g4/igt@i915_pm_rc6_residency@rc6-idle.html
- bat-dg2-9: NOTRUN -> [FAIL][15] ([i915#12548] / [i915#3591]) +1 other test fail
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12192/bat-dg2-9/igt@i915_pm_rc6_residency@rc6-idle.html
- bat-dg1-6: NOTRUN -> [FAIL][16] ([i915#12548] / [i915#3591]) +1 other test fail
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12192/bat-dg1-6/igt@i915_pm_rc6_residency@rc6-idle.html
- bat-dg2-14: NOTRUN -> [FAIL][17] ([i915#12548] / [i915#3591])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12192/bat-dg2-14/igt@i915_pm_rc6_residency@rc6-idle.html
- bat-dg2-8: NOTRUN -> [FAIL][18] ([i915#12548] / [i915#3591])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12192/bat-dg2-8/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
- fi-ilk-650: NOTRUN -> [SKIP][19] +2 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12192/fi-ilk-650/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
- fi-blb-e6850: NOTRUN -> [SKIP][20] +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12192/fi-blb-e6850/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
- fi-bsw-nick: NOTRUN -> [ABORT][21] ([i915#12957]) +1 other test abort
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12192/fi-bsw-nick/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
- fi-pnv-d510: NOTRUN -> [SKIP][22] +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12192/fi-pnv-d510/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- fi-elk-e7500: NOTRUN -> [SKIP][23] +2 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12192/fi-elk-e7500/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
- fi-hsw-4770: NOTRUN -> [WARN][24] ([i915#2681]) +1 other test warn
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12192/fi-hsw-4770/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0:
- bat-dg2-8: NOTRUN -> [FAIL][25] ([i915#12739] / [i915#3591])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12192/bat-dg2-8/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
- bat-dg2-9: NOTRUN -> [FAIL][26] ([i915#12739] / [i915#3591])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12192/bat-dg2-9/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
- bat-dg2-14: NOTRUN -> [FAIL][27] ([i915#12739] / [i915#3591])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12192/bat-dg2-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
* igt@i915_selftest@live:
- bat-adlp-9: [PASS][28] -> [ABORT][29] ([i915#12435])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8125/bat-adlp-9/igt@i915_selftest@live.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12192/bat-adlp-9/igt@i915_selftest@live.html
#### Possible fixes ####
* igt@i915_pm_rpm@module-reload:
- bat-dg1-7: [FAIL][30] ([i915#12903]) -> [PASS][31]
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8125/bat-dg1-7/igt@i915_pm_rpm@module-reload.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12192/bat-dg1-7/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live@workarounds:
- {bat-arls-6}: [ABORT][32] ([i915#12061]) -> [PASS][33] +1 other test pass
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8125/bat-arls-6/igt@i915_selftest@live@workarounds.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12192/bat-arls-6/igt@i915_selftest@live@workarounds.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12435
[i915#12548]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12548
[i915#12739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12739
[i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903
[i915#12957]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12957
[i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681
[i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8125 -> IGTPW_12192
CI-20190529: 20190529
CI_DRM_15743: 6510562075d8541c218e72188f9ef339f8ba371f @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12192: 12192
IGT_8125: fbfda23ba003aab3454436d95c233dcf5e3bee54 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12192/index.html
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ Xe.CI.Full: failure for tests/i915/pm_rc6_residency: Replace waitboost with
2024-11-25 15:58 [i-g-t,0/2] tests/i915/pm_rc6_residency: Replace waitboost with sk.anirban
` (3 preceding siblings ...)
2024-11-25 22:51 ` ✗ i915.CI.BAT: failure " Patchwork
@ 2024-11-26 0:49 ` Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2024-11-26 0:49 UTC (permalink / raw)
To: sk.anirban; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 149947 bytes --]
== Series Details ==
Series: tests/i915/pm_rc6_residency: Replace waitboost with
URL : https://patchwork.freedesktop.org/series/141759/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8125_full -> XEIGTPW_12192_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12192_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12192_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12192_full:
### IGT changes ###
#### Possible regressions ####
* igt@xe_eudebug_online@pagefault-write:
- shard-bmg: NOTRUN -> [SKIP][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-6/igt@xe_eudebug_online@pagefault-write.html
* igt@xe_exec_basic@once-bindexecqueue:
- shard-bmg: NOTRUN -> [DMESG-WARN][2]
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-2/igt@xe_exec_basic@once-bindexecqueue.html
* igt@xe_exec_fault_mode@many-userptr-invalidate-race-imm:
- shard-bmg: [PASS][3] -> [DMESG-WARN][4] +1 other test dmesg-warn
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@xe_exec_fault_mode@many-userptr-invalidate-race-imm.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-5/igt@xe_exec_fault_mode@many-userptr-invalidate-race-imm.html
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
- shard-dg2-set2: [PASS][5] -> [INCOMPLETE][6] +1 other test incomplete
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-466/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-bmg: NOTRUN -> [ABORT][7]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-3/igt@xe_wedged@wedged-at-any-timeout.html
#### Warnings ####
* igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary:
- shard-dg2-set2: [SKIP][8] ([Intel XE#2136]) -> [SKIP][9] +2 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html
New tests
---------
New tests have been introduced between XEIGT_8125_full and XEIGTPW_12192_full:
### New IGT tests (2) ###
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-b-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [1.08] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.72] s
Known issues
------------
Here are the changes found in XEIGTPW_12192_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@hotreplug:
- shard-dg2-set2: [PASS][10] -> [SKIP][11] ([Intel XE#1885])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@core_hotunplug@hotreplug.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@core_hotunplug@hotreplug.html
* igt@core_hotunplug@hotreplug-lateclose:
- shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#1885])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@core_hotunplug@hotreplug-lateclose.html
* igt@core_setmaster@master-drop-set-shared-fd:
- shard-dg2-set2: [PASS][13] -> [SKIP][14] ([Intel XE#3453])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@core_setmaster@master-drop-set-shared-fd.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-466/igt@core_setmaster@master-drop-set-shared-fd.html
* igt@fbdev@info:
- shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#2134]) +2 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@fbdev@info.html
* igt@fbdev@read:
- shard-dg2-set2: [PASS][16] -> [SKIP][17] ([Intel XE#2134]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@fbdev@read.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@fbdev@read.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#2550]) +11 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-432/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs.html
* igt@kms_atomic@plane-invalid-params-fence:
- shard-dg2-set2: [PASS][19] -> [SKIP][20] ([Intel XE#2423] / [i915#2575]) +72 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_atomic@plane-invalid-params-fence.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-466/igt@kms_atomic@plane-invalid-params-fence.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2370])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-bmg: [PASS][22] -> [DMESG-WARN][23] ([Intel XE#3468] / [Intel XE#877])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-5/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2327]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-7/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg2-set2: [PASS][25] -> [SKIP][26] ([Intel XE#2136]) +26 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-466/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-32bpp-rotate-180:
- shard-bmg: [PASS][27] -> [DMESG-FAIL][28] ([Intel XE#3468] / [Intel XE#877])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_big_fb@linear-32bpp-rotate-180.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-7/igt@kms_big_fb@linear-32bpp-rotate-180.html
* igt@kms_big_fb@linear-8bpp-rotate-180:
- shard-bmg: NOTRUN -> [DMESG-FAIL][29] ([Intel XE#3468]) +15 other tests dmesg-fail
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-1/igt@kms_big_fb@linear-8bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#316])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-435/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#1124]) +5 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-4/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#610])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-463/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#610])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-2/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2314] / [Intel XE#2894]) +2 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-4/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#367]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-6/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#367])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-435/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#455] / [Intel XE#787]) +21 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-435/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#2907])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-435/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-7/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#2136]) +35 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-466/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#3432]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#787]) +127 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-6.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2887]) +12 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-6/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2724])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-2/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#314]) +2 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-432/igt@kms_cdclk@mode-transition@pipe-c-hdmi-a-6.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#314] / [Intel XE#455])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-432/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-6.html
* igt@kms_chamelium_color@ctm-negative:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2325])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-2/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:
- shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#373]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-432/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@hdmi-hpd-after-suspend:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2252]) +7 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-6/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html
* igt@kms_content_protection@legacy:
- shard-bmg: NOTRUN -> [FAIL][50] ([Intel XE#1178]) +1 other test fail
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-2/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@legacy@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][51] ([Intel XE#1178])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-436/igt@kms_content_protection@legacy@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2320]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2321])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-6/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#308])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-463/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
- shard-bmg: [PASS][55] -> [SKIP][56] ([Intel XE#2291]) +2 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-dg2-set2: [PASS][57] -> [SKIP][58] ([Intel XE#309])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-432/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#2423] / [i915#2575]) +49 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-466/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#309])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-432/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2291])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@torture-bo@all-pipes:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][62] ([Intel XE#3184])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-463/igt@kms_cursor_legacy@torture-bo@all-pipes.html
* igt@kms_dp_aux_dev:
- shard-dg2-set2: [PASS][63] -> [SKIP][64] ([Intel XE#2423]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_dp_aux_dev.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@kms_dp_aux_dev.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2244])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_fbcon_fbt@psr:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#776])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-7/igt@kms_fbcon_fbt@psr.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-bmg: [PASS][67] -> [FAIL][68] ([Intel XE#2882]) +3 other tests fail
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@kms_flip@2x-blocking-wf_vblank.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-7/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
- shard-dg2-set2: [PASS][69] -> [SKIP][70] ([Intel XE#310])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-432/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][71] ([Intel XE#3486])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][72] ([Intel XE#3321] / [Intel XE#3486])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-bmg: [PASS][73] -> [SKIP][74] ([Intel XE#2316]) +6 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-4/igt@kms_flip@2x-wf_vblank-ts-check.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip@absolute-wf_vblank-interruptible@a-hdmi-a3:
- shard-bmg: [PASS][75] -> [DMESG-WARN][76] ([Intel XE#3468]) +83 other tests dmesg-warn
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@kms_flip@absolute-wf_vblank-interruptible@a-hdmi-a3.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-1/igt@kms_flip@absolute-wf_vblank-interruptible@a-hdmi-a3.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2:
- shard-bmg: NOTRUN -> [DMESG-WARN][77] ([Intel XE#3468]) +34 other tests dmesg-warn
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][78] ([Intel XE#301] / [Intel XE#3486])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp4.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a6:
- shard-dg2-set2: NOTRUN -> [FAIL][79] ([Intel XE#301]) +6 other tests fail
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a6.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-dp4:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][80] ([Intel XE#1727] / [Intel XE#3468])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-436/igt@kms_flip@flip-vs-suspend-interruptible@a-dp4.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][81] ([Intel XE#3468]) +1 other test dmesg-warn
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-436/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6.html
* igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a6:
- shard-dg2-set2: NOTRUN -> [DMESG-FAIL][82] ([Intel XE#3468]) +1 other test dmesg-fail
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-436/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a6.html
* igt@kms_flip@flip-vs-suspend-interruptible@c-dp4:
- shard-dg2-set2: NOTRUN -> [DMESG-FAIL][83] ([Intel XE#1727] / [Intel XE#3468]) +3 other tests dmesg-fail
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-436/igt@kms_flip@flip-vs-suspend-interruptible@c-dp4.html
* igt@kms_flip@flip-vs-suspend@c-dp2:
- shard-bmg: [PASS][84] -> [DMESG-FAIL][85] ([Intel XE#1727] / [Intel XE#3468]) +9 other tests dmesg-fail
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@kms_flip@flip-vs-suspend@c-dp2.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-5/igt@kms_flip@flip-vs-suspend@c-dp2.html
* igt@kms_flip@wf_vblank-ts-check-interruptible:
- shard-lnl: [PASS][86] -> [FAIL][87] ([Intel XE#886]) +1 other test fail
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-6/igt@kms_flip@wf_vblank-ts-check-interruptible.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-lnl-3/igt@kms_flip@wf_vblank-ts-check-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling:
- shard-bmg: [PASS][88] -> [DMESG-WARN][89] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3468]) +1 other test dmesg-warn
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling:
- shard-dg2-set2: [PASS][90] -> [SKIP][91] ([Intel XE#2136] / [Intel XE#2351]) +10 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#455]) +9 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-436/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2293]) +2 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2311]) +28 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt:
- shard-bmg: NOTRUN -> [FAIL][96] ([Intel XE#2333]) +7 other tests fail
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-dg2-set2: [PASS][97] -> [SKIP][98] ([Intel XE#656]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#656]) +3 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2312]) +7 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear:
- shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#651]) +9 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear:
- shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#653]) +5 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#2136] / [Intel XE#2351]) +25 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2313]) +18 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_hdr@static-toggle-suspend:
- shard-bmg: [PASS][105] -> [DMESG-FAIL][106] ([Intel XE#3468]) +25 other tests dmesg-fail
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@kms_hdr@static-toggle-suspend.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-3/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#346])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-6/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][108] ([Intel XE#1727] / [Intel XE#3468]) +1 other test incomplete
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-435/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [DMESG-WARN][109] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-2.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-3:
- shard-bmg: NOTRUN -> [INCOMPLETE][110] ([Intel XE#1727] / [Intel XE#3468]) +1 other test incomplete
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-3.html
* igt@kms_plane@pixel-format:
- shard-bmg: NOTRUN -> [INCOMPLETE][111] ([Intel XE#1035] / [Intel XE#3468])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-3/igt@kms_plane@pixel-format.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-bmg: [PASS][112] -> [INCOMPLETE][113] ([Intel XE#1035] / [Intel XE#1727] / [Intel XE#3468]) +1 other test incomplete
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@kms_plane@plane-panning-bottom-right-suspend.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-1/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][114] ([Intel XE#1035] / [Intel XE#1727] / [Intel XE#3468])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-432/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
* igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-6-size-64:
- shard-dg2-set2: [PASS][115] -> [FAIL][116] ([Intel XE#616]) +1 other test fail
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-6-size-64.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-436/igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-6-size-64.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
- shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#2763]) +14 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][118] ([Intel XE#1727]) +1 other test dmesg-warn
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-435/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b:
- shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#2763]) +11 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25:
- shard-bmg: [PASS][120] -> [DMESG-WARN][121] ([Intel XE#1727] / [Intel XE#2566] / [Intel XE#3468])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-1/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d:
- shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#2763] / [Intel XE#455]) +4 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-435/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75:
- shard-bmg: [PASS][123] -> [DMESG-WARN][124] ([Intel XE#2566] / [Intel XE#877])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-b:
- shard-bmg: [PASS][125] -> [DMESG-WARN][126] ([Intel XE#877])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-b.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-b.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#870])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-4/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#3309])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-463/igt@kms_pm_dc@dc5-retention-flops.html
- shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#3309])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-5/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#1439])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-2/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@legacy-planes@plane-50:
- shard-bmg: [PASS][131] -> [DMESG-WARN][132] ([Intel XE#1727] / [Intel XE#3468]) +11 other tests dmesg-warn
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_pm_rpm@legacy-planes@plane-50.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-3/igt@kms_pm_rpm@legacy-planes@plane-50.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#1439] / [Intel XE#3141])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-4/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-dg2-set2: [PASS][134] -> [SKIP][135] ([Intel XE#2446])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-466/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-stress-extra-wait:
- shard-bmg: [PASS][136] -> [INCOMPLETE][137] ([Intel XE#1727] / [Intel XE#2864] / [Intel XE#3468])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-4/igt@kms_pm_rpm@modeset-stress-extra-wait.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-5/igt@kms_pm_rpm@modeset-stress-extra-wait.html
* igt@kms_pm_rpm@universal-planes:
- shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#2446]) +3 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-466/igt@kms_pm_rpm@universal-planes.html
* igt@kms_pm_rpm@universal-planes-dpms:
- shard-lnl: [PASS][139] -> [DMESG-WARN][140] ([Intel XE#2042])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-3/igt@kms_pm_rpm@universal-planes-dpms.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-lnl-4/igt@kms_pm_rpm@universal-planes-dpms.html
* igt@kms_pm_rpm@universal-planes-dpms@plane-68:
- shard-lnl: [PASS][141] -> [DMESG-WARN][142] ([Intel XE#3184])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-3/igt@kms_pm_rpm@universal-planes-dpms@plane-68.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-lnl-4/igt@kms_pm_rpm@universal-planes-dpms@plane-68.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#1489]) +6 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-update-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#1489]) +2 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-463/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#2387]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-psr2-sprite-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][146] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-435/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
* igt@kms_psr@psr2-no-drrs:
- shard-bmg: NOTRUN -> [SKIP][147] ([Intel XE#2234] / [Intel XE#2850]) +13 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-3/igt@kms_psr@psr2-no-drrs.html
* igt@kms_psr@psr2-primary-render:
- shard-bmg: NOTRUN -> [SKIP][148] ([Intel XE#2234])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-6/igt@kms_psr@psr2-primary-render.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#3414])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-432/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-lnl: [PASS][150] -> [FAIL][151] ([Intel XE#2883]) +2 other tests fail
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-8/igt@kms_setmode@basic@pipe-b-edp-1.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-lnl-6/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_setmode@basic@pipe-b-hdmi-a-3:
- shard-bmg: NOTRUN -> [FAIL][152] ([Intel XE#3559]) +4 other tests fail
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-7/igt@kms_setmode@basic@pipe-b-hdmi-a-3.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1:
- shard-lnl: [PASS][153] -> [FAIL][154] ([Intel XE#899])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html
* igt@kms_vblank@ts-continuation-modeset-rpm@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [INCOMPLETE][155] ([Intel XE#3468])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-7/igt@kms_vblank@ts-continuation-modeset-rpm@pipe-a-dp-2.html
* igt@kms_vblank@wait-forked-busy@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][156] ([Intel XE#1727])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-436/igt@kms_vblank@wait-forked-busy@pipe-a-hdmi-a-6.html
* igt@kms_vrr@cmrr:
- shard-bmg: NOTRUN -> [SKIP][157] ([Intel XE#2168])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-6/igt@kms_vrr@cmrr.html
* igt@kms_vrr@lobf:
- shard-dg2-set2: NOTRUN -> [SKIP][158] ([Intel XE#2168])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-436/igt@kms_vrr@lobf.html
* igt@kms_vrr@max-min@pipe-a-edp-1:
- shard-lnl: [PASS][159] -> [FAIL][160] ([Intel XE#1522]) +1 other test fail
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-5/igt@kms_vrr@max-min@pipe-a-edp-1.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-lnl-6/igt@kms_vrr@max-min@pipe-a-edp-1.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-bmg: NOTRUN -> [SKIP][161] ([Intel XE#1499]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-2/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-bmg: NOTRUN -> [SKIP][162] ([Intel XE#1091] / [Intel XE#2849])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-3/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@testdisplay:
- shard-dg2-set2: NOTRUN -> [SKIP][163] ([Intel XE#2423])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@testdisplay.html
* igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute:
- shard-dg2-set2: NOTRUN -> [SKIP][164] ([Intel XE#1280] / [Intel XE#455])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-435/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html
* igt@xe_eudebug_online@interrupt-all-set-breakpoint:
- shard-dg2-set2: NOTRUN -> [SKIP][165] ([Intel XE#2905]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-435/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html
* igt@xe_eudebug_online@stopped-thread:
- shard-bmg: NOTRUN -> [SKIP][166] ([Intel XE#2905]) +6 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-4/igt@xe_eudebug_online@stopped-thread.html
* igt@xe_evict@evict-beng-mixed-many-threads-large:
- shard-bmg: NOTRUN -> [INCOMPLETE][167] ([Intel XE#1473] / [Intel XE#3468])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-1/igt@xe_evict@evict-beng-mixed-many-threads-large.html
* igt@xe_exec_balancer@many-virtual-rebind:
- shard-bmg: [PASS][168] -> [DMESG-WARN][169] ([Intel XE#1727]) +4 other tests dmesg-warn
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-2/igt@xe_exec_balancer@many-virtual-rebind.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-2/igt@xe_exec_balancer@many-virtual-rebind.html
* igt@xe_exec_balancer@twice-virtual-basic:
- shard-dg2-set2: NOTRUN -> [SKIP][170] ([Intel XE#1130]) +90 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@xe_exec_balancer@twice-virtual-basic.html
* igt@xe_exec_basic@many-null-rebind:
- shard-dg2-set2: [PASS][171] -> [SKIP][172] ([Intel XE#1130]) +138 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@xe_exec_basic@many-null-rebind.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-466/igt@xe_exec_basic@many-null-rebind.html
* igt@xe_exec_basic@many-userptr-invalidate:
- shard-bmg: NOTRUN -> [DMESG-WARN][173] ([Intel XE#1727]) +1 other test dmesg-warn
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-2/igt@xe_exec_basic@many-userptr-invalidate.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind:
- shard-bmg: NOTRUN -> [SKIP][174] ([Intel XE#2322]) +4 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html
* igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][175] ([Intel XE#288]) +7 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-432/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm.html
* igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready:
- shard-bmg: [PASS][176] -> [DMESG-WARN][177] ([Intel XE#3467] / [Intel XE#3468]) +2 other tests dmesg-warn
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][178] ([Intel XE#3343])
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-436/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init:
- shard-bmg: [PASS][179] -> [DMESG-WARN][180] ([Intel XE#3343])
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute:
- shard-bmg: NOTRUN -> [FAIL][181] ([Intel XE#3499])
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-7/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- shard-dg2-set2: NOTRUN -> [SKIP][182] ([Intel XE#2229])
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_live_ktest@xe_mocs:
- shard-bmg: [PASS][183] -> [SKIP][184] ([Intel XE#1192])
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@xe_live_ktest@xe_mocs.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-2/igt@xe_live_ktest@xe_mocs.html
* igt@xe_module_load@load:
- shard-bmg: NOTRUN -> [SKIP][185] ([Intel XE#2457])
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-7/igt@xe_module_load@load.html
- shard-dg2-set2: NOTRUN -> [SKIP][186] ([Intel XE#378])
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-435/igt@xe_module_load@load.html
* igt@xe_module_load@many-reload:
- shard-bmg: [PASS][187] -> [DMESG-WARN][188] ([Intel XE#3467])
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-4/igt@xe_module_load@many-reload.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-5/igt@xe_module_load@many-reload.html
* igt@xe_module_load@unload:
- shard-bmg: NOTRUN -> [DMESG-WARN][189] ([Intel XE#3467])
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-7/igt@xe_module_load@unload.html
* igt@xe_oa@unprivileged-single-ctx-counters:
- shard-dg2-set2: NOTRUN -> [SKIP][190] ([Intel XE#3573]) +1 other test skip
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-435/igt@xe_oa@unprivileged-single-ctx-counters.html
* igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p:
- shard-dg2-set2: NOTRUN -> [FAIL][191] ([Intel XE#1173])
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-435/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-bmg: NOTRUN -> [SKIP][192] ([Intel XE#2284]) +2 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-2/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pm@d3hot-basic:
- shard-dg2-set2: [PASS][193] -> [DMESG-WARN][194] ([Intel XE#3468])
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@xe_pm@d3hot-basic.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-435/igt@xe_pm@d3hot-basic.html
* igt@xe_pm@s2idle-multiple-execs:
- shard-bmg: NOTRUN -> [DMESG-WARN][195] ([Intel XE#1616] / [Intel XE#1727] / [Intel XE#3468])
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-3/igt@xe_pm@s2idle-multiple-execs.html
* igt@xe_pm@s3-basic-exec:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][196] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569])
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-435/igt@xe_pm@s3-basic-exec.html
* igt@xe_pm@s3-d3hot-basic-exec:
- shard-bmg: NOTRUN -> [DMESG-WARN][197] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569])
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-1/igt@xe_pm@s3-d3hot-basic-exec.html
- shard-dg2-set2: [PASS][198] -> [DMESG-WARN][199] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569])
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@xe_pm@s3-d3hot-basic-exec.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-432/igt@xe_pm@s3-d3hot-basic-exec.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-dg2-set2: NOTRUN -> [SKIP][200] ([Intel XE#579])
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-463/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-bmg: NOTRUN -> [SKIP][201] ([Intel XE#944])
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-2/igt@xe_query@multigpu-query-invalid-extension.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-dg2-set2: NOTRUN -> [SKIP][202] ([Intel XE#3342])
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-463/igt@xe_sriov_flr@flr-vf1-clear.html
- shard-bmg: NOTRUN -> [SKIP][203] ([Intel XE#3342])
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-2/igt@xe_sriov_flr@flr-vf1-clear.html
#### Possible fixes ####
* igt@core_getversion@all-cards:
- shard-dg2-set2: [FAIL][204] ([Intel XE#3440]) -> [PASS][205]
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@core_getversion@all-cards.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-463/igt@core_getversion@all-cards.html
* igt@core_hotunplug@unbind-rebind:
- shard-dg2-set2: [SKIP][206] ([Intel XE#1885]) -> [PASS][207]
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@core_hotunplug@unbind-rebind.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-432/igt@core_hotunplug@unbind-rebind.html
* igt@core_setmaster@master-drop-set-root:
- shard-dg2-set2: [FAIL][208] ([Intel XE#3249]) -> [PASS][209]
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@core_setmaster@master-drop-set-root.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-463/igt@core_setmaster@master-drop-set-root.html
* igt@core_setmaster_vs_auth:
- shard-dg2-set2: [SKIP][210] ([Intel XE#2423]) -> [PASS][211]
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@core_setmaster_vs_auth.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-435/igt@core_setmaster_vs_auth.html
* igt@fbdev@unaligned-read:
- shard-dg2-set2: [SKIP][212] ([Intel XE#2134]) -> [PASS][213]
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@fbdev@unaligned-read.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-463/igt@fbdev@unaligned-read.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-bmg: [DMESG-WARN][214] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][215]
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [SKIP][216] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][217] +9 other tests pass
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-463/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6:
- shard-dg2-set2: [FAIL][218] ([Intel XE#616]) -> [PASS][219] +4 other tests pass
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-463/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-bmg: [INCOMPLETE][220] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][221] +3 other tests pass
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@kms_cursor_crc@cursor-suspend.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-6/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-bmg: [SKIP][222] ([Intel XE#2291]) -> [PASS][223] +1 other test pass
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-dg2-set2: [SKIP][224] ([Intel XE#309]) -> [PASS][225] +1 other test pass
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-463/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-dg2-set2: [SKIP][226] ([Intel XE#310]) -> [PASS][227]
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_flip@2x-blocking-wf_vblank.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-435/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3:
- shard-bmg: [FAIL][228] ([Intel XE#3321] / [Intel XE#3486]) -> [PASS][229]
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html
* igt@kms_flip@2x-plain-flip:
- shard-bmg: [SKIP][230] ([Intel XE#2316]) -> [PASS][231] +1 other test pass
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_flip@2x-plain-flip.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-2/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@absolute-wf_vblank@a-dp2:
- shard-bmg: [DMESG-FAIL][232] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][233] +3 other tests pass
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@kms_flip@absolute-wf_vblank@a-dp2.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-1/igt@kms_flip@absolute-wf_vblank@a-dp2.html
* igt@kms_flip@basic-flip-vs-wf_vblank:
- shard-bmg: [DMESG-WARN][234] -> [PASS][235] +1 other test pass
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@kms_flip@basic-flip-vs-wf_vblank.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-6/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1:
- shard-lnl: [FAIL][236] ([Intel XE#886]) -> [PASS][237] +5 other tests pass
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-8/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-lnl-8/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-bmg: [DMESG-WARN][238] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][239] +6 other tests pass
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-wc:
- shard-dg2-set2: [SKIP][240] ([Intel XE#2136]) -> [PASS][241] +21 other tests pass
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-wc.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-wc.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][242] ([Intel XE#1503]) -> [PASS][243]
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@kms_hdr@invalid-hdr.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-7/igt@kms_hdr@invalid-hdr.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- shard-dg2-set2: [SKIP][244] ([Intel XE#2423] / [i915#2575]) -> [PASS][245] +100 other tests pass
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-432/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
* igt@kms_plane@pixel-format-source-clamping:
- shard-bmg: [INCOMPLETE][246] ([Intel XE#1035] / [Intel XE#2566] / [Intel XE#3468]) -> [PASS][247]
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@kms_plane@pixel-format-source-clamping.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-7/igt@kms_plane@pixel-format-source-clamping.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format:
- shard-bmg: [INCOMPLETE][248] -> [PASS][249] +2 other tests pass
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [FAIL][250] ([Intel XE#718]) -> [PASS][251] +1 other test pass
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-7/igt@kms_pm_dc@dc5-psr.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-lnl-3/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@deep-pkgc:
- shard-lnl: [FAIL][252] ([Intel XE#2029]) -> [PASS][253]
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-4/igt@kms_pm_dc@deep-pkgc.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-lnl-3/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- shard-dg2-set2: [DMESG-WARN][254] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][255]
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_pm_rpm@basic-pci-d3-state.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-432/igt@kms_pm_rpm@basic-pci-d3-state.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-dg2-set2: [SKIP][256] ([Intel XE#2446]) -> [PASS][257] +2 other tests pass
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_pm_rpm@system-suspend-modeset.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-432/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-bmg: [SKIP][258] ([Intel XE#1435]) -> [PASS][259]
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-1/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1:
- shard-lnl: [FAIL][260] ([Intel XE#899]) -> [PASS][261]
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
* igt@kms_vblank@query-forked-busy-hang:
- shard-bmg: [DMESG-FAIL][262] ([Intel XE#3468]) -> [PASS][263] +17 other tests pass
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-2/igt@kms_vblank@query-forked-busy-hang.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-4/igt@kms_vblank@query-forked-busy-hang.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [TIMEOUT][264] ([Intel XE#1473] / [Intel XE#2472]) -> [PASS][265]
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-small.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_basic@many-execqueues-bindexecqueue:
- shard-lnl: [FAIL][266] -> [PASS][267]
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-3/igt@xe_exec_basic@many-execqueues-bindexecqueue.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-lnl-3/igt@xe_exec_basic@many-execqueues-bindexecqueue.html
* igt@xe_exec_basic@many-execqueues-many-vm-bindexecqueue:
- shard-dg2-set2: [DMESG-WARN][268] ([Intel XE#1727]) -> [PASS][269]
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@xe_exec_basic@many-execqueues-many-vm-bindexecqueue.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-435/igt@xe_exec_basic@many-execqueues-many-vm-bindexecqueue.html
* igt@xe_exec_fault_mode@twice-bindexecqueue:
- shard-bmg: [DMESG-WARN][270] ([Intel XE#1727]) -> [PASS][271] +4 other tests pass
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-2/igt@xe_exec_fault_mode@twice-bindexecqueue.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-7/igt@xe_exec_fault_mode@twice-bindexecqueue.html
* igt@xe_exec_reset@cm-close-fd-no-exec:
- shard-dg2-set2: [SKIP][272] ([Intel XE#1130]) -> [PASS][273] +167 other tests pass
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@xe_exec_reset@cm-close-fd-no-exec.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-436/igt@xe_exec_reset@cm-close-fd-no-exec.html
* igt@xe_exec_threads@threads-mixed-basic:
- shard-lnl: [DMESG-WARN][274] -> [PASS][275]
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-4/igt@xe_exec_threads@threads-mixed-basic.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-lnl-4/igt@xe_exec_threads@threads-mixed-basic.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init:
- shard-bmg: [DMESG-WARN][276] ([Intel XE#3343]) -> [PASS][277]
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init:
- shard-bmg: [DMESG-WARN][278] ([Intel XE#3467]) -> [PASS][279] +2 other tests pass
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init:
- shard-bmg: [DMESG-WARN][280] ([Intel XE#3343] / [Intel XE#3468]) -> [PASS][281]
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
- shard-bmg: [INCOMPLETE][282] ([Intel XE#2998]) -> [PASS][283] +1 other test pass
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-6/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
* igt@xe_live_ktest@xe_mocs:
- shard-lnl: [SKIP][284] ([Intel XE#1192]) -> [PASS][285]
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-5/igt@xe_live_ktest@xe_mocs.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-lnl-8/igt@xe_live_ktest@xe_mocs.html
* igt@xe_module_load@reload:
- shard-dg2-set2: [FAIL][286] ([Intel XE#3546]) -> [PASS][287]
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@xe_module_load@reload.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-463/igt@xe_module_load@reload.html
* igt@xe_oa@oa-regs-whitelisted:
- shard-lnl: [FAIL][288] ([Intel XE#2514]) -> [PASS][289]
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-3/igt@xe_oa@oa-regs-whitelisted.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-lnl-6/igt@xe_oa@oa-regs-whitelisted.html
* igt@xe_pat@display-vs-wb-transient:
- shard-bmg: [DMESG-WARN][290] ([Intel XE#3468]) -> [PASS][291] +118 other tests pass
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@xe_pat@display-vs-wb-transient.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-7/igt@xe_pat@display-vs-wb-transient.html
* igt@xe_pm@s2idle-vm-bind-unbind-all:
- shard-bmg: [DMESG-WARN][292] ([Intel XE#1616] / [Intel XE#1727] / [Intel XE#3468]) -> [PASS][293] +1 other test pass
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-2/igt@xe_pm@s2idle-vm-bind-unbind-all.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-6/igt@xe_pm@s2idle-vm-bind-unbind-all.html
#### Warnings ####
* igt@core_hotunplug@hotrebind:
- shard-dg2-set2: [SKIP][294] ([Intel XE#1885]) -> [DMESG-WARN][295] ([Intel XE#3468]) +1 other test dmesg-warn
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@core_hotunplug@hotrebind.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-435/igt@core_hotunplug@hotrebind.html
* igt@core_hotunplug@hotunplug-rescan:
- shard-dg2-set2: [INCOMPLETE][296] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][297] ([Intel XE#1885])
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@core_hotunplug@hotunplug-rescan.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@core_hotunplug@hotunplug-rescan.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-270:
- shard-dg2-set2: [SKIP][298] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][299] ([Intel XE#316])
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-432/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-dg2-set2: [SKIP][300] ([Intel XE#316]) -> [SKIP][301] ([Intel XE#2136] / [Intel XE#2351])
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-dg2-set2: [SKIP][302] ([Intel XE#316]) -> [SKIP][303] ([Intel XE#2136]) +2 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_big_fb@linear-16bpp-rotate-270.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-466/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-dg2-set2: [SKIP][304] ([Intel XE#2136]) -> [SKIP][305] ([Intel XE#316]) +2 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-463/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2-set2: [SKIP][306] ([Intel XE#610]) -> [SKIP][307] ([Intel XE#2136])
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-dg2-set2: [SKIP][308] ([Intel XE#1124]) -> [SKIP][309] ([Intel XE#2136] / [Intel XE#2351])
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-dg2-set2: [SKIP][310] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][311] ([Intel XE#1124]) +5 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-432/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
- shard-dg2-set2: [SKIP][312] ([Intel XE#2136]) -> [SKIP][313] ([Intel XE#1124]) +7 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-432/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-dg2-set2: [SKIP][314] ([Intel XE#619]) -> [SKIP][315] ([Intel XE#2136] / [Intel XE#2351])
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_big_fb@yf-tiled-addfb.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg2-set2: [SKIP][316] ([Intel XE#1124]) -> [SKIP][317] ([Intel XE#2136]) +6 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
- shard-dg2-set2: [SKIP][318] ([Intel XE#2191]) -> [SKIP][319] ([Intel XE#2423] / [i915#2575])
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
- shard-dg2-set2: [SKIP][320] ([Intel XE#2423] / [i915#2575]) -> [SKIP][321] ([Intel XE#2191]) +1 other test skip
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-436/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-1-displays-1920x1080p:
- shard-dg2-set2: [SKIP][322] ([Intel XE#367]) -> [SKIP][323] ([Intel XE#2423] / [i915#2575]) +3 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-2-displays-2160x1440p:
- shard-dg2-set2: [SKIP][324] ([Intel XE#2423] / [i915#2575]) -> [SKIP][325] ([Intel XE#367]) +2 other tests skip
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-435/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs:
- shard-dg2-set2: [SKIP][326] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][327] ([Intel XE#2136]) +10 other tests skip
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs:
- shard-dg2-set2: [SKIP][328] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][329] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-436/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs:
- shard-dg2-set2: [SKIP][330] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][331] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-466/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6:
- shard-dg2-set2: [SKIP][332] ([Intel XE#787]) -> [SKIP][333] ([Intel XE#455] / [Intel XE#787])
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-432/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [INCOMPLETE][334] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][335] ([Intel XE#2136])
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
- shard-dg2-set2: [SKIP][336] ([Intel XE#2136]) -> [SKIP][337] ([Intel XE#455] / [Intel XE#787]) +15 other tests skip
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [FAIL][338] ([Intel XE#616]) -> [SKIP][339] ([Intel XE#2136])
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][340] ([Intel XE#2136]) -> [SKIP][341] ([Intel XE#2907])
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-dg2-set2: [SKIP][342] ([Intel XE#2907]) -> [SKIP][343] ([Intel XE#2136]) +3 other tests skip
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_cdclk@mode-transition:
- shard-dg2-set2: [SKIP][344] ([Intel XE#2136]) -> [SKIP][345] ([Intel XE#314] / [Intel XE#455])
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_cdclk@mode-transition.html
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-432/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg2-set2: [SKIP][346] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][347] ([Intel XE#314])
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_cdclk@mode-transition-all-outputs.html
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-463/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-dg2-set2: [SKIP][348] ([Intel XE#2423] / [i915#2575]) -> [SKIP][349] ([Intel XE#306]) +1 other test skip
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_chamelium_color@ctm-limited-range.html
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-435/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_color@gamma:
- shard-dg2-set2: [SKIP][350] ([Intel XE#306]) -> [SKIP][351] ([Intel XE#2423] / [i915#2575]) +3 other tests skip
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_chamelium_color@gamma.html
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-466/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_frames@vga-frame-dump:
- shard-dg2-set2: [SKIP][352] ([Intel XE#2423] / [i915#2575]) -> [SKIP][353] ([Intel XE#373]) +12 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_chamelium_frames@vga-frame-dump.html
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-432/igt@kms_chamelium_frames@vga-frame-dump.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-dg2-set2: [SKIP][354] ([Intel XE#373]) -> [SKIP][355] ([Intel XE#2423] / [i915#2575]) +8 other tests skip
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_content_protection@atomic:
- shard-bmg: [FAIL][356] ([Intel XE#1178]) -> [INCOMPLETE][357] ([Intel XE#2715] / [Intel XE#3468]) +3 other tests incomplete
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@kms_content_protection@atomic.html
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-5/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2-set2: [SKIP][358] ([Intel XE#2423] / [i915#2575]) -> [SKIP][359] ([Intel XE#307])
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_content_protection@dp-mst-lic-type-0.html
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-435/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@legacy:
- shard-dg2-set2: [SKIP][360] ([Intel XE#2423] / [i915#2575]) -> [FAIL][361] ([Intel XE#1178])
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_content_protection@legacy.html
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-436/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2-set2: [FAIL][362] ([Intel XE#1178]) -> [SKIP][363] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_content_protection@lic-type-0.html
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-466/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@srm@pipe-a-dp-2:
- shard-bmg: [INCOMPLETE][364] ([Intel XE#2715]) -> [FAIL][365] ([Intel XE#1178]) +1 other test fail
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@kms_content_protection@srm@pipe-a-dp-2.html
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-1/igt@kms_content_protection@srm@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-onscreen-128x128:
- shard-bmg: [DMESG-FAIL][366] ([Intel XE#3468]) -> [INCOMPLETE][367] ([Intel XE#3416]) +1 other test incomplete
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-128x128.html
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-128x128.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2-set2: [SKIP][368] ([Intel XE#2423] / [i915#2575]) -> [SKIP][369] ([Intel XE#308]) +1 other test skip
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-512x170.html
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-432/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-dg2-set2: [INCOMPLETE][370] ([Intel XE#3468]) -> [SKIP][371] ([Intel XE#2423] / [i915#2575])
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_cursor_crc@cursor-suspend.html
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-bmg: [SKIP][372] ([Intel XE#2291]) -> [DMESG-WARN][373] ([Intel XE#877])
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-dg2-set2: [SKIP][374] ([Intel XE#309]) -> [SKIP][375] ([Intel XE#2423] / [i915#2575])
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2-set2: [SKIP][376] ([Intel XE#2423] / [i915#2575]) -> [SKIP][377] ([Intel XE#323])
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-436/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2-set2: [SKIP][378] ([Intel XE#323]) -> [SKIP][379] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@torture-bo:
- shard-dg2-set2: [SKIP][380] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][381] ([Intel XE#3184])
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_cursor_legacy@torture-bo.html
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-463/igt@kms_cursor_legacy@torture-bo.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-2:
- shard-bmg: [DMESG-FAIL][382] ([Intel XE#3468]) -> [FAIL][383] ([Intel XE#2141]) +2 other tests fail
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-2.html
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-2.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: [FAIL][384] ([Intel XE#1695]) -> [DMESG-FAIL][385] ([Intel XE#3468])
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_fbcon_fbt@fbc-suspend.html
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-1/igt@kms_fbcon_fbt@fbc-suspend.html
- shard-dg2-set2: [SKIP][386] ([Intel XE#2136]) -> [FAIL][387] ([Intel XE#1695])
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_fbcon_fbt@fbc-suspend.html
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-432/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2-set2: [SKIP][388] ([Intel XE#1137]) -> [SKIP][389] ([Intel XE#2423] / [i915#2575])
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_feature_discovery@dp-mst.html
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-dg2-set2: [SKIP][390] ([Intel XE#2423] / [i915#2575]) -> [SKIP][391] ([Intel XE#310])
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-432/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
- shard-bmg: [SKIP][392] ([Intel XE#2316]) -> [DMESG-WARN][393] ([Intel XE#3468])
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-3/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-bmg: [DMESG-FAIL][394] ([Intel XE#3468]) -> [FAIL][395] ([Intel XE#2882]) +1 other test fail
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
- shard-dg2-set2: [SKIP][396] ([Intel XE#2423] / [i915#2575]) -> [FAIL][397] ([Intel XE#301]) +1 other test fail
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3:
- shard-bmg: [DMESG-WARN][398] ([Intel XE#3468]) -> [FAIL][399] ([Intel XE#3321] / [Intel XE#3486])
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3:
- shard-bmg: [DMESG-WARN][400] ([Intel XE#3468]) -> [FAIL][401] ([Intel XE#3321] / [Intel XE#3487]) +1 other test fail
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-dg2-set2: [SKIP][402] ([Intel XE#310]) -> [SKIP][403] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_flip@2x-nonexisting-fb-interruptible.html
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg2-set2: [SKIP][404] ([Intel XE#2423] / [i915#2575]) -> [DMESG-FAIL][405] ([Intel XE#1727] / [Intel XE#3468])
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_flip@flip-vs-suspend-interruptible.html
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-436/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-bmg: [INCOMPLETE][406] -> [SKIP][407] ([Intel XE#2293] / [Intel XE#2380])
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
- shard-bmg: [INCOMPLETE][408] -> [SKIP][409] ([Intel XE#2293])
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-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-ytile-to-32bpp-ytileccs-downscaling:
- shard-dg2-set2: [SKIP][410] ([Intel XE#455]) -> [SKIP][411] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
- shard-dg2-set2: [SKIP][412] ([Intel XE#2136]) -> [SKIP][413] ([Intel XE#455]) +5 other tests skip
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-dg2-set2: [SKIP][414] ([Intel XE#455]) -> [SKIP][415] ([Intel XE#2136]) +2 other tests skip
[414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2-set2: [SKIP][416] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][417] ([Intel XE#455]) +4 other tests skip
[416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-dg2-set2: [SKIP][418] ([Intel XE#2423] / [i915#2575]) -> [SKIP][419] ([i915#5274])
[418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_force_connector_basic@prune-stale-modes.html
[419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-435/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][420] ([Intel XE#2136]) -> [SKIP][421] ([Intel XE#651]) +22 other tests skip
[420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html
[421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move:
- shard-bmg: [SKIP][422] ([Intel XE#2311]) -> [SKIP][423] ([Intel XE#2312]) +13 other tests skip
[422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html
[423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-plflip-blt:
- shard-dg2-set2: [SKIP][424] ([Intel XE#651]) -> [SKIP][425] ([Intel XE#656]) +1 other test skip
[424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-plflip-blt.html
[425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][426] ([Intel XE#2312]) -> [SKIP][427] ([Intel XE#2311]) +11 other tests skip
[426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html
[427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][428] -> [SKIP][429] ([Intel XE#2136])
[428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html
[429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render:
- shard-bmg: [DMESG-FAIL][430] ([Intel XE#3468]) -> [FAIL][431] ([Intel XE#2333]) +6 other tests fail
[430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html
[431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt:
- shard-bmg: [FAIL][432] ([Intel XE#2333]) -> [DMESG-FAIL][433] ([Intel XE#3468]) +6 other tests dmesg-fail
[432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
[433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render:
- shard-bmg: [INCOMPLETE][434] -> [FAIL][435] ([Intel XE#2333])
[434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html
[435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][436] ([Intel XE#656]) -> [SKIP][437] ([Intel XE#2136] / [Intel XE#2351]) +5 other tests skip
[436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
[437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
- shard-bmg: [DMESG-FAIL][438] ([Intel XE#3468]) -> [SKIP][439] ([Intel XE#2312])
[438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
[439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][440] ([Intel XE#2312]) -> [DMESG-FAIL][441] ([Intel XE#3468])
[440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
[441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][442] ([Intel XE#2312]) -> [FAIL][443] ([Intel XE#2333]) +2 other tests fail
[442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html
[443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [FAIL][444] ([Intel XE#2333]) -> [SKIP][445] ([Intel XE#2312]) +9 other tests skip
[444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
- shard-dg2-set2: [SKIP][446] ([Intel XE#651]) -> [SKIP][447] ([Intel XE#2136]) +22 other tests skip
[446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
[447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt:
- shard-dg2-set2: [SKIP][448] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][449] ([Intel XE#651]) +8 other tests skip
[448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt.html
[449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt:
- shard-dg2-set2: [SKIP][450] ([Intel XE#651]) -> [SKIP][451] ([Intel XE#2136] / [Intel XE#2351]) +9 other tests skip
[450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt.html
[451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-dg2-set2: [SKIP][452] ([Intel XE#658]) -> [SKIP][453] ([Intel XE#2136] / [Intel XE#2351])
[452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
[453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2-set2: [SKIP][454] ([Intel XE#2136]) -> [SKIP][455] ([Intel XE#653]) +30 other tests skip
[454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
[455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt:
- shard-dg2-set2: [SKIP][456] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][457] ([Intel XE#656]) +3 other tests skip
[456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html
[457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][458] ([Intel XE#2312]) -> [SKIP][459] ([Intel XE#2313]) +10 other tests skip
[458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
[459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-dg2-set2: [SKIP][460] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][461] ([Intel XE#653]) +9 other tests skip
[460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
[461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][462] ([Intel XE#653]) -> [SKIP][463] ([Intel XE#2136]) +25 other tests skip
[462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
[463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: [SKIP][464] ([Intel XE#653]) -> [SKIP][465] ([Intel XE#2136] / [Intel XE#2351]) +6 other tests skip
[464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
[465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-pri-indfb-multidraw:
- shard-bmg: [SKIP][466] ([Intel XE#2313]) -> [SKIP][467] ([Intel XE#2312]) +11 other tests skip
[466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-pri-indfb-multidraw.html
[467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render:
- shard-dg2-set2: [SKIP][468] ([Intel XE#656]) -> [SKIP][469] ([Intel XE#2136]) +8 other tests skip
[468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html
[469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt:
- shard-dg2-set2: [SKIP][470] ([Intel XE#2136]) -> [SKIP][471] ([Intel XE#656]) +3 other tests skip
[470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html
[471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][472] ([Intel XE#656]) -> [SKIP][473] ([Intel XE#653])
[472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2-set2: [SKIP][474] ([Intel XE#2423] / [i915#2575]) -> [SKIP][475] ([Intel XE#605])
[474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_getfb@getfb-reject-ccs.html
[475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-435/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-dg2-set2: [DMESG-WARN][476] ([Intel XE#3468]) -> [SKIP][477] ([Intel XE#2423] / [i915#2575])
[476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_hdr@bpc-switch-suspend.html
[477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][478] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][479] ([Intel XE#3544])
[478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html
[479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-dg2-set2: [SKIP][480] ([Intel XE#2927]) -> [SKIP][481] ([Intel XE#2136])
[480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_joiner@basic-ultra-joiner.html
[481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-dg2-set2: [SKIP][482] ([Intel XE#346]) -> [SKIP][483] ([Intel XE#2136])
[482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_joiner@invalid-modeset-big-joiner.html
[483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-466/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-dg2-set2: [SKIP][484] ([Intel XE#2136]) -> [SKIP][485] ([Intel XE#2925])
[484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
[485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-432/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2-set2: [SKIP][486] ([Intel XE#356]) -> [SKIP][487] ([Intel XE#2423] / [i915#2575])
[486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-466/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane@pixel-format:
- shard-dg2-set2: [INCOMPLETE][488] ([Intel XE#1035] / [Intel XE#1727]) -> [SKIP][489] ([Intel XE#2423] / [i915#2575])
[488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_plane@pixel-format.html
[489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@kms_plane@pixel-format.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-dg2-set2: [SKIP][490] ([Intel XE#2423] / [i915#2575]) -> [INCOMPLETE][491] ([Intel XE#1035] / [Intel XE#1727] / [Intel XE#3468])
[490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_plane@plane-panning-bottom-right-suspend.html
[491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-432/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_cursor@primary:
- shard-dg2-set2: [FAIL][492] ([Intel XE#616]) -> [SKIP][493] ([Intel XE#2423] / [i915#2575])
[492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_plane_cursor@primary.html
[493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@kms_plane_cursor@primary.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2-set2: [SKIP][494] ([Intel XE#2423] / [i915#2575]) -> [SKIP][495] ([Intel XE#455]) +10 other tests skip
[494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_plane_multiple@tiling-y.html
[495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-435/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
- shard-dg2-set2: [SKIP][496] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][497] ([Intel XE#2423] / [i915#2575])
[496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
[497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-dg2-set2: [SKIP][498] ([Intel XE#2423] / [i915#2575]) -> [SKIP][499] ([Intel XE#2763] / [Intel XE#455]) +2 other tests skip
[498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
[499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-dg2-set2: [SKIP][500] ([Intel XE#2938]) -> [SKIP][501] ([Intel XE#2136])
[500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_pm_backlight@brightness-with-dpms.html
[501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-466/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg2-set2: [SKIP][502] ([Intel XE#2136]) -> [SKIP][503] ([Intel XE#870]) +1 other test skip
[502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_pm_backlight@fade-with-suspend.html
[503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-436/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2-set2: [SKIP][504] ([Intel XE#1122]) -> [SKIP][505] ([Intel XE#2136] / [Intel XE#2351])
[504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_pm_dc@dc3co-vpb-simulation.html
[505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2-set2: [SKIP][506] ([Intel XE#1129]) -> [SKIP][507] ([Intel XE#2136])
[506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_pm_dc@dc5-psr.html
[507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-466/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-dpms:
- shard-bmg: [FAIL][508] ([Intel XE#1430]) -> [DMESG-FAIL][509] ([Intel XE#3468])
[508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-4/igt@kms_pm_dc@dc6-dpms.html
[509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-7/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@deep-pkgc:
- shard-dg2-set2: [SKIP][510] ([Intel XE#908]) -> [SKIP][511] ([Intel XE#2136])
[510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_pm_dc@deep-pkgc.html
[511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-466/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@modeset-stress-extra-wait:
- shard-dg2-set2: [SKIP][512] ([Intel XE#2446]) -> [DMESG-WARN][513] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn
[512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_pm_rpm@modeset-stress-extra-wait.html
[513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-463/igt@kms_pm_rpm@modeset-stress-extra-wait.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-dg2-set2: [SKIP][514] ([Intel XE#2136]) -> [SKIP][515] ([Intel XE#1489]) +12 other tests skip
[514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
[515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-463/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-dg2-set2: [SKIP][516] ([Intel XE#1489]) -> [SKIP][517] ([Intel XE#2136]) +7 other tests skip
[516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
[517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-466/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2-set2: [SKIP][518] ([Intel XE#2136]) -> [SKIP][519] ([Intel XE#1122])
[518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_psr2_su@page_flip-nv12.html
[519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-436/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2-set2: [SKIP][520] ([Intel XE#1122]) -> [SKIP][521] ([Intel XE#2136])
[520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_psr2_su@page_flip-xrgb8888.html
[521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-no-drrs:
- shard-dg2-set2: [SKIP][522] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][523] ([Intel XE#2136] / [Intel XE#2351]) +5 other tests skip
[522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_psr@fbc-pr-no-drrs.html
[523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@kms_psr@fbc-pr-no-drrs.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2-set2: [SKIP][524] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][525] ([Intel XE#2136]) +10 other tests skip
[524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_psr@fbc-psr2-sprite-plane-move.html
[525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@fbc-psr2-suspend:
- shard-dg2-set2: [SKIP][526] ([Intel XE#2136]) -> [SKIP][527] ([Intel XE#2850] / [Intel XE#929]) +16 other tests skip
[526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_psr@fbc-psr2-suspend.html
[527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-436/igt@kms_psr@fbc-psr2-suspend.html
* igt@kms_psr@psr-cursor-render:
- shard-dg2-set2: [SKIP][528] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][529] ([Intel XE#2850] / [Intel XE#929]) +4 other tests skip
[528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_psr@psr-cursor-render.html
[529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-463/igt@kms_psr@psr-cursor-render.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-dg2-set2: [SKIP][530] ([Intel XE#2423] / [i915#2575]) -> [SKIP][531] ([Intel XE#3414])
[530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_rotation_crc@primary-rotation-90.html
[531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-463/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg2-set2: [SKIP][532] ([Intel XE#1127]) -> [SKIP][533] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-466/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2-set2: [SKIP][534] ([Intel XE#3414]) -> [SKIP][535] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
[535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-set2: [SKIP][536] ([Intel XE#1500]) -> [SKIP][537] ([Intel XE#2423] / [i915#2575])
[536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vblank@ts-continuation-modeset-rpm:
- shard-bmg: [DMESG-WARN][538] ([Intel XE#3468]) -> [INCOMPLETE][539] ([Intel XE#3468])
[538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_vblank@ts-continuation-modeset-rpm.html
[539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-7/igt@kms_vblank@ts-continuation-modeset-rpm.html
* igt@kms_vblank@wait-forked-busy:
- shard-dg2-set2: [SKIP][540] ([Intel XE#2423] / [i915#2575]) -> [INCOMPLETE][541] ([Intel XE#1727])
[540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_vblank@wait-forked-busy.html
[541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-436/igt@kms_vblank@wait-forked-busy.html
* igt@kms_vrr@flip-dpms:
- shard-dg2-set2: [SKIP][542] ([Intel XE#455]) -> [SKIP][543] ([Intel XE#2423] / [i915#2575]) +7 other tests skip
[542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_vrr@flip-dpms.html
[543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@kms_vrr@flip-dpms.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2-set2: [SKIP][544] ([Intel XE#2423] / [i915#2575]) -> [SKIP][545] ([Intel XE#756]) +1 other test skip
[544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
[545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-432/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@xe_compute_preempt@compute-preempt:
- shard-dg2-set2: [SKIP][546] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][547] ([Intel XE#1130])
[546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@xe_compute_preempt@compute-preempt.html
[547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@xe_compute_preempt@compute-preempt.html
* igt@xe_compute_preempt@compute-threadgroup-preempt:
- shard-dg2-set2: [SKIP][548] ([Intel XE#1130]) -> [SKIP][549] ([Intel XE#1280] / [Intel XE#455])
[548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@xe_compute_preempt@compute-threadgroup-preempt.html
[549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-435/igt@xe_compute_preempt@compute-threadgroup-preempt.html
* igt@xe_copy_basic@mem-copy-linear-0xfffe:
- shard-dg2-set2: [SKIP][550] ([Intel XE#1123]) -> [SKIP][551] ([Intel XE#1130])
[550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
[551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
* igt@xe_copy_basic@mem-set-linear-0xfffe:
- shard-dg2-set2: [SKIP][552] ([Intel XE#1130]) -> [SKIP][553] ([Intel XE#1126])
[552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0xfffe.html
[553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-463/igt@xe_copy_basic@mem-set-linear-0xfffe.html
* igt@xe_eudebug@basic-close:
- shard-dg2-set2: [SKIP][554] ([Intel XE#2905]) -> [SKIP][555] ([Intel XE#1130]) +7 other tests skip
[554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@xe_eudebug@basic-close.html
[555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@xe_eudebug@basic-close.html
* igt@xe_eudebug_online@basic-breakpoint:
- shard-dg2-set2: [SKIP][556] ([Intel XE#1130]) -> [SKIP][557] ([Intel XE#2905]) +12 other tests skip
[556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@xe_eudebug_online@basic-breakpoint.html
[557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-432/igt@xe_eudebug_online@basic-breakpoint.html
* igt@xe_eudebug_online@pagefault-write:
- shard-dg2-set2: [SKIP][558] -> [SKIP][559] ([Intel XE#1130])
[558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@xe_eudebug_online@pagefault-write.html
[559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@xe_eudebug_online@pagefault-write.html
* igt@xe_evict@evict-beng-large-external:
- shard-dg2-set2: [DMESG-WARN][560] -> [SKIP][561] ([Intel XE#1130])
[560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@xe_evict@evict-beng-large-external.html
[561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@xe_evict@evict-beng-large-external.html
* igt@xe_evict@evict-beng-large-multi-vm-cm:
- shard-dg2-set2: [FAIL][562] ([Intel XE#1600]) -> [SKIP][563] ([Intel XE#1130])
[562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@xe_evict@evict-beng-large-multi-vm-cm.html
[563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@xe_evict@evict-beng-large-multi-vm-cm.html
* igt@xe_evict@evict-beng-mixed-many-threads-large:
- shard-dg2-set2: [SKIP][564] ([Intel XE#1130]) -> [TIMEOUT][565] ([Intel XE#1473])
[564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@xe_evict@evict-beng-mixed-many-threads-large.html
[565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-432/igt@xe_evict@evict-beng-mixed-many-threads-large.html
* igt@xe_evict@evict-beng-mixed-threads-large:
- shard-bmg: [DMESG-WARN][566] ([Intel XE#3468]) -> [INCOMPLETE][567] ([Intel XE#1473] / [Intel XE#3468])
[566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@xe_evict@evict-beng-mixed-threads-large.html
[567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-5/igt@xe_evict@evict-beng-mixed-threads-large.html
* igt@xe_exec_compute_mode@once-bindexecqueue:
- shard-dg2-set2: [SKIP][568] ([Intel XE#1130]) -> [DMESG-WARN][569] ([Intel XE#1727])
[568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@xe_exec_compute_mode@once-bindexecqueue.html
[569]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-436/igt@xe_exec_compute_mode@once-bindexecqueue.html
* igt@xe_exec_fault_mode@once-userptr-invalidate-imm:
- shard-dg2-set2: [SKIP][570] ([Intel XE#1130]) -> [SKIP][571] ([Intel XE#288]) +30 other tests skip
[570]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@xe_exec_fault_mode@once-userptr-invalidate-imm.html
[571]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-435/igt@xe_exec_fault_mode@once-userptr-invalidate-imm.html
* igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
- shard-dg2-set2: [SKIP][572] ([Intel XE#288]) -> [SKIP][573] ([Intel XE#1130]) +27 other tests skip
[572]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
[573]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-466/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence:
- shard-dg2-set2: [SKIP][574] ([Intel XE#2360]) -> [SKIP][575] ([Intel XE#1130])
[574]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html
[575]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-466/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html
* igt@xe_exec_threads@threads-bal-mixed-shared-vm-userptr-invalidate:
- shard-dg2-set2: [DMESG-WARN][576] ([Intel XE#3515]) -> [SKIP][577] ([Intel XE#1130])
[576]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@xe_exec_threads@threads-bal-mixed-shared-vm-userptr-invalidate.html
[577]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@xe_exec_threads@threads-bal-mixed-shared-vm-userptr-invalidate.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init:
- shard-dg2-set2: [SKIP][578] ([Intel XE#1130]) -> [DMESG-WARN][579] ([Intel XE#3343])
[578]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
[579]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-463/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init:
- shard-bmg: [DMESG-WARN][580] ([Intel XE#3343] / [Intel XE#3468]) -> [DMESG-WARN][581] ([Intel XE#3343])
[580]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html
[581]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init:
- shard-dg2-set2: [DMESG-WARN][582] ([Intel XE#3343]) -> [SKIP][583] ([Intel XE#1130])
[582]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
[583]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create:
- shard-dg2-set2: [DMESG-WARN][584] ([Intel XE#3467]) -> [SKIP][585] ([Intel XE#1130]) +2 other tests skip
[584]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html
[585]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html
* igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare:
- shard-bmg: [DMESG-FAIL][586] ([Intel XE#3467]) -> [FAIL][587] ([Intel XE#3499])
[586]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
[587]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-7/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
* igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run:
- shard-bmg: [FAIL][588] ([Intel XE#3499]) -> [DMESG-FAIL][589] ([Intel XE#3467] / [Intel XE#3468])
[588]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html
[589]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html
* igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc:
- shard-bmg: [DMESG-FAIL][590] ([Intel XE#3467] / [Intel XE#3468]) -> [DMESG-FAIL][591] ([Intel XE#3467])
[590]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
[591]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-3/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
* igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind:
- shard-dg2-set2: [SKIP][592] ([Intel XE#1130]) -> [DMESG-WARN][593] ([Intel XE#3467]) +2 other tests dmesg-warn
[592]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html
[593]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-463/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html
* igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch:
- shard-bmg: [DMESG-WARN][594] ([Intel XE#3467]) -> [DMESG-WARN][595] ([Intel XE#3467] / [Intel XE#3468])
[594]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html
[595]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-bmg-4/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html
* igt@xe_huc_copy@huc_copy:
- shard-dg2-set2: [SKIP][596] ([Intel XE#255]) -> [SKIP][597] ([Intel XE#1130])
[596]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@xe_huc_copy@huc_copy.html
[597]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-466/igt@xe_huc_copy@huc_copy.html
* igt@xe_live_ktest@xe_mocs:
- shard-dg2-set2: [FAIL][598] ([Intel XE#1999]) -> [SKIP][599] ([Intel XE#1192])
[598]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@xe_live_ktest@xe_mocs.html
[599]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-463/igt@xe_live_ktest@xe_mocs.html
* igt@xe_module_load@many-reload:
- shard-dg2-set2: [FAIL][600] ([Intel XE#3546]) -> [DMESG-WARN][601] ([Intel XE#3467])
[600]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@xe_module_load@many-reload.html
[601]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-463/igt@xe_module_load@many-reload.html
* igt@xe_oa@invalid-create-userspace-config:
- shard-dg2-set2: [SKIP][602] ([Intel XE#3573]) -> [SKIP][603] ([Intel XE#1130]) +2 other tests skip
[602]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@xe_oa@invalid-create-userspace-config.html
[603]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-466/igt@xe_oa@invalid-create-userspace-config.html
* igt@xe_oa@invalid-oa-format-id:
- shard-dg2-set2: [SKIP][604] ([Intel XE#1130]) -> [SKIP][605] ([Intel XE#3573]) +8 other tests skip
[604]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@xe_oa@invalid-oa-format-id.html
[605]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-432/igt@xe_oa@invalid-oa-format-id.html
* igt@xe_pat@pat-index-xehpc:
- shard-dg2-set2: [SKIP][606] ([Intel XE#2838] / [Intel XE#979]) -> [SKIP][607] ([Intel XE#1130])
[606]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@xe_pat@pat-index-xehpc.html
[607]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelpg:
- shard-dg2-set2: [SKIP][608] ([Intel XE#979]) -> [SKIP][609] ([Intel XE#1130])
[608]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@xe_pat@pat-index-xelpg.html
[609]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-466/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@read:
- shard-dg2-set2: [SKIP][610] ([Intel XE#1061]) -> [FAIL][611] ([Intel XE#1173])
[610]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@xe_peer2peer@read.html
[611]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-435/igt@xe_peer2peer@read.html
* igt@xe_peer2peer@write:
- shard-dg2-set2: [FAIL][612] ([Intel XE#1173]) -> [SKIP][613] ([Intel XE#1061])
[612]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@xe_peer2peer@write.html
[613]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-466/igt@xe_peer2peer@write.html
* igt@xe_pm@d3cold-mocs:
- shard-dg2-set2: [SKIP][614] ([Intel XE#2284]) -> [SKIP][615] ([Intel XE#1130])
[614]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@xe_pm@d3cold-mocs.html
[615]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-466/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-dg2-set2: [SKIP][616] ([Intel XE#1130]) -> [SKIP][617] ([Intel XE#2284] / [Intel XE#366]) +2 other tests skip
[616]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@xe_pm@d3cold-multiple-execs.html
[617]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-463/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pm@d3hot-mmap-vram:
- shard-dg2-set2: [DMESG-WARN][618] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][619] ([Intel XE#1130]) +1 other test skip
[618]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@xe_pm@d3hot-mmap-vram.html
[619]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-466/igt@xe_pm@d3hot-mmap-vram.html
* igt@xe_pm@d3hot-mocs:
- shard-dg2-set2: [SKIP][620] ([Intel XE#1130]) -> [DMESG-WARN][621] ([Intel XE#3468])
[620]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@xe_pm@d3hot-mocs.html
[621]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-463/igt@xe_pm@d3hot-mocs.html
* igt@xe_pm@s3-vm-bind-userptr:
- shard-dg2-set2: [DMESG-WARN][622] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [SKIP][623] ([Intel XE#1130])
[622]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@xe_pm@s3-vm-bind-userptr.html
[623]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-466/igt@xe_pm@s3-vm-bind-userptr.html
* igt@xe_pm_residency@cpg-basic:
- shard-dg2-set2: [SKIP][624] ([Intel XE#1130]) -> [DMESG-WARN][625] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn
[624]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@xe_pm_residency@cpg-basic.html
[625]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-436/igt@xe_pm_residency@cpg-basic.html
* igt@xe_query@multigpu-query-config:
- shard-dg2-set2: [SKIP][626] ([Intel XE#1130]) -> [SKIP][627] ([Intel XE#944]) +5 other tests skip
[626]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@xe_query@multigpu-query-config.html
[627]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-435/igt@xe_query@multigpu-query-config.html
* igt@xe_query@multigpu-query-gt-list:
- shard-dg2-set2: [SKIP][628] ([Intel XE#944]) -> [SKIP][629] ([Intel XE#1130]) +4 other tests skip
[628]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@xe_query@multigpu-query-gt-list.html
[629]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@xe_query@multigpu-query-gt-list.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-dg2-set2: [SKIP][630] ([Intel XE#3342]) -> [SKIP][631] ([Intel XE#1130])
[630]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@xe_sriov_flr@flr-each-isolation.html
[631]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@xe_sriov_flr@flr-each-isolation.html
* igt@xe_tlb@basic-tlb:
- shard-dg2-set2: [FAIL][632] ([Intel XE#2922]) -> [SKIP][633] ([Intel XE#1130])
[632]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@xe_tlb@basic-tlb.html
[633]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-466/igt@xe_tlb@basic-tlb.html
* igt@xe_vm@mixed-misaligned-binds-1611661312:
- shard-dg2-set2: [DMESG-WARN][634] ([Intel XE#1727]) -> [SKIP][635] ([Intel XE#1130]) +5 other tests skip
[634]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@xe_vm@mixed-misaligned-binds-1611661312.html
[635]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@xe_vm@mixed-misaligned-binds-1611661312.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-dg2-set2: [ABORT][636] ([Intel XE#3421]) -> [SKIP][637] ([Intel XE#1130])
[636]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@xe_wedged@wedged-at-any-timeout.html
[637]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/shard-dg2-434/igt@xe_wedged@wedged-at-any-timeout.html
[Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
[Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522
[Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600
[Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
[Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885
[Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999
[Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
[Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
[Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
[Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472
[Intel XE#2514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2514
[Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
[Intel XE#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550
[Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2922]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2922
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
[Intel XE#2998]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2998
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3416
[Intel XE#3421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3421
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3440
[Intel XE#3453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3453
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467
[Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468
[Intel XE#3486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3486
[Intel XE#3487]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3487
[Intel XE#3499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3499
[Intel XE#3515]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3515
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3546]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546
[Intel XE#3559]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3559
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
[i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
Build changes
-------------
* IGT: IGT_8125 -> IGTPW_12192
IGTPW_12192: 12192
IGT_8125: fbfda23ba003aab3454436d95c233dcf5e3bee54 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2275-6510562075d8541c218e72188f9ef339f8ba371f: 6510562075d8541c218e72188f9ef339f8ba371f
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12192/index.html
[-- Attachment #2: Type: text/html, Size: 196152 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-11-26 0:49 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-25 15:58 [i-g-t,0/2] tests/i915/pm_rc6_residency: Replace waitboost with sk.anirban
2024-11-25 15:58 ` [i-g-t, 1/2] tests/i915/pm_rc6_residency: Replace waitboost with spinner and use sysfs to reach peak frequency sk.anirban
2024-11-25 15:58 ` [i-g-t,2/2] HAX: Add rc6-idle tests to fast feedback list sk.anirban
2024-11-25 22:20 ` ✓ Xe.CI.BAT: success for tests/i915/pm_rc6_residency: Replace waitboost with Patchwork
2024-11-25 22:51 ` ✗ i915.CI.BAT: failure " Patchwork
2024-11-26 0:49 ` ✗ Xe.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox