* [PATCH i-g-t v2 0/3] Drop device scan cache logic
@ 2025-01-23 9:52 Zbigniew Kempczyński
2025-01-23 9:52 ` [PATCH i-g-t v2 1/3] lib/igt_device_scan: drop " Zbigniew Kempczyński
` (6 more replies)
0 siblings, 7 replies; 18+ messages in thread
From: Zbigniew Kempczyński @ 2025-01-23 9:52 UTC (permalink / raw)
To: igt-dev; +Cc: Zbigniew Kempczyński, Lucas De Marchi, Kamil Konieczny
In this series I haven't added limiting fetching attributes - after
reading udevadm-info.c I'm not sure it makes sense to limit it. Udevadm
in general does same things current igt_device_scan does, especially
it also skips some attributes. Additionally it skips attributes which
are binaries but I've some resistence to do this similar as strlen()
on blob is imo risky and it may result in segfault. I may send attrs
limiting in separate patch after this series will be reviewed (and
hopefully merged).
Series addresses main concern - stale device cache. Now rescans are
unconditional what prevents from opening old device after operations
on module.
Test added which checks device scanning in multithreading code likely
is not needed for merge. Adding to BAT should reveal early potential
problems with the series.
v2: retrieve missing scanning state variable (used for freeing
on multiple scans)
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Zbigniew Kempczyński (3):
lib/igt_device_scan: drop device scan cache logic
lib/igt_device_scan: change device list variable visibility
tests/xe_intel_bb: check multithreading rescans won't segfault
benchmarks/gem_wsim.c | 2 +-
lib/drmtest.c | 2 +-
lib/igt_device_scan.c | 16 +++-----
lib/igt_device_scan.h | 2 +-
lib/igt_multigpu.c | 2 +-
tests/core_hotunplug.c | 2 +-
tests/device_reset.c | 2 +-
tests/intel-ci/xe-fast-feedback.testlist | 1 +
tests/intel/i915_suspend.c | 4 +-
tests/intel/xe_intel_bb.c | 47 ++++++++++++++++++++++++
tools/intel_gpu_top.c | 2 +-
tools/intel_pm_rpm.c | 2 +-
tools/lsgpu.c | 2 +-
13 files changed, 64 insertions(+), 22 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 18+ messages in thread
* [PATCH i-g-t v2 1/3] lib/igt_device_scan: drop device scan cache logic
2025-01-23 9:52 [PATCH i-g-t v2 0/3] Drop device scan cache logic Zbigniew Kempczyński
@ 2025-01-23 9:52 ` Zbigniew Kempczyński
2025-01-23 17:25 ` Lucas De Marchi
2025-01-23 9:52 ` [PATCH i-g-t v2 2/3] lib/igt_device_scan: change device list variable visibility Zbigniew Kempczyński
` (5 subsequent siblings)
6 siblings, 1 reply; 18+ messages in thread
From: Zbigniew Kempczyński @ 2025-01-23 9:52 UTC (permalink / raw)
To: igt-dev; +Cc: Zbigniew Kempczyński, Lucas De Marchi, Kamil Konieczny
Tests which plays with module unload/load/reload must ensure scanned
device list cache is up-to-date. Missing direct calling of device scan
after module operations may lead to use stale data and use invalid
device name if it was changed in the meantime.
Lucas noticed device scanning overhead is minimal and we may drop
caching logic and scan (get drm data from udev) unconditionally.
From igt_runner perspective where single subtest is a separate process
device scan cost might likely be ignored.
Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
---
v2: Retrieve back current scanning state to prevent unnecessary freeing.
---
benchmarks/gem_wsim.c | 2 +-
lib/drmtest.c | 2 +-
lib/igt_device_scan.c | 14 ++++----------
lib/igt_device_scan.h | 2 +-
lib/igt_multigpu.c | 2 +-
tests/core_hotunplug.c | 2 +-
tests/device_reset.c | 2 +-
tests/intel/i915_suspend.c | 4 ++--
tools/intel_gpu_top.c | 2 +-
tools/intel_pm_rpm.c | 2 +-
tools/lsgpu.c | 2 +-
11 files changed, 15 insertions(+), 21 deletions(-)
diff --git a/benchmarks/gem_wsim.c b/benchmarks/gem_wsim.c
index 454b6f017b..7a6b100288 100644
--- a/benchmarks/gem_wsim.c
+++ b/benchmarks/gem_wsim.c
@@ -3178,7 +3178,7 @@ int main(int argc, char **argv)
}
}
- igt_devices_scan(false);
+ igt_devices_scan();
if (list_devices_arg) {
struct igt_devices_print_format fmt = {
diff --git a/lib/drmtest.c b/lib/drmtest.c
index 2dd4540b85..436b6de780 100644
--- a/lib/drmtest.c
+++ b/lib/drmtest.c
@@ -475,7 +475,7 @@ void drm_load_module(unsigned int chipset)
}
pthread_mutex_unlock(&mutex);
- igt_devices_scan(true);
+ igt_devices_scan();
}
static int __open_driver(const char *base, int offset, unsigned int chipset, int as_idx)
diff --git a/lib/igt_device_scan.c b/lib/igt_device_scan.c
index 8e2297087e..44b632008b 100644
--- a/lib/igt_device_scan.c
+++ b/lib/igt_device_scan.c
@@ -1090,18 +1090,12 @@ void igt_devices_free(void)
* igt_devices_scan
* @force: enforce scanning devices
*
- * Function scans udev in search of gpu devices. For first run it can be
- * called with @force = false. If something changes during the the test
- * or test does some module loading (new drm devices occurs during execution)
- * function must be called again with @force = true to refresh device array.
+ * Function scans udev in search of gpu devices.
*/
-void igt_devices_scan(bool force)
+void igt_devices_scan(void)
{
- if (force && igt_devs.devs_scanned)
- igt_devices_free();
-
if (igt_devs.devs_scanned)
- return;
+ igt_devices_free();
prepare_scan();
scan_drm_devices();
@@ -1983,7 +1977,7 @@ static bool __igt_device_card_match(const char *filter,
* Scan devices in case the user hasn't yet,
* but leave a decision on forced rescan on the user side.
*/
- igt_devices_scan(false);
+ igt_devices_scan();
if (igt_device_filter_apply(filter) == false)
return false;
diff --git a/lib/igt_device_scan.h b/lib/igt_device_scan.h
index 9087337458..fa90134aa3 100644
--- a/lib/igt_device_scan.h
+++ b/lib/igt_device_scan.h
@@ -63,7 +63,7 @@ struct igt_device_card {
uint16_t pci_vendor, pci_device;
};
-void igt_devices_scan(bool force);
+void igt_devices_scan(void);
void igt_devices_print(const struct igt_devices_print_format *fmt);
void igt_devices_print_vendors(void);
diff --git a/lib/igt_multigpu.c b/lib/igt_multigpu.c
index be0c113322..d4b89d706a 100644
--- a/lib/igt_multigpu.c
+++ b/lib/igt_multigpu.c
@@ -37,7 +37,7 @@ static int print_gpus(int count, int gpu_num)
igt_info("PCI devices available in the system:\n");
- igt_devices_scan(true);
+ igt_devices_scan();
devices = igt_device_filter_pci();
igt_devices_print(&fmt);
diff --git a/tests/core_hotunplug.c b/tests/core_hotunplug.c
index 7f17f4423d..18e9dfc346 100644
--- a/tests/core_hotunplug.c
+++ b/tests/core_hotunplug.c
@@ -488,7 +488,7 @@ static bool healthcheck(struct hotunplug *priv, bool recover)
sleep(1);
/* device name may have changed, rebuild IGT device list */
- igt_devices_scan(true);
+ igt_devices_scan();
node_healthcheck(priv, recover ? FLAG_RECOVER : 0);
if (!priv->failure)
diff --git a/tests/device_reset.c b/tests/device_reset.c
index 40681931c2..6c93a96c21 100644
--- a/tests/device_reset.c
+++ b/tests/device_reset.c
@@ -399,7 +399,7 @@ static void healthcheck(struct device_fds *dev)
/* give the kernel a breath for re-creating device nodes in devtmpfs */
sleep(1);
/* refresh device list */
- igt_devices_scan(true);
+ igt_devices_scan();
igt_debug("reopen the device\n");
dev->fds.dev = __drm_open_driver(DRIVER_ANY);
}
diff --git a/tests/intel/i915_suspend.c b/tests/intel/i915_suspend.c
index 3398b372b5..fae1031a23 100644
--- a/tests/intel/i915_suspend.c
+++ b/tests/intel/i915_suspend.c
@@ -265,7 +265,7 @@ test_suspend_without_i915(int state)
int fd;
fd = __drm_open_driver(DRIVER_INTEL);
- igt_devices_scan(false);
+ igt_devices_scan();
/*
* When module is unloaded and s2idle is triggered, PCI core leaves the endpoint
@@ -317,7 +317,7 @@ igt_main
* instead of reloading the i915 module.
*/
if (igt_device_filter_count())
- igt_devices_scan(true);
+ igt_devices_scan();
fd = drm_open_driver(DRIVER_INTEL);
}
diff --git a/tools/intel_gpu_top.c b/tools/intel_gpu_top.c
index a608b894d3..68d27089b9 100644
--- a/tools/intel_gpu_top.c
+++ b/tools/intel_gpu_top.c
@@ -2701,7 +2701,7 @@ int main(int argc, char **argv)
break;
};
- igt_devices_scan(false);
+ igt_devices_scan();
if (list_device) {
struct igt_devices_print_format fmt = {
diff --git a/tools/intel_pm_rpm.c b/tools/intel_pm_rpm.c
index 17cd2bc1d6..08c25ca8a6 100644
--- a/tools/intel_pm_rpm.c
+++ b/tools/intel_pm_rpm.c
@@ -142,7 +142,7 @@ int main(int argc, char *argv[])
}
env_device = getenv("IGT_DEVICE");
- igt_devices_scan(false);
+ igt_devices_scan();
if (env_device) {
if (!igt_device_card_match(env_device, &card)) {
diff --git a/tools/lsgpu.c b/tools/lsgpu.c
index 2bf2cf5f05..e482ca6b75 100644
--- a/tools/lsgpu.c
+++ b/tools/lsgpu.c
@@ -362,7 +362,7 @@ int main(int argc, char *argv[])
printf("Notice: Using filter from .igtrc\n");
}
- igt_devices_scan(false);
+ igt_devices_scan();
if (igt_device != NULL) {
struct igt_device_card card;
--
2.34.1
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH i-g-t v2 2/3] lib/igt_device_scan: change device list variable visibility
2025-01-23 9:52 [PATCH i-g-t v2 0/3] Drop device scan cache logic Zbigniew Kempczyński
2025-01-23 9:52 ` [PATCH i-g-t v2 1/3] lib/igt_device_scan: drop " Zbigniew Kempczyński
@ 2025-01-23 9:52 ` Zbigniew Kempczyński
2025-01-24 16:26 ` Kamil Konieczny
2025-01-23 9:52 ` [PATCH i-g-t v2 3/3] tests/xe_intel_bb: check multithreading rescans won't segfault Zbigniew Kempczyński
` (4 subsequent siblings)
6 siblings, 1 reply; 18+ messages in thread
From: Zbigniew Kempczyński @ 2025-01-23 9:52 UTC (permalink / raw)
To: igt-dev; +Cc: Zbigniew Kempczyński, Lucas De Marchi, Kamil Konieczny
In commit: 2e8f3e06fb (tests/xe_evict|exec_threads: Use fd reopen
to avoid corrupting global data) I simply changed tests which
corrupted device list global variable. i915 didn't use opening
devices in multithreaded tests but this changed with xe.
Device scan is now unconditional so we may change device list
variable visibility to TLS. With this reverting of above commit
should be safe (but I'm not sure is it worth to do this).
Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
---
lib/igt_device_scan.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/igt_device_scan.c b/lib/igt_device_scan.c
index 44b632008b..c36b0efa90 100644
--- a/lib/igt_device_scan.c
+++ b/lib/igt_device_scan.c
@@ -247,7 +247,7 @@ struct igt_device {
};
/* Scanned devices */
-static struct {
+static __thread struct {
struct igt_list_head all;
struct igt_list_head filtered;
bool devs_scanned;
--
2.34.1
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH i-g-t v2 3/3] tests/xe_intel_bb: check multithreading rescans won't segfault
2025-01-23 9:52 [PATCH i-g-t v2 0/3] Drop device scan cache logic Zbigniew Kempczyński
2025-01-23 9:52 ` [PATCH i-g-t v2 1/3] lib/igt_device_scan: drop " Zbigniew Kempczyński
2025-01-23 9:52 ` [PATCH i-g-t v2 2/3] lib/igt_device_scan: change device list variable visibility Zbigniew Kempczyński
@ 2025-01-23 9:52 ` Zbigniew Kempczyński
2025-01-24 16:28 ` Kamil Konieczny
2025-01-23 10:36 ` ✓ i915.CI.BAT: success for Drop device scan cache logic (rev2) Patchwork
` (3 subsequent siblings)
6 siblings, 1 reply; 18+ messages in thread
From: Zbigniew Kempczyński @ 2025-01-23 9:52 UTC (permalink / raw)
To: igt-dev; +Cc: Zbigniew Kempczyński, Lucas De Marchi, Kamil Konieczny
This test is likely only for checking purposes, it doesn't makes
sense to merge it after series review.
Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
---
tests/intel-ci/xe-fast-feedback.testlist | 1 +
tests/intel/xe_intel_bb.c | 47 ++++++++++++++++++++++++
2 files changed, 48 insertions(+)
diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist
index 0234d3e72d..7adb9a3436 100644
--- a/tests/intel-ci/xe-fast-feedback.testlist
+++ b/tests/intel-ci/xe-fast-feedback.testlist
@@ -7,6 +7,7 @@ igt@fbdev@nullptr
igt@fbdev@read
igt@fbdev@write
+igt@xe_intel_bb@multithread-open
igt@kms_addfb_basic@addfb25-4-tiled
igt@kms_addfb_basic@addfb25-bad-modifier
igt@kms_addfb_basic@addfb25-modifier-no-flag
diff --git a/tests/intel/xe_intel_bb.c b/tests/intel/xe_intel_bb.c
index 845052bf26..5df009f9ed 100644
--- a/tests/intel/xe_intel_bb.c
+++ b/tests/intel/xe_intel_bb.c
@@ -18,6 +18,7 @@
#include "igt.h"
#include "igt_crc.h"
+#include "igt_device_scan.h"
#include "intel_blt.h"
#include "intel_bufops.h"
#include "intel_mocs.h"
@@ -950,6 +951,49 @@ static int render(struct buf_ops *bops, uint32_t tiling,
return fails;
}
+/**
+ * SUBTEST: multithread-open
+ * Description: check device scanning when multiple threads are involved
+ */
+static void *__single_open(void *data)
+{
+ struct igt_device_card card;
+ int fd;
+
+ igt_info("Thread: %d\n", (int)to_user_pointer(data));
+
+ for (int i = 0; i < 5; i++)
+ igt_devices_scan();
+
+ igt_assert_eq(igt_device_card_match("pci:vendor=intel", &card), true);
+ igt_info("Device detail: %s, %s, %s\n", card.subsystem, card.card, card.render);
+
+ fd = igt_open_card(&card);
+ igt_info("Fd: %d\n", fd);
+ igt_assert(fd >= 0);
+ close(fd);
+
+ return NULL;
+}
+
+#define NUM_THREADS 100
+static void multithread_open(void)
+{
+ pthread_t pth[NUM_THREADS];
+ int i, ret;
+
+ for (i = 0; i < NUM_THREADS; i++) {
+ ret = pthread_create(&pth[i], NULL, __single_open,
+ from_user_pointer(i));
+ igt_assert_eq(ret, 0);
+ }
+
+ for (i = 0; i < NUM_THREADS; i++) {
+ ret = pthread_join(pth[i], NULL);
+ igt_assert_eq(ret, 0);
+ }
+}
+
static int opt_handler(int opt, int opt_index, void *data)
{
switch (opt) {
@@ -1063,6 +1107,9 @@ igt_main_args("dpib", NULL, help_str, opt_handler, NULL)
}
}
+ igt_subtest("multithread-open")
+ multithread_open();
+
igt_fixture {
buf_ops_destroy(bops);
drm_close_driver(xe);
--
2.34.1
^ permalink raw reply related [flat|nested] 18+ messages in thread
* ✓ i915.CI.BAT: success for Drop device scan cache logic (rev2)
2025-01-23 9:52 [PATCH i-g-t v2 0/3] Drop device scan cache logic Zbigniew Kempczyński
` (2 preceding siblings ...)
2025-01-23 9:52 ` [PATCH i-g-t v2 3/3] tests/xe_intel_bb: check multithreading rescans won't segfault Zbigniew Kempczyński
@ 2025-01-23 10:36 ` Patchwork
2025-01-23 11:15 ` ✓ Xe.CI.BAT: " Patchwork
` (2 subsequent siblings)
6 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2025-01-23 10:36 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5473 bytes --]
== Series Details ==
Series: Drop device scan cache logic (rev2)
URL : https://patchwork.freedesktop.org/series/143880/
State : success
== Summary ==
CI Bug Log - changes from IGT_8207 -> IGTPW_12487
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/index.html
Participating hosts (43 -> 42)
------------------------------
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_12487 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_module_load@load:
- fi-pnv-d510: [PASS][1] -> [ABORT][2] ([i915#13203])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8207/fi-pnv-d510/igt@i915_module_load@load.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/fi-pnv-d510/igt@i915_module_load@load.html
* igt@kms_chamelium_edid@vga-edid-read:
- bat-dg2-13: NOTRUN -> [SKIP][3] ([Intel XE#484] / [i915#4550]) +1 other test skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/bat-dg2-13/igt@kms_chamelium_edid@vga-edid-read.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-mtlp-8: [DMESG-FAIL][4] ([i915#12061]) -> [PASS][5] +1 other test pass
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8207/bat-mtlp-8/igt@i915_selftest@live.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/bat-mtlp-8/igt@i915_selftest@live.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-dg2-9: [SKIP][6] ([i915#5274]) -> [PASS][7]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8207/bat-dg2-9/igt@kms_force_connector_basic@prune-stale-modes.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/bat-dg2-9/igt@kms_force_connector_basic@prune-stale-modes.html
- bat-mtlp-6: [SKIP][8] ([i915#5274] / [i915#9792]) -> [PASS][9]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8207/bat-mtlp-6/igt@kms_force_connector_basic@prune-stale-modes.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/bat-mtlp-6/igt@kms_force_connector_basic@prune-stale-modes.html
- bat-dg2-14: [SKIP][10] ([i915#5274]) -> [PASS][11]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8207/bat-dg2-14/igt@kms_force_connector_basic@prune-stale-modes.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/bat-dg2-14/igt@kms_force_connector_basic@prune-stale-modes.html
- bat-dg2-11: [SKIP][12] ([i915#5274]) -> [PASS][13]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8207/bat-dg2-11/igt@kms_force_connector_basic@prune-stale-modes.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/bat-dg2-11/igt@kms_force_connector_basic@prune-stale-modes.html
- bat-mtlp-8: [SKIP][14] ([i915#5274]) -> [PASS][15]
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8207/bat-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/bat-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html
- bat-dg2-8: [SKIP][16] ([i915#5274]) -> [PASS][17]
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8207/bat-dg2-8/igt@kms_force_connector_basic@prune-stale-modes.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/bat-dg2-8/igt@kms_force_connector_basic@prune-stale-modes.html
- {bat-mtlp-9}: [SKIP][18] ([i915#5274]) -> [PASS][19]
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8207/bat-mtlp-9/igt@kms_force_connector_basic@prune-stale-modes.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/bat-mtlp-9/igt@kms_force_connector_basic@prune-stale-modes.html
- bat-arlh-3: [SKIP][20] ([i915#12648]) -> [PASS][21]
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8207/bat-arlh-3/igt@kms_force_connector_basic@prune-stale-modes.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/bat-arlh-3/igt@kms_force_connector_basic@prune-stale-modes.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#484]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/484
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12648]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12648
[i915#13203]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13203
[i915#4550]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4550
[i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
[i915#9792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9792
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8207 -> IGTPW_12487
* Linux: CI_DRM_16003 -> CI_DRM_16005
CI-20190529: 20190529
CI_DRM_16003: db7cf8d52a41001ea2780cf834fed3dc490343d2 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_16005: 33906a7032dfca356fd7309e6abbdf5a7ea97db4 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12487: 34ada825e9efa46c9deef07a2117005a1408e090 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8207: 9f36f9f9e8825a67b762630c2b31628ddcda5c10 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/index.html
[-- Attachment #2: Type: text/html, Size: 6640 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread
* ✓ Xe.CI.BAT: success for Drop device scan cache logic (rev2)
2025-01-23 9:52 [PATCH i-g-t v2 0/3] Drop device scan cache logic Zbigniew Kempczyński
` (3 preceding siblings ...)
2025-01-23 10:36 ` ✓ i915.CI.BAT: success for Drop device scan cache logic (rev2) Patchwork
@ 2025-01-23 11:15 ` Patchwork
2025-01-23 23:13 ` ✗ Xe.CI.Full: failure " Patchwork
2025-01-24 3:29 ` ✗ i915.CI.Full: " Patchwork
6 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2025-01-23 11:15 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3939 bytes --]
== Series Details ==
Series: Drop device scan cache logic (rev2)
URL : https://patchwork.freedesktop.org/series/143880/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8207_BAT -> XEIGTPW_12487_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
New tests
---------
New tests have been introduced between XEIGT_8207_BAT and XEIGTPW_12487_BAT:
### New IGT tests (1) ###
* igt@xe_intel_bb@multithread-open:
- Statuses : 8 pass(s)
- Exec time: [1.31, 6.21] s
Known issues
------------
Here are the changes found in XEIGTPW_12487_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- bat-adlp-vf: NOTRUN -> [SKIP][1] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/bat-adlp-vf/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- bat-adlp-vf: NOTRUN -> [SKIP][2] ([Intel XE#2229])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/bat-adlp-vf/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
#### Possible fixes ####
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-dg2-oem2: [SKIP][3] ([i915#5274]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/bat-dg2-oem2/igt@kms_force_connector_basic@prune-stale-modes.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/bat-dg2-oem2/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@xe_live_ktest@xe_migrate:
- bat-adlp-vf: [SKIP][5] ([Intel XE#1192]) -> [PASS][6] +1 other test pass
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html
* igt@xe_pat@pat-index-xelp@render:
- bat-adlp-vf: [DMESG-WARN][7] ([Intel XE#3970] / [Intel XE#4078]) -> [PASS][8] +2 other tests pass
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/bat-adlp-vf/igt@xe_pat@pat-index-xelp@render.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/bat-adlp-vf/igt@xe_pat@pat-index-xelp@render.html
#### Warnings ####
* igt@xe_live_ktest@xe_bo:
- bat-adlp-vf: [SKIP][9] ([Intel XE#1192]) -> [SKIP][10] ([Intel XE#2229] / [Intel XE#455])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970
[Intel XE#4078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4078
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
Build changes
-------------
* IGT: IGT_8207 -> IGTPW_12487
* Linux: xe-2534-db7cf8d52a41001ea2780cf834fed3dc490343d2 -> xe-2536-33906a7032dfca356fd7309e6abbdf5a7ea97db4
IGTPW_12487: 34ada825e9efa46c9deef07a2117005a1408e090 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8207: 9f36f9f9e8825a67b762630c2b31628ddcda5c10 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2534-db7cf8d52a41001ea2780cf834fed3dc490343d2: db7cf8d52a41001ea2780cf834fed3dc490343d2
xe-2536-33906a7032dfca356fd7309e6abbdf5a7ea97db4: 33906a7032dfca356fd7309e6abbdf5a7ea97db4
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/index.html
[-- Attachment #2: Type: text/html, Size: 4958 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH i-g-t v2 1/3] lib/igt_device_scan: drop device scan cache logic
2025-01-23 9:52 ` [PATCH i-g-t v2 1/3] lib/igt_device_scan: drop " Zbigniew Kempczyński
@ 2025-01-23 17:25 ` Lucas De Marchi
0 siblings, 0 replies; 18+ messages in thread
From: Lucas De Marchi @ 2025-01-23 17:25 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev, Kamil Konieczny
On Thu, Jan 23, 2025 at 10:52:06AM +0100, Zbigniew Kempczyński wrote:
>Tests which plays with module unload/load/reload must ensure scanned
>device list cache is up-to-date. Missing direct calling of device scan
>after module operations may lead to use stale data and use invalid
>device name if it was changed in the meantime.
>
>Lucas noticed device scanning overhead is minimal and we may drop
>caching logic and scan (get drm data from udev) unconditionally.
>From igt_runner perspective where single subtest is a separate process
>device scan cost might likely be ignored.
>
>Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
awesome, thanks
Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>
Lucas De Marchi
>Cc: Lucas De Marchi <lucas.demarchi@intel.com>
>Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
>---
>v2: Retrieve back current scanning state to prevent unnecessary freeing.
>---
> benchmarks/gem_wsim.c | 2 +-
> lib/drmtest.c | 2 +-
> lib/igt_device_scan.c | 14 ++++----------
> lib/igt_device_scan.h | 2 +-
> lib/igt_multigpu.c | 2 +-
> tests/core_hotunplug.c | 2 +-
> tests/device_reset.c | 2 +-
> tests/intel/i915_suspend.c | 4 ++--
> tools/intel_gpu_top.c | 2 +-
> tools/intel_pm_rpm.c | 2 +-
> tools/lsgpu.c | 2 +-
> 11 files changed, 15 insertions(+), 21 deletions(-)
>
>diff --git a/benchmarks/gem_wsim.c b/benchmarks/gem_wsim.c
>index 454b6f017b..7a6b100288 100644
>--- a/benchmarks/gem_wsim.c
>+++ b/benchmarks/gem_wsim.c
>@@ -3178,7 +3178,7 @@ int main(int argc, char **argv)
> }
> }
>
>- igt_devices_scan(false);
>+ igt_devices_scan();
>
> if (list_devices_arg) {
> struct igt_devices_print_format fmt = {
>diff --git a/lib/drmtest.c b/lib/drmtest.c
>index 2dd4540b85..436b6de780 100644
>--- a/lib/drmtest.c
>+++ b/lib/drmtest.c
>@@ -475,7 +475,7 @@ void drm_load_module(unsigned int chipset)
> }
>
> pthread_mutex_unlock(&mutex);
>- igt_devices_scan(true);
>+ igt_devices_scan();
> }
>
> static int __open_driver(const char *base, int offset, unsigned int chipset, int as_idx)
>diff --git a/lib/igt_device_scan.c b/lib/igt_device_scan.c
>index 8e2297087e..44b632008b 100644
>--- a/lib/igt_device_scan.c
>+++ b/lib/igt_device_scan.c
>@@ -1090,18 +1090,12 @@ void igt_devices_free(void)
> * igt_devices_scan
> * @force: enforce scanning devices
> *
>- * Function scans udev in search of gpu devices. For first run it can be
>- * called with @force = false. If something changes during the the test
>- * or test does some module loading (new drm devices occurs during execution)
>- * function must be called again with @force = true to refresh device array.
>+ * Function scans udev in search of gpu devices.
> */
>-void igt_devices_scan(bool force)
>+void igt_devices_scan(void)
> {
>- if (force && igt_devs.devs_scanned)
>- igt_devices_free();
>-
> if (igt_devs.devs_scanned)
>- return;
>+ igt_devices_free();
>
> prepare_scan();
> scan_drm_devices();
>@@ -1983,7 +1977,7 @@ static bool __igt_device_card_match(const char *filter,
> * Scan devices in case the user hasn't yet,
> * but leave a decision on forced rescan on the user side.
> */
>- igt_devices_scan(false);
>+ igt_devices_scan();
>
> if (igt_device_filter_apply(filter) == false)
> return false;
>diff --git a/lib/igt_device_scan.h b/lib/igt_device_scan.h
>index 9087337458..fa90134aa3 100644
>--- a/lib/igt_device_scan.h
>+++ b/lib/igt_device_scan.h
>@@ -63,7 +63,7 @@ struct igt_device_card {
> uint16_t pci_vendor, pci_device;
> };
>
>-void igt_devices_scan(bool force);
>+void igt_devices_scan(void);
>
> void igt_devices_print(const struct igt_devices_print_format *fmt);
> void igt_devices_print_vendors(void);
>diff --git a/lib/igt_multigpu.c b/lib/igt_multigpu.c
>index be0c113322..d4b89d706a 100644
>--- a/lib/igt_multigpu.c
>+++ b/lib/igt_multigpu.c
>@@ -37,7 +37,7 @@ static int print_gpus(int count, int gpu_num)
>
> igt_info("PCI devices available in the system:\n");
>
>- igt_devices_scan(true);
>+ igt_devices_scan();
> devices = igt_device_filter_pci();
> igt_devices_print(&fmt);
>
>diff --git a/tests/core_hotunplug.c b/tests/core_hotunplug.c
>index 7f17f4423d..18e9dfc346 100644
>--- a/tests/core_hotunplug.c
>+++ b/tests/core_hotunplug.c
>@@ -488,7 +488,7 @@ static bool healthcheck(struct hotunplug *priv, bool recover)
> sleep(1);
>
> /* device name may have changed, rebuild IGT device list */
>- igt_devices_scan(true);
>+ igt_devices_scan();
>
> node_healthcheck(priv, recover ? FLAG_RECOVER : 0);
> if (!priv->failure)
>diff --git a/tests/device_reset.c b/tests/device_reset.c
>index 40681931c2..6c93a96c21 100644
>--- a/tests/device_reset.c
>+++ b/tests/device_reset.c
>@@ -399,7 +399,7 @@ static void healthcheck(struct device_fds *dev)
> /* give the kernel a breath for re-creating device nodes in devtmpfs */
> sleep(1);
> /* refresh device list */
>- igt_devices_scan(true);
>+ igt_devices_scan();
> igt_debug("reopen the device\n");
> dev->fds.dev = __drm_open_driver(DRIVER_ANY);
> }
>diff --git a/tests/intel/i915_suspend.c b/tests/intel/i915_suspend.c
>index 3398b372b5..fae1031a23 100644
>--- a/tests/intel/i915_suspend.c
>+++ b/tests/intel/i915_suspend.c
>@@ -265,7 +265,7 @@ test_suspend_without_i915(int state)
> int fd;
>
> fd = __drm_open_driver(DRIVER_INTEL);
>- igt_devices_scan(false);
>+ igt_devices_scan();
>
> /*
> * When module is unloaded and s2idle is triggered, PCI core leaves the endpoint
>@@ -317,7 +317,7 @@ igt_main
> * instead of reloading the i915 module.
> */
> if (igt_device_filter_count())
>- igt_devices_scan(true);
>+ igt_devices_scan();
> fd = drm_open_driver(DRIVER_INTEL);
> }
>
>diff --git a/tools/intel_gpu_top.c b/tools/intel_gpu_top.c
>index a608b894d3..68d27089b9 100644
>--- a/tools/intel_gpu_top.c
>+++ b/tools/intel_gpu_top.c
>@@ -2701,7 +2701,7 @@ int main(int argc, char **argv)
> break;
> };
>
>- igt_devices_scan(false);
>+ igt_devices_scan();
>
> if (list_device) {
> struct igt_devices_print_format fmt = {
>diff --git a/tools/intel_pm_rpm.c b/tools/intel_pm_rpm.c
>index 17cd2bc1d6..08c25ca8a6 100644
>--- a/tools/intel_pm_rpm.c
>+++ b/tools/intel_pm_rpm.c
>@@ -142,7 +142,7 @@ int main(int argc, char *argv[])
> }
>
> env_device = getenv("IGT_DEVICE");
>- igt_devices_scan(false);
>+ igt_devices_scan();
>
> if (env_device) {
> if (!igt_device_card_match(env_device, &card)) {
>diff --git a/tools/lsgpu.c b/tools/lsgpu.c
>index 2bf2cf5f05..e482ca6b75 100644
>--- a/tools/lsgpu.c
>+++ b/tools/lsgpu.c
>@@ -362,7 +362,7 @@ int main(int argc, char *argv[])
> printf("Notice: Using filter from .igtrc\n");
> }
>
>- igt_devices_scan(false);
>+ igt_devices_scan();
>
> if (igt_device != NULL) {
> struct igt_device_card card;
>--
>2.34.1
>
^ permalink raw reply [flat|nested] 18+ messages in thread
* ✗ Xe.CI.Full: failure for Drop device scan cache logic (rev2)
2025-01-23 9:52 [PATCH i-g-t v2 0/3] Drop device scan cache logic Zbigniew Kempczyński
` (4 preceding siblings ...)
2025-01-23 11:15 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-01-23 23:13 ` Patchwork
2025-01-27 4:55 ` Zbigniew Kempczyński
2025-01-24 3:29 ` ✗ i915.CI.Full: " Patchwork
6 siblings, 1 reply; 18+ messages in thread
From: Patchwork @ 2025-01-23 23:13 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 91081 bytes --]
== Series Details ==
Series: Drop device scan cache logic (rev2)
URL : https://patchwork.freedesktop.org/series/143880/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8207_full -> XEIGTPW_12487_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12487_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12487_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_12487_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [PASS][1] -> [DMESG-WARN][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_content_protection@legacy:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][3] +1 other test incomplete
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-435/igt@kms_content_protection@legacy.html
* igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-reopen:
- shard-bmg: [PASS][4] -> [INCOMPLETE][5]
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-4/igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-reopen.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-7/igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-reopen.html
New tests
---------
New tests have been introduced between XEIGT_8207_full and XEIGTPW_12487_full:
### New IGT tests (1) ###
* igt@xe_intel_bb@multithread-open:
- Statuses : 2 pass(s)
- Exec time: [1.42, 1.62] s
Known issues
------------
Here are the changes found in XEIGTPW_12487_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#1407]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-lnl-8/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][7] ([Intel XE#316]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-436/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2327])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-1/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#1428]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-lnl-2/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#1124]) +3 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#1124]) +9 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-463/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1124]) +2 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-lnl-6/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#2191]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-lnl-1/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#2191]) +2 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-433/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#367]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-8/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-4-displays-2560x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#367]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-436/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#787]) +104 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-436/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#455] / [Intel XE#787]) +21 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-436/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#2907])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-435/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2887]) +3 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-5/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#3433]) +3 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][22] ([Intel XE#2705] / [Intel XE#4010])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][23] ([Intel XE#4010])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [PASS][24] -> [INCOMPLETE][25] ([Intel XE#1033] / [Intel XE#2692] / [Intel XE#4010])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][26] -> [INCOMPLETE][27] ([Intel XE#1033] / [Intel XE#3113] / [Intel XE#4010])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-7/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#2887]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-lnl-1/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs.html
* igt@kms_cdclk@mode-transition@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#314]) +3 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-434/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#1152]) +3 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-435/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#306])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-434/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k:
- shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#373]) +7 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-434/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2252]) +2 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-3/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#373]) +4 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-lnl-6/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2-set2: NOTRUN -> [FAIL][36] ([Intel XE#1178]) +2 other tests fail
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-434/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#307])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-434/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][38] ([Intel XE#1178])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-5/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#2321]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-lnl-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#1424]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-lnl-6/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#308])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-436/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-dg2-set2: NOTRUN -> [ABORT][42] ([Intel XE#2625] / [Intel XE#4083]) +1 other test abort
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-432/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-bmg: [PASS][43] -> [SKIP][44] ([Intel XE#2291]) +5 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-bmg: [PASS][45] -> [SKIP][46] ([Intel XE#1340])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-bmg: [PASS][47] -> [SKIP][48] ([Intel XE#3070])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-1/igt@kms_dp_linktrain_fallback@dp-fallback.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-with-bpc:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#2244])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-lnl-5/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#776])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-7/igt@kms_fbcon_fbt@psr-suspend.html
- shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#776])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-463/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#701])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-463/igt@kms_feature_discovery@chamelium.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#1421]) +2 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-lnl-4/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3:
- shard-bmg: [PASS][54] -> [FAIL][55] ([Intel XE#3321]) +1 other test fail
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2316])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-bmg: [PASS][57] -> [FAIL][58] ([Intel XE#2882]) +1 other test fail
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_flip@2x-plain-flip-ts-check.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-5/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-bmg: [PASS][59] -> [SKIP][60] ([Intel XE#2316]) +6 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-6/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ab-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][61] -> [DMESG-WARN][62] ([Intel XE#1033]) +32 other tests dmesg-warn
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-435/igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ab-hdmi-a6-dp4.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-463/igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ab-hdmi-a6-dp4.html
* igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6:
- shard-dg2-set2: [PASS][63] -> [FAIL][64] ([Intel XE#301]) +1 other test fail
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html
* igt@kms_flip@flip-vs-expired-vblank@c-dp4:
- shard-dg2-set2: [PASS][65] -> [FAIL][66] ([Intel XE#301] / [Intel XE#3321])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: NOTRUN -> [DMESG-WARN][67] ([Intel XE#1033]) +5 other tests dmesg-warn
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-3/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#1401] / [Intel XE#1745])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#1401])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2293] / [Intel XE#2380])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#2293]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2311]) +5 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#651]) +6 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2312]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#651]) +29 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-suspend.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#4141]) +5 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#658]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1469])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-lnl-1/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#656]) +13 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#2313]) +8 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-slowdraw:
- shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#653]) +27 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-slowdraw.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#605])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-435/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdmi_inject@inject-audio:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#1470] / [Intel XE#2853])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-lnl-3/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [PASS][84] -> [SKIP][85] ([Intel XE#1503])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-8/igt@kms_hdr@invalid-hdr.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-1/igt@kms_hdr@invalid-hdr.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-bmg: [PASS][86] -> [SKIP][87] ([Intel XE#3012])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-8/igt@kms_joiner@basic-force-big-joiner.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-6/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#2927])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-435/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_plane_lowres@tiling-x@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#599]) +3 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-lnl-5/igt@kms_plane_lowres@tiling-x@pipe-b-edp-1.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#309]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-lnl-3/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#2763]) +11 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-lnl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2763]) +7 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-dg2-set2: [PASS][93] -> [DMESG-WARN][94] ([Intel XE#1033] / [Intel XE#2566])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-435/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-433/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [PASS][95] -> [FAIL][96] ([Intel XE#718])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-lnl-7/igt@kms_pm_dc@dc5-psr.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-lnl-1/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@deep-pkgc:
- shard-lnl: NOTRUN -> [FAIL][97] ([Intel XE#2029])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-lnl-2/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#1489]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-update-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#1489]) +5 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-435/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#2893]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-lnl-3/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#1122])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-433/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-cursor-blt:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2234] / [Intel XE#2850]) +4 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-8/igt@kms_psr@fbc-pr-cursor-blt.html
* igt@kms_psr@fbc-psr-sprite-render:
- shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#2850] / [Intel XE#929]) +10 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-435/igt@kms_psr@fbc-psr-sprite-render.html
* igt@kms_psr@pr-dpms:
- shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#1406]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-lnl-3/igt@kms_psr@pr-dpms.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#2939])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-435/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-lnl-6/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#3414]) +2 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-436/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_sequence@get-idle:
- shard-bmg: [PASS][108] -> [DMESG-WARN][109] ([Intel XE#1033]) +28 other tests dmesg-warn
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-8/igt@kms_sequence@get-idle.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-3/igt@kms_sequence@get-idle.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#1435])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-lnl-3/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_vblank@wait-forked-busy:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][111] ([Intel XE#1033]) +13 other tests dmesg-warn
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-463/igt@kms_vblank@wait-forked-busy.html
* igt@kms_vrr@cmrr:
- shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#2168])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-463/igt@kms_vrr@cmrr.html
* igt@kms_vrr@flip-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#455]) +8 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-433/igt@kms_vrr@flip-dpms.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#756])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-7/igt@kms_writeback@writeback-invalid-parameters.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#756])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-463/igt@kms_writeback@writeback-pixel-formats.html
* igt@testdisplay:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][116] ([Intel XE#2705])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-432/igt@testdisplay.html
* igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-vram01-vram01:
- shard-dg2-set2: [PASS][117] -> [ABORT][118] ([Intel XE#2625]) +2 other tests abort
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-434/igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-vram01-vram01.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-432/igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-vram01-vram01.html
* igt@xe_compute_preempt@compute-preempt-many:
- shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-433/igt@xe_compute_preempt@compute-preempt-many.html
* igt@xe_copy_basic@mem-copy-linear-0xfffe:
- shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#1123])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-435/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
* igt@xe_eudebug@basic-read-event:
- shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#2905]) +3 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-lnl-8/igt@xe_eudebug@basic-read-event.html
* igt@xe_eudebug_online@debugger-reopen:
- shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#2905]) +6 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-463/igt@xe_eudebug_online@debugger-reopen.html
* igt@xe_eudebug_online@stopped-thread:
- shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#2905]) +2 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-7/igt@xe_eudebug_online@stopped-thread.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
- shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#2322]) +3 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-7/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind:
- shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#1392]) +2 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-lnl-7/igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind.html
* igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-invalidate:
- shard-bmg: [PASS][126] -> [INCOMPLETE][127] ([Intel XE#4115])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-invalidate.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-6/igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_fault_mode@once-bindexecqueue-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#288]) +21 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-435/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html
* igt@xe_gt_freq@freq_suspend:
- shard-dg2-set2: [PASS][129] -> [ABORT][130] ([Intel XE#1033] / [Intel XE#2625])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-463/igt@xe_gt_freq@freq_suspend.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-432/igt@xe_gt_freq@freq_suspend.html
* igt@xe_live_ktest@xe_dma_buf:
- shard-bmg: [PASS][131] -> [SKIP][132] ([Intel XE#1192]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-1/igt@xe_live_ktest@xe_dma_buf.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-6/igt@xe_live_ktest@xe_dma_buf.html
* igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit:
- shard-dg2-set2: NOTRUN -> [FAIL][133] ([Intel XE#1999]) +2 other tests fail
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-433/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html
* igt@xe_media_fill@media-fill:
- shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#560])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-434/igt@xe_media_fill@media-fill.html
* igt@xe_mmap@small-bar:
- shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#512])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-lnl-4/igt@xe_mmap@small-bar.html
* igt@xe_module_load@force-load:
- shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#378])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-434/igt@xe_module_load@force-load.html
* igt@xe_module_load@load:
- shard-bmg: ([PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148], [PASS][149], [PASS][150], [PASS][151], [PASS][152], [PASS][153], [PASS][154], [PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160]) -> ([PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [SKIP][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185], [PASS][186]) ([Intel XE#2457])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-3/igt@xe_module_load@load.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@xe_module_load@load.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-1/igt@xe_module_load@load.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-1/igt@xe_module_load@load.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-6/igt@xe_module_load@load.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-8/igt@xe_module_load@load.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-8/igt@xe_module_load@load.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-6/igt@xe_module_load@load.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-6/igt@xe_module_load@load.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-8/igt@xe_module_load@load.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-4/igt@xe_module_load@load.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-4/igt@xe_module_load@load.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-7/igt@xe_module_load@load.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-8/igt@xe_module_load@load.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-8/igt@xe_module_load@load.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-3/igt@xe_module_load@load.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-1/igt@xe_module_load@load.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-1/igt@xe_module_load@load.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-1/igt@xe_module_load@load.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-7/igt@xe_module_load@load.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-7/igt@xe_module_load@load.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@xe_module_load@load.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@xe_module_load@load.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@xe_module_load@load.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-5/igt@xe_module_load@load.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-6/igt@xe_module_load@load.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-1/igt@xe_module_load@load.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-3/igt@xe_module_load@load.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-6/igt@xe_module_load@load.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-6/igt@xe_module_load@load.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-3/igt@xe_module_load@load.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-1/igt@xe_module_load@load.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-3/igt@xe_module_load@load.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-8/igt@xe_module_load@load.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-1/igt@xe_module_load@load.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-8/igt@xe_module_load@load.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-7/igt@xe_module_load@load.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-7/igt@xe_module_load@load.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-5/igt@xe_module_load@load.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-7/igt@xe_module_load@load.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-8/igt@xe_module_load@load.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-1/igt@xe_module_load@load.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-8/igt@xe_module_load@load.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-1/igt@xe_module_load@load.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-6/igt@xe_module_load@load.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-6/igt@xe_module_load@load.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-6/igt@xe_module_load@load.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-5/igt@xe_module_load@load.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-5/igt@xe_module_load@load.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-1/igt@xe_module_load@load.html
- shard-dg2-set2: ([PASS][187], [PASS][188], [PASS][189], [PASS][190], [PASS][191], [PASS][192], [PASS][193], [PASS][194], [PASS][195], [PASS][196], [PASS][197], [PASS][198], [PASS][199], [PASS][200], [PASS][201], [PASS][202], [PASS][203], [PASS][204], [PASS][205], [PASS][206], [PASS][207], [PASS][208], [PASS][209], [PASS][210], [PASS][211]) -> ([SKIP][212], [PASS][213], [PASS][214], [PASS][215], [PASS][216], [PASS][217], [PASS][218], [PASS][219], [PASS][220], [PASS][221], [PASS][222], [PASS][223], [PASS][224], [PASS][225], [PASS][226], [PASS][227], [PASS][228], [PASS][229], [PASS][230], [PASS][231], [PASS][232], [PASS][233], [PASS][234]) ([Intel XE#378])
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-436/igt@xe_module_load@load.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-436/igt@xe_module_load@load.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@xe_module_load@load.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-463/igt@xe_module_load@load.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-463/igt@xe_module_load@load.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-463/igt@xe_module_load@load.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@xe_module_load@load.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@xe_module_load@load.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-432/igt@xe_module_load@load.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-432/igt@xe_module_load@load.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-432/igt@xe_module_load@load.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-436/igt@xe_module_load@load.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-435/igt@xe_module_load@load.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-434/igt@xe_module_load@load.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-434/igt@xe_module_load@load.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-435/igt@xe_module_load@load.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-435/igt@xe_module_load@load.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@xe_module_load@load.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-463/igt@xe_module_load@load.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-432/igt@xe_module_load@load.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-434/igt@xe_module_load@load.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@xe_module_load@load.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-434/igt@xe_module_load@load.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-432/igt@xe_module_load@load.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-432/igt@xe_module_load@load.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-433/igt@xe_module_load@load.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-432/igt@xe_module_load@load.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-436/igt@xe_module_load@load.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-434/igt@xe_module_load@load.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-436/igt@xe_module_load@load.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-463/igt@xe_module_load@load.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-436/igt@xe_module_load@load.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-434/igt@xe_module_load@load.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-434/igt@xe_module_load@load.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-434/igt@xe_module_load@load.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-432/igt@xe_module_load@load.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-432/igt@xe_module_load@load.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-432/igt@xe_module_load@load.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-433/igt@xe_module_load@load.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-433/igt@xe_module_load@load.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-433/igt@xe_module_load@load.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-435/igt@xe_module_load@load.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-435/igt@xe_module_load@load.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-436/igt@xe_module_load@load.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-463/igt@xe_module_load@load.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-463/igt@xe_module_load@load.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-435/igt@xe_module_load@load.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-432/igt@xe_module_load@load.html
* igt@xe_oa@missing-sample-flags:
- shard-dg2-set2: NOTRUN -> [SKIP][235] ([Intel XE#2541] / [Intel XE#3573]) +2 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-434/igt@xe_oa@missing-sample-flags.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-dg2-set2: NOTRUN -> [SKIP][236] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-433/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_pm@s3-multiple-execs:
- shard-bmg: [PASS][237] -> [DMESG-WARN][238] ([Intel XE#1033] / [Intel XE#569]) +1 other test dmesg-warn
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-4/igt@xe_pm@s3-multiple-execs.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-1/igt@xe_pm@s3-multiple-execs.html
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][239] ([Intel XE#1033] / [Intel XE#569])
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-433/igt@xe_pm@s3-multiple-execs.html
* igt@xe_pm@s3-vm-bind-prefetch:
- shard-lnl: NOTRUN -> [SKIP][240] ([Intel XE#584])
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-lnl-5/igt@xe_pm@s3-vm-bind-prefetch.html
* igt@xe_pm@s4-mocs:
- shard-lnl: [PASS][241] -> [ABORT][242] ([Intel XE#1358] / [Intel XE#1794])
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-lnl-7/igt@xe_pm@s4-mocs.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-lnl-2/igt@xe_pm@s4-mocs.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-lnl: [PASS][243] -> [ABORT][244] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794])
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-lnl-6/igt@xe_pm@s4-vm-bind-unbind-all.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.html
* igt@xe_query@multigpu-query-gt-list:
- shard-bmg: NOTRUN -> [SKIP][245] ([Intel XE#944])
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-6/igt@xe_query@multigpu-query-gt-list.html
* igt@xe_query@multigpu-query-invalid-size:
- shard-lnl: NOTRUN -> [SKIP][246] ([Intel XE#944])
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-lnl-7/igt@xe_query@multigpu-query-invalid-size.html
* igt@xe_query@multigpu-query-oa-units:
- shard-dg2-set2: NOTRUN -> [SKIP][247] ([Intel XE#944])
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-463/igt@xe_query@multigpu-query-oa-units.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-lnl: NOTRUN -> [SKIP][248] ([Intel XE#3342])
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-lnl-4/igt@xe_sriov_flr@flr-vf1-clear.html
#### Possible fixes ####
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-bmg: [FAIL][249] ([Intel XE#827]) -> [PASS][250] +1 other test pass
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_async_flips@alternate-sync-async-flip.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_async_flips@async-flip-with-page-flip-events:
- shard-bmg: [INCOMPLETE][251] -> [PASS][252] +1 other test pass
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-8/igt@kms_async_flips@async-flip-with-page-flip-events.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-7/igt@kms_async_flips@async-flip-with-page-flip-events.html
* igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p:
- shard-dg2-set2: [SKIP][253] ([Intel XE#367]) -> [PASS][254] +4 other tests pass
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-463/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-463/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-bmg: [SKIP][255] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][256]
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-8/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_color@ctm-blue-to-red:
- shard-bmg: [SKIP][257] ([Intel XE#3007]) -> [PASS][258] +19 other tests pass
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_color@ctm-blue-to-red.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-6/igt@kms_color@ctm-blue-to-red.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-bmg: [SKIP][259] ([Intel XE#2291]) -> [PASS][260] +2 other tests pass
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-7/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-bmg: [SKIP][261] ([Intel XE#2316]) -> [PASS][262] +1 other test pass
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-6/igt@kms_flip@2x-absolute-wf_vblank.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-5/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-expired-vblank@a-dp4:
- shard-dg2-set2: [FAIL][263] ([Intel XE#301] / [Intel XE#3321]) -> [PASS][264]
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html
* igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6:
- shard-dg2-set2: [FAIL][265] ([Intel XE#301]) -> [PASS][266] +1 other test pass
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6.html
* igt@kms_flip@flip-vs-suspend:
- shard-dg2-set2: [DMESG-WARN][267] ([Intel XE#2955]) -> [PASS][268]
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-435/igt@kms_flip@flip-vs-suspend.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-435/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@a-edp1:
- shard-lnl: [FAIL][269] ([Intel XE#886]) -> [PASS][270] +2 other tests pass
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-lnl-2/igt@kms_flip@wf_vblank-ts-check-interruptible@a-edp1.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check-interruptible@a-edp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-upscaling:
- shard-bmg: [SKIP][271] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][272] +1 other test pass
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-upscaling.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-upscaling.html
* igt@kms_flip_tiling@flip-change-tiling:
- shard-dg2-set2: [INCOMPLETE][273] ([Intel XE#2049]) -> [PASS][274]
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@kms_flip_tiling@flip-change-tiling.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-434/igt@kms_flip_tiling@flip-change-tiling.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-6-4-rc-ccs-cc-to-4-mc-ccs:
- shard-dg2-set2: [INCOMPLETE][275] -> [PASS][276]
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-6-4-rc-ccs-cc-to-4-mc-ccs.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-434/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-6-4-rc-ccs-cc-to-4-mc-ccs.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: [SKIP][277] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][278] +1 other test pass
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
- shard-dg2-set2: [SKIP][279] ([Intel XE#2136]) -> [PASS][280] +4 other tests pass
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-wc:
- shard-dg2-set2: [DMESG-WARN][281] ([Intel XE#1033]) -> [PASS][282] +51 other tests pass
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-wc.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-wc.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation:
- shard-dg2-set2: [SKIP][283] ([Intel XE#2423] / [i915#2575]) -> [PASS][284] +13 other tests pass
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers:
- shard-bmg: [DMESG-WARN][285] ([Intel XE#1033]) -> [PASS][286] +40 other tests pass
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-7/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-5/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2-set2: [SKIP][287] ([Intel XE#2446]) -> [PASS][288]
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@kms_pm_rpm@modeset-non-lpsp.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-463/igt@kms_pm_rpm@modeset-non-lpsp.html
- shard-bmg: [SKIP][289] ([Intel XE#2446]) -> [PASS][290]
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_pm_rpm@modeset-non-lpsp.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-7/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@xe_evict@evict-large-multi-vm:
- shard-dg2-set2: [DMESG-WARN][291] ([Intel XE#1033] / [Intel XE#1473]) -> [PASS][292]
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@xe_evict@evict-large-multi-vm.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-434/igt@xe_evict@evict-large-multi-vm.html
* igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap:
- shard-dg2-set2: [SKIP][293] ([Intel XE#1392]) -> [PASS][294] +4 other tests pass
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-436/igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html
* igt@xe_pm@s3-exec-after:
- shard-bmg: [DMESG-WARN][295] ([Intel XE#1033] / [Intel XE#569]) -> [PASS][296]
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-1/igt@xe_pm@s3-exec-after.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-1/igt@xe_pm@s3-exec-after.html
- shard-dg2-set2: [DMESG-WARN][297] ([Intel XE#1033] / [Intel XE#569]) -> [PASS][298]
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-434/igt@xe_pm@s3-exec-after.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-434/igt@xe_pm@s3-exec-after.html
* igt@xe_pm_residency@cpg-basic:
- shard-dg2-set2: [ABORT][299] ([Intel XE#4046]) -> [PASS][300]
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-432/igt@xe_pm_residency@cpg-basic.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-433/igt@xe_pm_residency@cpg-basic.html
* igt@xe_spin_batch@spin-all:
- shard-bmg: [SKIP][301] ([Intel XE#1130]) -> [PASS][302] +42 other tests pass
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@xe_spin_batch@spin-all.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-1/igt@xe_spin_batch@spin-all.html
* igt@xe_vm@large-binds-2147483648:
- shard-dg2-set2: [SKIP][303] ([Intel XE#1130]) -> [PASS][304] +25 other tests pass
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@xe_vm@large-binds-2147483648.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-435/igt@xe_vm@large-binds-2147483648.html
#### Warnings ####
* igt@kms_atomic_transition@plane-all-transition-fencing:
- shard-bmg: [SKIP][305] ([Intel XE#3007]) -> [DMESG-WARN][306] ([Intel XE#1033])
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_atomic_transition@plane-all-transition-fencing.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-1/igt@kms_atomic_transition@plane-all-transition-fencing.html
- shard-dg2-set2: [SKIP][307] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][308] ([Intel XE#1033])
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@kms_atomic_transition@plane-all-transition-fencing.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-433/igt@kms_atomic_transition@plane-all-transition-fencing.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-bmg: [SKIP][309] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][310] ([Intel XE#2327]) +1 other test skip
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-7/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
- shard-dg2-set2: [SKIP][311] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][312] ([Intel XE#316])
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-435/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-bmg: [SKIP][313] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][314] ([Intel XE#1124]) +2 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-1/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
- shard-dg2-set2: [SKIP][315] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][316] ([Intel XE#1124])
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-433/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
- shard-bmg: [SKIP][317] ([Intel XE#3007]) -> [SKIP][318] ([Intel XE#2314] / [Intel XE#2894])
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-6/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-1-displays-2560x1440p:
- shard-bmg: [SKIP][319] ([Intel XE#3007]) -> [SKIP][320] ([Intel XE#367])
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-6/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs:
- shard-bmg: [SKIP][321] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][322] ([Intel XE#2887]) +3 other tests skip
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-3/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html
- shard-dg2-set2: [SKIP][323] ([Intel XE#2136]) -> [SKIP][324] ([Intel XE#455] / [Intel XE#787])
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-463/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs:
- shard-dg2-set2: [SKIP][325] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][326] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-434/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html
* igt@kms_cdclk@plane-scaling:
- shard-bmg: [SKIP][327] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][328] ([Intel XE#2724])
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_cdclk@plane-scaling.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-7/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-4k:
- shard-bmg: [SKIP][329] ([Intel XE#3007]) -> [SKIP][330] ([Intel XE#2252]) +1 other test skip
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-8/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-dg2-set2: [SKIP][331] ([Intel XE#2423] / [i915#2575]) -> [SKIP][332] ([Intel XE#373]) +1 other test skip
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@kms_chamelium_hpd@vga-hpd.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-436/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_content_protection@atomic-dpms:
- shard-bmg: [INCOMPLETE][333] -> [SKIP][334] ([Intel XE#2341])
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_content_protection@atomic-dpms.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-6/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@legacy:
- shard-bmg: [DMESG-FAIL][335] ([Intel XE#877]) -> [FAIL][336] ([Intel XE#1178]) +1 other test fail
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-7/igt@kms_content_protection@legacy.html
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-7/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-0:
- shard-bmg: [SKIP][337] ([Intel XE#2341]) -> [FAIL][338] ([Intel XE#1178])
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-6/igt@kms_content_protection@lic-type-0.html
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-5/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@uevent:
- shard-dg2-set2: [FAIL][339] ([Intel XE#1188]) -> [DMESG-FAIL][340] ([Intel XE#1033]) +1 other test dmesg-fail
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@kms_content_protection@uevent.html
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-436/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-dg2-set2: [SKIP][341] ([Intel XE#2423] / [i915#2575]) -> [SKIP][342] ([Intel XE#455])
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@kms_cursor_crc@cursor-offscreen-max-size.html
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-434/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-bmg: [SKIP][343] ([Intel XE#3007]) -> [SKIP][344] ([Intel XE#2320]) +2 other tests skip
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_cursor_crc@cursor-sliding-256x85.html
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-6/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [DMESG-WARN][345] ([Intel XE#1033]) -> [SKIP][346] ([Intel XE#2291])
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_feature_discovery@psr1:
- shard-bmg: [SKIP][347] ([Intel XE#3007]) -> [SKIP][348] ([Intel XE#2374])
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_feature_discovery@psr1.html
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-5/igt@kms_feature_discovery@psr1.html
- shard-dg2-set2: [SKIP][349] ([Intel XE#2423] / [i915#2575]) -> [SKIP][350] ([Intel XE#1135])
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@kms_feature_discovery@psr1.html
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-436/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-dg2-set2: [DMESG-WARN][351] ([Intel XE#1033]) -> [DMESG-WARN][352] ([Intel XE#2955])
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-436/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-dg2-set2: [FAIL][353] ([Intel XE#301]) -> [DMESG-FAIL][354] ([Intel XE#1033])
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank.html
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_flip@flip-vs-expired-vblank@d-dp4:
- shard-dg2-set2: [FAIL][355] ([Intel XE#301] / [Intel XE#3321]) -> [DMESG-WARN][356] ([Intel XE#1033])
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@d-dp4.html
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@d-dp4.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-dg2-set2: [SKIP][357] ([Intel XE#2136]) -> [SKIP][358] ([Intel XE#455])
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
- shard-bmg: [SKIP][359] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][360] ([Intel XE#2293] / [Intel XE#2380])
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][361] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][362] ([Intel XE#2311]) +6 other tests skip
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html
- shard-dg2-set2: [SKIP][363] ([Intel XE#2136]) -> [SKIP][364] ([Intel XE#651]) +2 other tests skip
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][365] ([Intel XE#2312]) -> [SKIP][366] ([Intel XE#2311]) +9 other tests skip
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][367] ([Intel XE#2311]) -> [SKIP][368] ([Intel XE#2312]) +15 other tests skip
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][369] ([Intel XE#2312]) -> [SKIP][370] ([Intel XE#4141]) +3 other tests skip
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][371] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][372] ([Intel XE#4141]) +1 other test skip
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][373] ([Intel XE#4141]) -> [SKIP][374] ([Intel XE#2312]) +4 other tests skip
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][375] ([Intel XE#2313]) -> [SKIP][376] ([Intel XE#2312]) +17 other tests skip
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][377] ([Intel XE#2312]) -> [SKIP][378] ([Intel XE#2313]) +6 other tests skip
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][379] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][380] ([Intel XE#2313]) +6 other tests skip
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt:
- shard-dg2-set2: [SKIP][381] ([Intel XE#2136]) -> [SKIP][382] ([Intel XE#653]) +3 other tests skip
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-bmg: [SKIP][383] ([Intel XE#3007]) -> [SKIP][384] ([Intel XE#2763]) +1 other test skip
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-dg2-set2: [SKIP][385] ([Intel XE#2136]) -> [SKIP][386] ([Intel XE#1489]) +1 other test skip
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-436/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-cursor-plane-update-sf:
- shard-bmg: [SKIP][387] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][388] ([Intel XE#1489]) +2 other tests skip
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-5/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html
* igt@kms_psr@fbc-pr-sprite-blt:
- shard-bmg: [SKIP][389] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][390] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_psr@fbc-pr-sprite-blt.html
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-7/igt@kms_psr@fbc-pr-sprite-blt.html
* igt@kms_psr@psr2-sprite-plane-move:
- shard-dg2-set2: [SKIP][391] ([Intel XE#2136]) -> [SKIP][392] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@kms_psr@psr2-sprite-plane-move.html
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-436/igt@kms_psr@psr2-sprite-plane-move.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-bmg: [SKIP][393] ([Intel XE#3007]) -> [SKIP][394] ([Intel XE#2330])
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [SKIP][395] ([Intel XE#2426]) -> [FAIL][396] ([Intel XE#1729])
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
* igt@xe_eudebug_online@single-step-one:
- shard-bmg: [SKIP][397] ([Intel XE#1130]) -> [SKIP][398] ([Intel XE#2905]) +3 other tests skip
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@xe_eudebug_online@single-step-one.html
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-3/igt@xe_eudebug_online@single-step-one.html
- shard-dg2-set2: [SKIP][399] ([Intel XE#1130]) -> [SKIP][400] ([Intel XE#2905]) +1 other test skip
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@xe_eudebug_online@single-step-one.html
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-463/igt@xe_eudebug_online@single-step-one.html
* igt@xe_exec_basic@multigpu-no-exec-null:
- shard-bmg: [SKIP][401] ([Intel XE#1130]) -> [SKIP][402] ([Intel XE#2322]) +1 other test skip
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@xe_exec_basic@multigpu-no-exec-null.html
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-bmg-3/igt@xe_exec_basic@multigpu-no-exec-null.html
* igt@xe_exec_fault_mode@once-userptr-invalidate-race:
- shard-dg2-set2: [SKIP][403] ([Intel XE#1130]) -> [SKIP][404] ([Intel XE#288]) +3 other tests skip
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@xe_exec_fault_mode@once-userptr-invalidate-race.html
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-463/igt@xe_exec_fault_mode@once-userptr-invalidate-race.html
* igt@xe_pm@s3-basic-exec:
- shard-dg2-set2: [ABORT][405] ([Intel XE#1033] / [Intel XE#1358]) -> [DMESG-WARN][406] ([Intel XE#1033] / [Intel XE#569])
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-432/igt@xe_pm@s3-basic-exec.html
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-463/igt@xe_pm@s3-basic-exec.html
* igt@xe_pm@s3-vm-bind-userptr:
- shard-dg2-set2: [ABORT][407] ([Intel XE#1358] / [Intel XE#1794]) -> [DMESG-WARN][408] ([Intel XE#1033] / [Intel XE#569])
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-432/igt@xe_pm@s3-vm-bind-userptr.html
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/shard-dg2-434/igt@xe_pm@s3-vm-bind-userptr.html
[Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
[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#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[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#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[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#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
[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#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231
[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#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[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#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566
[Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2692
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[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#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853
[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#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[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#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
[Intel XE#2955]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2955
[Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
[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#3070]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070
[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#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[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#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433
[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#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4010
[Intel XE#4046]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4046
[Intel XE#4083]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4083
[Intel XE#4115]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4115
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605
[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#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[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#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827
[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#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
Build changes
-------------
* IGT: IGT_8207 -> IGTPW_12487
* Linux: xe-2534-db7cf8d52a41001ea2780cf834fed3dc490343d2 -> xe-2536-33906a7032dfca356fd7309e6abbdf5a7ea97db4
IGTPW_12487: 34ada825e9efa46c9deef07a2117005a1408e090 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8207: 9f36f9f9e8825a67b762630c2b31628ddcda5c10 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2534-db7cf8d52a41001ea2780cf834fed3dc490343d2: db7cf8d52a41001ea2780cf834fed3dc490343d2
xe-2536-33906a7032dfca356fd7309e6abbdf5a7ea97db4: 33906a7032dfca356fd7309e6abbdf5a7ea97db4
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/index.html
[-- Attachment #2: Type: text/html, Size: 109692 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread
* ✗ i915.CI.Full: failure for Drop device scan cache logic (rev2)
2025-01-23 9:52 [PATCH i-g-t v2 0/3] Drop device scan cache logic Zbigniew Kempczyński
` (5 preceding siblings ...)
2025-01-23 23:13 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-01-24 3:29 ` Patchwork
2025-01-27 4:59 ` Zbigniew Kempczyński
6 siblings, 1 reply; 18+ messages in thread
From: Patchwork @ 2025-01-24 3:29 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100255 bytes --]
== Series Details ==
Series: Drop device scan cache logic (rev2)
URL : https://patchwork.freedesktop.org/series/143880/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_16005_full -> IGTPW_12487_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12487_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12487_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/index.html
Participating hosts (11 -> 10)
------------------------------
Missing (1): shard-glk-0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12487_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_eio@in-flight-contexts-1us:
- shard-mtlp: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-mtlp-1/igt@gem_eio@in-flight-contexts-1us.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-7/igt@gem_eio@in-flight-contexts-1us.html
* igt@gem_workarounds@suspend-resume-context:
- shard-dg1: NOTRUN -> [ABORT][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-17/igt@gem_workarounds@suspend-resume-context.html
* igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][4] -> [FAIL][5] +3 other tests fail
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-1.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-tglu: NOTRUN -> [FAIL][6] +1 other test fail
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_plane_cursor@viewport:
- shard-mtlp: [PASS][7] -> [DMESG-WARN][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-mtlp-1/igt@kms_plane_cursor@viewport.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-3/igt@kms_plane_cursor@viewport.html
New tests
---------
New tests have been introduced between CI_DRM_16005_full and IGTPW_12487_full:
### New IGT tests (154) ###
* igt@gem_exec_schedule@noreorder:
- Statuses : 2 pass(s)
- Exec time: [0.34, 0.41] s
* igt@gem_exec_schedule@noreorder-corked:
- Statuses : 6 pass(s) 1 skip(s)
- Exec time: [0.0, 8.07] s
* igt@gem_exec_schedule@noreorder-corked@bcs0:
- Statuses : 5 pass(s)
- Exec time: [1.10, 1.13] s
* igt@gem_exec_schedule@noreorder-corked@rcs0:
- Statuses : 6 pass(s)
- Exec time: [1.11, 1.16] s
* igt@gem_exec_schedule@noreorder-corked@vcs0:
- Statuses : 6 pass(s)
- Exec time: [1.11, 1.68] s
* igt@gem_exec_schedule@noreorder-corked@vcs1:
- Statuses : 4 pass(s)
- Exec time: [1.13, 2.08] s
* igt@gem_exec_schedule@noreorder-corked@vecs0:
- Statuses : 6 pass(s)
- Exec time: [1.10, 1.99] s
* igt@gem_exec_schedule@noreorder-priority:
- Statuses : 6 pass(s) 1 skip(s)
- Exec time: [0.0, 8.33] s
* igt@gem_exec_schedule@noreorder-priority@bcs0:
- Statuses : 5 pass(s)
- Exec time: [1.11, 1.14] s
* igt@gem_exec_schedule@noreorder-priority@rcs0:
- Statuses : 6 pass(s)
- Exec time: [1.11, 1.19] s
* igt@gem_exec_schedule@noreorder-priority@vcs0:
- Statuses : 6 pass(s)
- Exec time: [1.11, 2.01] s
* igt@gem_exec_schedule@noreorder-priority@vcs1:
- Statuses : 4 pass(s)
- Exec time: [1.12, 1.99] s
* igt@gem_exec_schedule@noreorder-priority@vecs0:
- Statuses : 6 pass(s)
- Exec time: [1.11, 1.99] s
* igt@gem_exec_schedule@noreorder@bcs0:
- Statuses : 2 pass(s)
- Exec time: [0.07, 0.08] s
* igt@gem_exec_schedule@noreorder@rcs0:
- Statuses : 2 pass(s)
- Exec time: [0.07] s
* igt@gem_exec_schedule@noreorder@vcs0:
- Statuses : 2 pass(s)
- Exec time: [0.06, 0.09] s
* igt@gem_exec_schedule@noreorder@vcs1:
- Statuses : 2 pass(s)
- Exec time: [0.05, 0.08] s
* igt@gem_exec_schedule@noreorder@vecs0:
- Statuses : 2 pass(s)
- Exec time: [0.07, 0.08] s
* igt@gem_exercise_blt@fast-copy:
- Statuses : 4 pass(s)
- Exec time: [0.08, 0.65] s
* igt@gem_exercise_blt@fast-copy-emit:
- Statuses : 5 pass(s) 1 skip(s)
- Exec time: [0.0, 0.94] s
* igt@gem_exercise_blt@fast-copy-emit@linear-lmem0-lmem0-emit:
- Statuses : 2 pass(s)
- Exec time: [0.06, 0.09] s
* igt@gem_exercise_blt@fast-copy-emit@linear-lmem0-smem-emit:
- Statuses : 2 pass(s)
- Exec time: [0.06, 0.09] s
* igt@gem_exercise_blt@fast-copy-emit@linear-smem-lmem0-emit:
- Statuses : 2 pass(s)
- Exec time: [0.01] s
* igt@gem_exercise_blt@fast-copy-emit@linear-smem-smem-emit:
- Statuses : 5 pass(s)
- Exec time: [0.02, 0.05] s
* igt@gem_exercise_blt@fast-copy-emit@tile4-lmem0-lmem0-emit:
- Statuses : 2 pass(s)
- Exec time: [0.06, 0.10] s
* igt@gem_exercise_blt@fast-copy-emit@tile4-lmem0-smem-emit:
- Statuses : 2 pass(s)
- Exec time: [0.06, 0.10] s
* igt@gem_exercise_blt@fast-copy-emit@tile4-smem-lmem0-emit:
- Statuses : 2 pass(s)
- Exec time: [0.01] s
* igt@gem_exercise_blt@fast-copy-emit@tile4-smem-smem-emit:
- Statuses : 4 pass(s)
- Exec time: [0.01, 0.02] s
* igt@gem_exercise_blt@fast-copy-emit@tile64-lmem0-lmem0-emit:
- Statuses : 2 pass(s)
- Exec time: [0.06, 0.11] s
* igt@gem_exercise_blt@fast-copy-emit@tile64-lmem0-smem-emit:
- Statuses : 2 pass(s)
- Exec time: [0.06, 0.10] s
* igt@gem_exercise_blt@fast-copy-emit@tile64-smem-lmem0-emit:
- Statuses : 2 pass(s)
- Exec time: [0.01] s
* igt@gem_exercise_blt@fast-copy-emit@tile64-smem-smem-emit:
- Statuses : 5 pass(s)
- Exec time: [0.01, 0.04] s
* igt@gem_exercise_blt@fast-copy-emit@yfmajor-smem-smem-emit:
- Statuses : 1 pass(s)
- Exec time: [0.04] s
* igt@gem_exercise_blt@fast-copy-emit@ymajor-lmem0-lmem0-emit:
- Statuses : 1 pass(s)
- Exec time: [0.06] s
* igt@gem_exercise_blt@fast-copy-emit@ymajor-lmem0-smem-emit:
- Statuses : 1 pass(s)
- Exec time: [0.06] s
* igt@gem_exercise_blt@fast-copy-emit@ymajor-smem-lmem0-emit:
- Statuses : 1 pass(s)
- Exec time: [0.01] s
* igt@gem_exercise_blt@fast-copy-emit@ymajor-smem-smem-emit:
- Statuses : 3 pass(s)
- Exec time: [0.01, 0.04] s
* igt@gem_exercise_blt@fast-copy@linear-lmem0-lmem0:
- Statuses : 1 pass(s)
- Exec time: [0.06] s
* igt@gem_exercise_blt@fast-copy@linear-lmem0-smem:
- Statuses : 1 pass(s)
- Exec time: [0.06] s
* igt@gem_exercise_blt@fast-copy@linear-smem-lmem0:
- Statuses : 1 pass(s)
- Exec time: [0.02] s
* igt@gem_exercise_blt@fast-copy@linear-smem-smem:
- Statuses : 4 pass(s)
- Exec time: [0.02, 0.05] s
* igt@gem_exercise_blt@fast-copy@tile4-lmem0-lmem0:
- Statuses : 1 pass(s)
- Exec time: [0.06] s
* igt@gem_exercise_blt@fast-copy@tile4-lmem0-smem:
- Statuses : 1 pass(s)
- Exec time: [0.06] s
* igt@gem_exercise_blt@fast-copy@tile4-smem-lmem0:
- Statuses : 1 pass(s)
- Exec time: [0.01] s
* igt@gem_exercise_blt@fast-copy@tile4-smem-smem:
- Statuses : 3 pass(s)
- Exec time: [0.02] s
* igt@gem_exercise_blt@fast-copy@tile64-lmem0-lmem0:
- Statuses : 1 pass(s)
- Exec time: [0.06] s
* igt@gem_exercise_blt@fast-copy@tile64-lmem0-smem:
- Statuses : 1 pass(s)
- Exec time: [0.06] s
* igt@gem_exercise_blt@fast-copy@tile64-smem-lmem0:
- Statuses : 1 pass(s)
- Exec time: [0.01] s
* igt@gem_exercise_blt@fast-copy@tile64-smem-smem:
- Statuses : 4 pass(s)
- Exec time: [0.02, 0.04] s
* igt@gem_exercise_blt@fast-copy@yfmajor-smem-smem:
- Statuses : 1 pass(s)
- Exec time: [0.06] s
* igt@gem_exercise_blt@fast-copy@ymajor-lmem0-lmem0:
- Statuses : 1 pass(s)
- Exec time: [0.06] s
* igt@gem_exercise_blt@fast-copy@ymajor-lmem0-smem:
- Statuses : 1 pass(s)
- Exec time: [0.06] s
* igt@gem_exercise_blt@fast-copy@ymajor-smem-lmem0:
- Statuses : 1 pass(s)
- Exec time: [0.01] s
* igt@gem_exercise_blt@fast-copy@ymajor-smem-smem:
- Statuses : 3 pass(s)
- Exec time: [0.02, 0.07] s
* igt@gem_spin_batch@engines:
- Statuses : 6 pass(s)
- Exec time: [9.94, 22.68] s
* igt@gem_spin_batch@engines@bcs0:
- Statuses : 6 pass(s)
- Exec time: [3.23, 3.32] s
* igt@gem_spin_batch@engines@rcs0:
- Statuses : 6 pass(s)
- Exec time: [3.23, 3.32] s
* igt@gem_spin_batch@engines@vcs0:
- Statuses : 6 pass(s)
- Exec time: [3.23, 3.33] s
* igt@gem_spin_batch@engines@vcs1:
- Statuses : 4 pass(s)
- Exec time: [3.23, 3.32] s
* igt@gem_spin_batch@engines@vecs0:
- Statuses : 5 pass(s)
- Exec time: [3.23, 3.33] s
* igt@gem_spin_batch@legacy:
- Statuses : 4 pass(s)
- Exec time: [16.56, 23.24] s
* igt@gem_spin_batch@legacy-resubmit:
- Statuses : 3 pass(s)
- Exec time: [0.01, 0.04] s
* igt@gem_spin_batch@legacy-resubmit-new:
- Statuses : 7 pass(s)
- Exec time: [0.01, 0.06] s
* igt@gem_spin_batch@legacy-resubmit-new@blt:
- Statuses : 7 pass(s)
- Exec time: [0.00, 0.01] s
* igt@gem_spin_batch@legacy-resubmit-new@bsd:
- Statuses : 7 pass(s)
- Exec time: [0.00, 0.01] s
* igt@gem_spin_batch@legacy-resubmit-new@bsd1:
- Statuses : 7 pass(s)
- Exec time: [0.00, 0.01] s
* igt@gem_spin_batch@legacy-resubmit-new@bsd2:
- Statuses : 4 pass(s)
- Exec time: [0.00] s
* igt@gem_spin_batch@legacy-resubmit-new@default:
- Statuses : 7 pass(s)
- Exec time: [0.00, 0.03] s
* igt@gem_spin_batch@legacy-resubmit-new@render:
- Statuses : 7 pass(s)
- Exec time: [0.00, 0.01] s
* igt@gem_spin_batch@legacy-resubmit-new@vebox:
- Statuses : 6 pass(s)
- Exec time: [0.00, 0.01] s
* igt@gem_spin_batch@legacy-resubmit@blt:
- Statuses : 3 pass(s)
- Exec time: [0.00] s
* igt@gem_spin_batch@legacy-resubmit@bsd:
- Statuses : 3 pass(s)
- Exec time: [0.00] s
* igt@gem_spin_batch@legacy-resubmit@bsd1:
- Statuses : 3 pass(s)
- Exec time: [0.00] s
* igt@gem_spin_batch@legacy-resubmit@bsd2:
- Statuses : 3 pass(s)
- Exec time: [0.00] s
* igt@gem_spin_batch@legacy-resubmit@default:
- Statuses : 3 pass(s)
- Exec time: [0.00, 0.03] s
* igt@gem_spin_batch@legacy-resubmit@render:
- Statuses : 3 pass(s)
- Exec time: [0.00] s
* igt@gem_spin_batch@legacy-resubmit@vebox:
- Statuses : 3 pass(s)
- Exec time: [0.00] s
* igt@gem_spin_batch@legacy@blt:
- Statuses : 4 pass(s)
- Exec time: [3.23, 3.32] s
* igt@gem_spin_batch@legacy@bsd:
- Statuses : 4 pass(s)
- Exec time: [3.23, 3.32] s
* igt@gem_spin_batch@legacy@bsd1:
- Statuses : 4 pass(s)
- Exec time: [3.23, 3.32] s
* igt@gem_spin_batch@legacy@bsd2:
- Statuses : 3 pass(s)
- Exec time: [3.23, 3.32] s
* igt@gem_spin_batch@legacy@default:
- Statuses : 4 pass(s)
- Exec time: [3.23, 3.32] s
* igt@gem_spin_batch@legacy@render:
- Statuses : 4 pass(s)
- Exec time: [3.23, 3.32] s
* igt@gem_spin_batch@legacy@vebox:
- Statuses : 3 pass(s)
- Exec time: [3.23, 3.32] s
* igt@gem_spin_batch@resubmit:
- Statuses : 6 pass(s)
- Exec time: [0.01, 0.04] s
* igt@gem_spin_batch@resubmit-all:
- Statuses : 7 pass(s)
- Exec time: [0.01, 0.05] s
* igt@gem_spin_batch@resubmit-all@bcs0:
- Statuses : 7 pass(s)
- Exec time: [0.00, 0.02] s
* igt@gem_spin_batch@resubmit-all@rcs0:
- Statuses : 7 pass(s)
- Exec time: [0.00, 0.04] s
* igt@gem_spin_batch@resubmit-all@vcs0:
- Statuses : 7 pass(s)
- Exec time: [0.00, 0.01] s
* igt@gem_spin_batch@resubmit-all@vcs1:
- Statuses : 4 pass(s)
- Exec time: [0.00] s
* igt@gem_spin_batch@resubmit-all@vecs0:
- Statuses : 6 pass(s)
- Exec time: [0.00, 0.01] s
* igt@gem_spin_batch@resubmit-new:
- Statuses : 5 pass(s)
- Exec time: [0.01, 0.06] s
* igt@gem_spin_batch@resubmit-new-all:
- Statuses : 7 pass(s)
- Exec time: [0.01, 0.08] s
* igt@gem_spin_batch@resubmit-new-all@bcs0:
- Statuses : 7 pass(s)
- Exec time: [0.00, 0.01] s
* igt@gem_spin_batch@resubmit-new-all@rcs0:
- Statuses : 7 pass(s)
- Exec time: [0.00, 0.03] s
* igt@gem_spin_batch@resubmit-new-all@vcs0:
- Statuses : 7 pass(s)
- Exec time: [0.00, 0.01] s
* igt@gem_spin_batch@resubmit-new-all@vcs1:
- Statuses : 4 pass(s)
- Exec time: [0.00, 0.01] s
* igt@gem_spin_batch@resubmit-new-all@vecs0:
- Statuses : 6 pass(s)
- Exec time: [0.00, 0.01] s
* igt@gem_spin_batch@resubmit-new@bcs0:
- Statuses : 5 pass(s)
- Exec time: [0.00] s
* igt@gem_spin_batch@resubmit-new@rcs0:
- Statuses : 5 pass(s)
- Exec time: [0.00, 0.03] s
* igt@gem_spin_batch@resubmit-new@vcs0:
- Statuses : 5 pass(s)
- Exec time: [0.00, 0.01] s
* igt@gem_spin_batch@resubmit-new@vcs1:
- Statuses : 3 pass(s)
- Exec time: [0.00] s
* igt@gem_spin_batch@resubmit-new@vecs0:
- Statuses : 4 pass(s)
- Exec time: [0.00] s
* igt@gem_spin_batch@resubmit@bcs0:
- Statuses : 6 pass(s)
- Exec time: [0.00] s
* igt@gem_spin_batch@resubmit@rcs0:
- Statuses : 6 pass(s)
- Exec time: [0.00, 0.03] s
* igt@gem_spin_batch@resubmit@vcs0:
- Statuses : 6 pass(s)
- Exec time: [0.00] s
* igt@gem_spin_batch@resubmit@vcs1:
- Statuses : 4 pass(s)
- Exec time: [0.00] s
* igt@gem_spin_batch@resubmit@vecs0:
- Statuses : 5 pass(s)
- Exec time: [0.00] s
* igt@gem_spin_batch@spin-all:
- Statuses : 6 pass(s)
- Exec time: [0.00, 0.04] s
* igt@gem_spin_batch@spin-all-new:
- Statuses : 6 pass(s)
- Exec time: [0.00, 0.05] s
* igt@gem_spin_batch@spin-each:
- Statuses : 6 pass(s)
- Exec time: [3.34, 3.40] s
* igt@gem_spin_batch@user-each:
- Statuses : 7 pass(s)
- Exec time: [3.27, 3.42] s
* igt@i915_hangman@detector:
- Statuses : 3 pass(s)
- Exec time: [48.89, 71.71] s
* igt@i915_hangman@detector@bcs0:
- Statuses : 3 pass(s)
- Exec time: [9.95, 12.03] s
* igt@i915_hangman@detector@rcs0:
- Statuses : 3 pass(s)
- Exec time: [8.88, 11.74] s
* igt@i915_hangman@detector@vcs0:
- Statuses : 3 pass(s)
- Exec time: [10.04, 11.97] s
* igt@i915_hangman@detector@vcs1:
- Statuses : 3 pass(s)
- Exec time: [9.97, 11.96] s
* igt@i915_hangman@detector@vecs0:
- Statuses : 3 pass(s)
- Exec time: [9.98, 12.03] s
* igt@i915_hangman@engine-engine-error:
- Statuses : 6 pass(s) 1 skip(s)
- Exec time: [0.0, 11.11] s
* igt@i915_hangman@engine-engine-error@bcs0:
- Statuses : 5 pass(s) 1 skip(s)
- Exec time: [0.00, 1.98] s
* igt@i915_hangman@engine-engine-error@rcs0:
- Statuses : 6 pass(s)
- Exec time: [0.07, 1.06] s
* igt@i915_hangman@engine-engine-error@vcs0:
- Statuses : 6 pass(s)
- Exec time: [0.07, 2.05] s
* igt@i915_hangman@engine-engine-error@vcs1:
- Statuses : 4 pass(s)
- Exec time: [0.08, 1.98] s
* igt@i915_hangman@engine-engine-error@vecs0:
- Statuses : 6 pass(s)
- Exec time: [0.07, 1.98] s
* igt@i915_hangman@engine-engine-hang:
- Statuses : 5 pass(s) 1 skip(s)
- Exec time: [0.0, 11.51] s
* igt@i915_hangman@engine-engine-hang@bcs0:
- Statuses : 5 pass(s)
- Exec time: [0.58, 1.98] s
* igt@i915_hangman@engine-engine-hang@rcs0:
- Statuses : 5 pass(s)
- Exec time: [0.59, 1.53] s
* igt@i915_hangman@engine-engine-hang@vcs0:
- Statuses : 5 pass(s)
- Exec time: [0.57, 1.98] s
* igt@i915_hangman@engine-engine-hang@vcs1:
- Statuses : 4 pass(s)
- Exec time: [0.58, 1.98] s
* igt@i915_hangman@engine-engine-hang@vecs0:
- Statuses : 5 pass(s)
- Exec time: [0.57, 2.05] s
* igt@i915_hangman@engine-error-state-capture:
- Statuses : 6 pass(s)
- Exec time: [16.20, 32.73] s
* igt@i915_hangman@engine-error-state-capture@bcs0:
- Statuses : 6 pass(s)
- Exec time: [3.96, 5.95] s
* igt@i915_hangman@engine-error-state-capture@rcs0:
- Statuses : 6 pass(s)
- Exec time: [1.80, 4.58] s
* igt@i915_hangman@engine-error-state-capture@vcs0:
- Statuses : 6 pass(s)
- Exec time: [3.03, 5.05] s
* igt@i915_hangman@engine-error-state-capture@vcs1:
- Statuses : 4 pass(s)
- Exec time: [3.97, 6.02] s
* igt@i915_hangman@engine-error-state-capture@vecs0:
- Statuses : 6 pass(s)
- Exec time: [3.95, 5.95] s
* igt@i915_hangman@gt-engine-error:
- Statuses : 6 pass(s) 1 skip(s)
- Exec time: [0.0, 11.36] s
* igt@i915_hangman@gt-engine-error@bcs0:
- Statuses : 5 pass(s) 1 skip(s)
- Exec time: [0.00, 2.08] s
* igt@i915_hangman@gt-engine-error@rcs0:
- Statuses : 6 pass(s)
- Exec time: [0.06, 1.20] s
* igt@i915_hangman@gt-engine-error@vcs0:
- Statuses : 6 pass(s)
- Exec time: [0.07, 2.01] s
* igt@i915_hangman@gt-engine-error@vcs1:
- Statuses : 4 pass(s)
- Exec time: [0.07, 2.00] s
* igt@i915_hangman@gt-engine-error@vecs0:
- Statuses : 6 pass(s)
- Exec time: [0.08, 2.00] s
* igt@i915_hangman@gt-engine-hang:
- Statuses : 5 pass(s) 1 skip(s)
- Exec time: [0.0, 5.23] s
* igt@i915_hangman@gt-engine-hang@bcs0:
- Statuses : 5 pass(s)
- Exec time: [0.57, 0.72] s
* igt@i915_hangman@gt-engine-hang@rcs0:
- Statuses : 5 pass(s)
- Exec time: [0.58, 0.82] s
* igt@i915_hangman@gt-engine-hang@vcs0:
- Statuses : 5 pass(s)
- Exec time: [0.57, 0.74] s
* igt@i915_hangman@gt-engine-hang@vcs1:
- Statuses : 3 pass(s)
- Exec time: [0.59, 0.73] s
* igt@i915_hangman@gt-engine-hang@vecs0:
- Statuses : 5 pass(s)
- Exec time: [0.57, 0.71] s
* igt@i915_hangman@gt-error-state-capture:
- Statuses : 5 pass(s)
- Exec time: [11.68, 68.53] s
* igt@i915_hangman@gt-error-state-capture@bcs0:
- Statuses : 5 pass(s)
- Exec time: [3.97, 10.01] s
* igt@i915_hangman@gt-error-state-capture@rcs0:
- Statuses : 5 pass(s)
- Exec time: [3.69, 9.91] s
* igt@i915_hangman@gt-error-state-capture@vcs0:
- Statuses : 5 pass(s)
- Exec time: [4.02, 10.01] s
* igt@i915_hangman@gt-error-state-capture@vcs1:
- Statuses : 3 pass(s)
- Exec time: [9.97, 10.04] s
* igt@i915_hangman@gt-error-state-capture@vecs0:
- Statuses : 4 pass(s)
- Exec time: [9.04, 9.99] s
Known issues
------------
Here are the changes found in IGTPW_12487_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@crc32:
- shard-dg1: NOTRUN -> [SKIP][9] ([i915#6230])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-17/igt@api_intel_bb@crc32.html
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-dg1: NOTRUN -> [SKIP][10] ([i915#8411])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-17/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@drm_fdinfo@busy-hang@bcs0:
- shard-dg2: NOTRUN -> [SKIP][11] ([i915#8414]) +9 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-10/igt@drm_fdinfo@busy-hang@bcs0.html
* igt@drm_fdinfo@busy-hang@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][12] ([i915#8414]) +7 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-1/igt@drm_fdinfo@busy-hang@rcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@bcs0:
- shard-dg1: NOTRUN -> [SKIP][13] ([i915#8414]) +13 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-13/igt@drm_fdinfo@most-busy-idle-check-all@bcs0.html
* igt@gem_basic@multigpu-create-close:
- shard-dg1: NOTRUN -> [SKIP][14] ([i915#7697])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-13/igt@gem_basic@multigpu-create-close.html
* igt@gem_busy@semaphore:
- shard-dg1: NOTRUN -> [SKIP][15] ([i915#3936])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-17/igt@gem_busy@semaphore.html
* igt@gem_ccs@block-copy-compressed:
- shard-tglu-1: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-1/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-rkl: NOTRUN -> [SKIP][17] ([i915#3555] / [i915#9323]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-4/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-dg1: NOTRUN -> [SKIP][18] ([i915#3555] / [i915#9323])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-14/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-rkl: NOTRUN -> [SKIP][19] ([i915#9323])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-7/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@large-ctrl-surf-copy:
- shard-rkl: NOTRUN -> [SKIP][20] ([i915#13008])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-3/igt@gem_ccs@large-ctrl-surf-copy.html
* igt@gem_close_race@multigpu-basic-process:
- shard-tglu-1: NOTRUN -> [SKIP][21] ([i915#7697])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-1/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-tglu: NOTRUN -> [SKIP][22] ([i915#7697])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-7/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-mtlp: NOTRUN -> [SKIP][23] ([i915#6335])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-3/igt@gem_create@create-ext-cpu-access-big.html
- shard-rkl: NOTRUN -> [SKIP][24] ([i915#6335])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-1/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_persistence@hang:
- shard-mtlp: NOTRUN -> [SKIP][25] ([i915#8555])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-5/igt@gem_ctx_persistence@hang.html
- shard-dg1: NOTRUN -> [SKIP][26] ([i915#8555])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-13/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_persistence@smoketest:
- shard-snb: NOTRUN -> [SKIP][27] ([i915#1099])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-snb5/igt@gem_ctx_persistence@smoketest.html
* igt@gem_ctx_sseu@engines:
- shard-tglu: NOTRUN -> [SKIP][28] ([i915#280])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-8/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg1: NOTRUN -> [SKIP][29] ([i915#280])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-18/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@hibernate:
- shard-dg1: NOTRUN -> [ABORT][30] ([i915#7975] / [i915#8213])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-14/igt@gem_eio@hibernate.html
- shard-dg2: NOTRUN -> [ABORT][31] ([i915#10030] / [i915#7975] / [i915#8213])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-8/igt@gem_eio@hibernate.html
* igt@gem_eio@kms:
- shard-dg1: [PASS][32] -> [FAIL][33] ([i915#5784])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-dg1-13/igt@gem_eio@kms.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-18/igt@gem_eio@kms.html
* igt@gem_eio@unwedge-stress:
- shard-mtlp: [PASS][34] -> [ABORT][35] ([i915#13193]) +1 other test abort
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-mtlp-8/igt@gem_eio@unwedge-stress.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-7/igt@gem_eio@unwedge-stress.html
- shard-dg1: [PASS][36] -> [FAIL][37] ([i915#12714] / [i915#5784])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-dg1-18/igt@gem_eio@unwedge-stress.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-14/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@bonded-semaphore:
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#4812])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-6/igt@gem_exec_balancer@bonded-semaphore.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#4771]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-3/igt@gem_exec_balancer@bonded-sync.html
- shard-dg1: NOTRUN -> [SKIP][40] ([i915#4771])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-12/igt@gem_exec_balancer@bonded-sync.html
- shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4771])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-2/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: NOTRUN -> [SKIP][42] ([i915#4525]) +4 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-7/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_balancer@parallel-dmabuf-import-out-fence:
- shard-tglu: NOTRUN -> [SKIP][43] ([i915#4525])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-4/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-tglu-1: NOTRUN -> [SKIP][44] ([i915#4525])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-1/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_capture@capture-invisible:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#6334]) +2 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-2/igt@gem_exec_capture@capture-invisible.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-glk: NOTRUN -> [SKIP][46] ([i915#6334]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-glk2/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_fence@syncobj-channel:
- shard-glk: NOTRUN -> [DMESG-WARN][47] ([i915#118])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-glk9/igt@gem_exec_fence@syncobj-channel.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-dg1: NOTRUN -> [SKIP][48] ([i915#3539] / [i915#4852]) +4 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-17/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_reloc@basic-cpu-read:
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#3281]) +8 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-1/igt@gem_exec_reloc@basic-cpu-read.html
* igt@gem_exec_reloc@basic-gtt-wc-noreloc:
- shard-rkl: NOTRUN -> [SKIP][50] ([i915#3281]) +10 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-1/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
* igt@gem_exec_reloc@basic-range:
- shard-mtlp: NOTRUN -> [SKIP][51] ([i915#3281]) +2 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-6/igt@gem_exec_reloc@basic-range.html
* igt@gem_exec_reloc@basic-wc-read:
- shard-dg1: NOTRUN -> [SKIP][52] ([i915#3281]) +7 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-18/igt@gem_exec_reloc@basic-wc-read.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#4812]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-12/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#4537] / [i915#4812])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-6/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_exec_suspend@basic-s3@smem:
- shard-glk: [PASS][55] -> [INCOMPLETE][56] ([i915#13196]) +1 other test incomplete
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-glk3/igt@gem_exec_suspend@basic-s3@smem.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-glk3/igt@gem_exec_suspend@basic-s3@smem.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-rkl: NOTRUN -> [ABORT][57] ([i915#7975] / [i915#8213]) +2 other tests abort
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-5/igt@gem_exec_suspend@basic-s4-devices.html
* igt@gem_fence_thrash@bo-write-verify-none:
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#4860]) +2 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-18/igt@gem_fence_thrash@bo-write-verify-none.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#4860]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-3/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-tglu: NOTRUN -> [SKIP][60] ([i915#4613] / [i915#7582])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-5/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-rkl: NOTRUN -> [SKIP][61] ([i915#4613]) +4 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-7/igt@gem_lmem_swapping@heavy-verify-random.html
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4613])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-8/igt@gem_lmem_swapping@heavy-verify-random.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-tglu: NOTRUN -> [SKIP][63] ([i915#4613]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-8/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@random-engines:
- shard-glk: NOTRUN -> [SKIP][64] ([i915#4613]) +6 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-glk7/igt@gem_lmem_swapping@random-engines.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#12193])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-17/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_lmem_swapping@verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][66] ([i915#4565])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-17/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html
* igt@gem_media_fill@media-fill:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#8289])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-7/igt@gem_media_fill@media-fill.html
* igt@gem_media_vme:
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#284])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-18/igt@gem_media_vme.html
* igt@gem_mmap_gtt@big-bo-tiledx:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#4077]) +6 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-6/igt@gem_mmap_gtt@big-bo-tiledx.html
* igt@gem_mmap_gtt@coherency:
- shard-dg1: NOTRUN -> [SKIP][70] ([i915#4077]) +12 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-18/igt@gem_mmap_gtt@coherency.html
* igt@gem_mmap_gtt@cpuset-medium-copy-odd:
- shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4077]) +3 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-3/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html
* igt@gem_mmap_wc@write:
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4083]) +2 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-7/igt@gem_mmap_wc@write.html
* igt@gem_mmap_wc@write-prefaulted:
- shard-dg1: NOTRUN -> [SKIP][73] ([i915#4083]) +6 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-14/igt@gem_mmap_wc@write-prefaulted.html
* igt@gem_mmap_wc@write-wc-read-gtt:
- shard-dg2: NOTRUN -> [SKIP][74] ([i915#4083]) +3 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-1/igt@gem_mmap_wc@write-wc-read-gtt.html
* igt@gem_partial_pwrite_pread@reads:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#3282]) +3 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-10/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_pwrite@basic-exhaustion:
- shard-rkl: NOTRUN -> [SKIP][76] ([i915#3282]) +4 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-4/igt@gem_pwrite@basic-exhaustion.html
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#3282]) +6 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-18/igt@gem_pwrite@basic-exhaustion.html
- shard-snb: NOTRUN -> [WARN][78] ([i915#2658])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-snb1/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@display-protected-crc:
- shard-rkl: NOTRUN -> [TIMEOUT][79] ([i915#12917] / [i915#12964]) +3 other tests timeout
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-6/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#4270]) +2 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-5/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
- shard-rkl: NOTRUN -> [TIMEOUT][81] ([i915#12964]) +1 other test timeout
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-5/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
- shard-dg1: NOTRUN -> [SKIP][82] ([i915#4270]) +3 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-18/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-tglu: NOTRUN -> [SKIP][83] ([i915#13398])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-10/igt@gem_pxp@hw-rejects-pxp-buffer.html
- shard-mtlp: NOTRUN -> [SKIP][84] ([i915#13398])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-3/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_readwrite@new-obj:
- shard-mtlp: NOTRUN -> [SKIP][85] ([i915#3282]) +4 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-3/igt@gem_readwrite@new-obj.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][86] ([i915#8428]) +2 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-4/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs.html
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#5190] / [i915#8428]) +4 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-4/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs.html
* igt@gem_set_tiling_vs_gtt:
- shard-dg1: NOTRUN -> [SKIP][88] ([i915#4079]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-14/igt@gem_set_tiling_vs_gtt.html
- shard-mtlp: NOTRUN -> [SKIP][89] ([i915#4079])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-8/igt@gem_set_tiling_vs_gtt.html
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#4079])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-7/igt@gem_set_tiling_vs_gtt.html
* igt@gem_tiled_swapping@non-threaded:
- shard-tglu: [PASS][91] -> [FAIL][92] ([i915#13557])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-tglu-3/igt@gem_tiled_swapping@non-threaded.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-3/igt@gem_tiled_swapping@non-threaded.html
* igt@gem_userptr_blits@access-control:
- shard-mtlp: NOTRUN -> [SKIP][93] ([i915#3297]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-5/igt@gem_userptr_blits@access-control.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][94] ([i915#3297]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-5/igt@gem_userptr_blits@create-destroy-unsync.html
- shard-rkl: NOTRUN -> [SKIP][95] ([i915#3297])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-5/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#3282] / [i915#3297])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-2/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-dg1: NOTRUN -> [SKIP][97] ([i915#3297] / [i915#4880])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-18/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-dg1: NOTRUN -> [SKIP][98] ([i915#3297]) +2 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-17/igt@gem_userptr_blits@readonly-unsync.html
* igt@gem_userptr_blits@relocations:
- shard-dg2: NOTRUN -> [SKIP][99] ([i915#3281] / [i915#3297])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-6/igt@gem_userptr_blits@relocations.html
- shard-rkl: NOTRUN -> [SKIP][100] ([i915#3281] / [i915#3297])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-3/igt@gem_userptr_blits@relocations.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg1: NOTRUN -> [SKIP][101] ([i915#3297] / [i915#4958])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-12/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-tglu-1: NOTRUN -> [SKIP][102] ([i915#3297])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-1/igt@gem_userptr_blits@unsync-overlap.html
* igt@gen9_exec_parse@bb-oversize:
- shard-rkl: NOTRUN -> [SKIP][103] ([i915#2527]) +4 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-7/igt@gen9_exec_parse@bb-oversize.html
- shard-dg1: NOTRUN -> [SKIP][104] ([i915#2527]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-14/igt@gen9_exec_parse@bb-oversize.html
- shard-mtlp: NOTRUN -> [SKIP][105] ([i915#2856]) +1 other test skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-6/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-secure:
- shard-tglu-1: NOTRUN -> [SKIP][106] ([i915#2527] / [i915#2856])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-1/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@bb-start-far:
- shard-dg2: NOTRUN -> [SKIP][107] ([i915#2856]) +2 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-2/igt@gen9_exec_parse@bb-start-far.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-tglu: NOTRUN -> [SKIP][108] ([i915#2527] / [i915#2856]) +3 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-3/igt@gen9_exec_parse@unaligned-jump.html
* igt@i915_fb_tiling:
- shard-mtlp: NOTRUN -> [SKIP][109] ([i915#4881])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-5/igt@i915_fb_tiling.html
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#4881])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-13/igt@i915_fb_tiling.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: [PASS][111] -> [ABORT][112] ([i915#9820])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-snb5/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg1: NOTRUN -> [ABORT][113] ([i915#13493] / [i915#9820])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-12/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_module_load@resize-bar:
- shard-tglu-1: NOTRUN -> [SKIP][114] ([i915#6412])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-1/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-reset:
- shard-tglu: NOTRUN -> [SKIP][115] ([i915#8399])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-10/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_freq_api@freq-suspend@gt0:
- shard-dg2: [PASS][116] -> [INCOMPLETE][117] ([i915#12455]) +1 other test incomplete
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-dg2-10/igt@i915_pm_freq_api@freq-suspend@gt0.html
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-3/igt@i915_pm_freq_api@freq-suspend@gt0.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-rkl: [PASS][118] -> [FAIL][119] ([i915#12942]) +1 other test fail
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-rkl-4/igt@i915_pm_rc6_residency@rc6-accuracy.html
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-1/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#11681] / [i915#6621])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-17/igt@i915_pm_rps@min-max-config-idle.html
- shard-mtlp: NOTRUN -> [SKIP][121] ([i915#11681] / [i915#6621])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-1/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@thresholds-park:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#11681])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-6/igt@i915_pm_rps@thresholds-park.html
* igt@i915_pm_sseu@full-enable:
- shard-tglu-1: NOTRUN -> [SKIP][123] ([i915#4387])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-1/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@hwconfig_table:
- shard-rkl: NOTRUN -> [SKIP][124] ([i915#6245])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-3/igt@i915_query@hwconfig_table.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-mtlp: NOTRUN -> [SKIP][125] ([i915#6188])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-7/igt@i915_query@query-topology-coherent-slice-mask.html
- shard-dg2: NOTRUN -> [SKIP][126] ([i915#6188])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-6/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_selftest@live@workarounds:
- shard-mtlp: [PASS][127] -> [DMESG-FAIL][128] ([i915#12061]) +1 other test dmesg-fail
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-mtlp-4/igt@i915_selftest@live@workarounds.html
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-3/igt@i915_selftest@live@workarounds.html
* igt@i915_selftest@mock:
- shard-glk: NOTRUN -> [DMESG-WARN][129] ([i915#1982] / [i915#9311])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-glk7/igt@i915_selftest@mock.html
* igt@i915_selftest@mock@memory_region:
- shard-glk: NOTRUN -> [DMESG-WARN][130] ([i915#9311])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-glk7/igt@i915_selftest@mock@memory_region.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-glk: NOTRUN -> [INCOMPLETE][131] ([i915#4817])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-glk5/igt@i915_suspend@basic-s3-without-i915.html
* igt@i915_suspend@debugfs-reader:
- shard-glk: [PASS][132] -> [INCOMPLETE][133] ([i915#4817])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-glk2/igt@i915_suspend@debugfs-reader.html
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-glk7/igt@i915_suspend@debugfs-reader.html
* igt@intel_hwmon@hwmon-write:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#7707])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-5/igt@intel_hwmon@hwmon-write.html
- shard-mtlp: NOTRUN -> [SKIP][135] ([i915#7707])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-2/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-mtlp: NOTRUN -> [SKIP][136] ([i915#4212])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-2/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg1: NOTRUN -> [SKIP][137] ([i915#4212]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-14/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-glk: NOTRUN -> [INCOMPLETE][138] ([i915#12761] / [i915#1982]) +1 other test incomplete
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-glk1/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-4-y-rc-ccs-cc:
- shard-dg1: NOTRUN -> [SKIP][139] ([i915#8709]) +7 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-14/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-4-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-4-rc-ccs-cc:
- shard-dg2: NOTRUN -> [SKIP][140] ([i915#8709]) +7 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-8/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-4-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-y-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][141] ([i915#8709]) +3 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-4/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc:
- shard-tglu-1: NOTRUN -> [SKIP][142] ([i915#8709]) +3 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_atomic_transition@modeset-transition-fencing:
- shard-glk: [PASS][143] -> [FAIL][144] ([i915#12238])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-glk5/igt@kms_atomic_transition@modeset-transition-fencing.html
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-glk8/igt@kms_atomic_transition@modeset-transition-fencing.html
* igt@kms_atomic_transition@modeset-transition-fencing@2x-outputs:
- shard-glk: [PASS][145] -> [FAIL][146] ([i915#11859])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-glk5/igt@kms_atomic_transition@modeset-transition-fencing@2x-outputs.html
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-glk8/igt@kms_atomic_transition@modeset-transition-fencing@2x-outputs.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-tglu: [PASS][147] -> [FAIL][148] ([i915#11808]) +1 other test fail
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-tglu-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-10/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-tglu: NOTRUN -> [SKIP][149] ([i915#1769] / [i915#3555])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-10/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-glk: NOTRUN -> [SKIP][150] ([i915#1769])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-glk1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-180:
- shard-tglu-1: NOTRUN -> [SKIP][151] ([i915#5286]) +1 other test skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-1/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][152] ([i915#5286]) +6 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-1/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][153] ([i915#5286]) +8 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-7/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
- shard-mtlp: NOTRUN -> [SKIP][154] +9 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-7/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][155] ([i915#4538] / [i915#5286]) +6 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-12/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
- shard-dg1: NOTRUN -> [SKIP][156] ([i915#5286])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-17/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [PASS][157] -> [FAIL][158] ([i915#5138])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#3638]) +4 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-4/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][160] ([i915#4538] / [i915#5190]) +7 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-7/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][161] ([i915#3638]) +5 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-18/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][162] ([i915#4538]) +6 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-12/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#5190])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-5/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][164] ([i915#6095]) +177 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-18/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][165] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][166] ([i915#6095]) +49 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-4/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-edp-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#12313])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#12313])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-8/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][169] ([i915#6095]) +49 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-7/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][170] ([i915#12313]) +2 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-18/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][171] ([i915#6095]) +24 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][172] ([i915#12805])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-12/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
- shard-tglu: NOTRUN -> [SKIP][173] ([i915#12805])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][174] ([i915#12805])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][175] ([i915#6095]) +78 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#6095]) +21 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-5/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][177] ([i915#12796])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-glk7/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][178] ([i915#12313]) +1 other test skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#10307] / [i915#6095]) +132 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs:
- shard-dg1: NOTRUN -> [SKIP][180] ([i915#4423] / [i915#6095]) +1 other test skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-13/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-tglu: NOTRUN -> [SKIP][181] ([i915#12313]) +1 other test skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-5/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_cdclk@mode-transition:
- shard-dg1: NOTRUN -> [SKIP][182] ([i915#3742])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-12/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-rkl: NOTRUN -> [SKIP][183] ([i915#3742])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-7/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#4087]) +3 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-7/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html
* igt@kms_chamelium_edid@vga-edid-read:
- shard-mtlp: NOTRUN -> [SKIP][185] ([i915#11151] / [i915#7828]) +2 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-6/igt@kms_chamelium_edid@vga-edid-read.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][186] ([i915#11151] / [i915#7828]) +6 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-8/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_frames@hdmi-crc-single:
- shard-tglu-1: NOTRUN -> [SKIP][187] ([i915#11151] / [i915#7828]) +2 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-1/igt@kms_chamelium_frames@hdmi-crc-single.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-tglu: NOTRUN -> [SKIP][188] ([i915#11151] / [i915#7828]) +11 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-10/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#11151] / [i915#7828]) +8 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-4/igt@kms_chamelium_hpd@vga-hpd-fast.html
- shard-dg1: NOTRUN -> [SKIP][190] ([i915#11151] / [i915#7828]) +10 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-13/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_content_protection@atomic@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][191] ([i915#7173])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-10/igt@kms_content_protection@atomic@pipe-a-dp-4.html
* igt@kms_content_protection@content-type-change:
- shard-tglu: NOTRUN -> [SKIP][192] ([i915#6944] / [i915#9424])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-8/igt@kms_content_protection@content-type-change.html
- shard-mtlp: NOTRUN -> [SKIP][193] ([i915#6944] / [i915#9424])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-3/igt@kms_content_protection@content-type-change.html
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#9424])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-10/igt@kms_content_protection@content-type-change.html
- shard-rkl: NOTRUN -> [SKIP][195] ([i915#9424])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-4/igt@kms_content_protection@content-type-change.html
- shard-dg1: NOTRUN -> [SKIP][196] ([i915#9424])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-18/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: NOTRUN -> [SKIP][197] ([i915#9433])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-12/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@type1:
- shard-dg1: NOTRUN -> [SKIP][198] ([i915#7116] / [i915#9424])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-17/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-tglu-1: NOTRUN -> [SKIP][199] ([i915#3555]) +1 other test skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][200] ([i915#13049])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-3/igt@kms_cursor_crc@cursor-offscreen-512x512.html
- shard-rkl: NOTRUN -> [SKIP][201] ([i915#13049])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-512x512.html
- shard-dg1: NOTRUN -> [SKIP][202] ([i915#13049])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-18/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-rkl: [PASS][203] -> [FAIL][204] ([i915#13566])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][205] ([i915#13566]) +1 other test fail
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-mtlp: NOTRUN -> [SKIP][206] ([i915#3555] / [i915#8814]) +1 other test skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-7/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-tglu: NOTRUN -> [SKIP][207] ([i915#3555]) +1 other test skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-2/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-snb: NOTRUN -> [SKIP][208] +194 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-snb2/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#3555]) +7 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-3/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-mtlp: NOTRUN -> [SKIP][210] ([i915#8814])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-7/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-tglu: NOTRUN -> [SKIP][211] ([i915#13049]) +3 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-3/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-tglu: NOTRUN -> [SKIP][212] ([i915#4103])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
- shard-dg2: NOTRUN -> [SKIP][213] ([i915#13046] / [i915#5354]) +2 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-mtlp: NOTRUN -> [SKIP][214] ([i915#9809]) +3 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [PASS][215] -> [FAIL][216] ([i915#2346])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: NOTRUN -> [FAIL][217] ([i915#2346])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg1: NOTRUN -> [SKIP][218] ([i915#9067])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-18/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-mtlp: NOTRUN -> [SKIP][219] ([i915#4213])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#4103] / [i915#4213])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-tglu-1: NOTRUN -> [SKIP][221] ([i915#4103]) +1 other test skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#9723])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg1: NOTRUN -> [SKIP][223] ([i915#9723])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-12/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-rkl: NOTRUN -> [SKIP][224] ([i915#12402])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-dg1: NOTRUN -> [SKIP][225] ([i915#12402])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-13/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-mtlp: NOTRUN -> [SKIP][226] ([i915#12402])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-5/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][227] ([i915#8812])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-13/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-tglu-1: NOTRUN -> [SKIP][228] ([i915#3840])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-formats:
- shard-tglu: NOTRUN -> [SKIP][229] ([i915#3555] / [i915#3840])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-6/igt@kms_dsc@dsc-with-formats.html
- shard-rkl: NOTRUN -> [SKIP][230] ([i915#3555] / [i915#3840])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-1/igt@kms_dsc@dsc-with-formats.html
- shard-dg1: NOTRUN -> [SKIP][231] ([i915#3555] / [i915#3840])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-12/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg1: NOTRUN -> [SKIP][232] ([i915#3840] / [i915#9053])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-18/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][233] ([i915#9878])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-glk8/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2: NOTRUN -> [SKIP][234] ([i915#3469])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-3/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-tglu-1: NOTRUN -> [SKIP][235] ([i915#2065] / [i915#4854])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-1/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-mtlp: NOTRUN -> [SKIP][236] ([i915#1839])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-1/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2: NOTRUN -> [SKIP][237] ([i915#1839])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-2/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-rkl: NOTRUN -> [SKIP][238] ([i915#1839])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-3/igt@kms_feature_discovery@display-4x.html
- shard-dg1: NOTRUN -> [SKIP][239] ([i915#1839]) +1 other test skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-12/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-rkl: NOTRUN -> [SKIP][240] ([i915#9337])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-1/igt@kms_feature_discovery@dp-mst.html
- shard-dg1: NOTRUN -> [SKIP][241] ([i915#9337])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-17/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr2:
- shard-tglu: NOTRUN -> [SKIP][242] ([i915#658])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-7/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][243] ([i915#3637]) +4 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-6/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][244] ([i915#3637]) +3 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-rkl: NOTRUN -> [SKIP][245] ([i915#9934]) +7 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-4/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-mtlp: NOTRUN -> [SKIP][246] ([i915#3637]) +3 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-5/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2:
- shard-glk: NOTRUN -> [INCOMPLETE][247] ([i915#4839])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-glk4/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-flip-vs-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][248] ([i915#9934]) +1 other test skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-2/igt@kms_flip@2x-flip-vs-wf_vblank.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-dg1: NOTRUN -> [SKIP][249] ([i915#9934]) +7 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-12/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-snb: [PASS][250] -> [FAIL][251] ([i915#11989]) +5 other tests fail
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-snb7/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-snb7/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-dg2: [PASS][252] -> [FAIL][253] ([i915#13027])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-dg2-7/igt@kms_flip@flip-vs-expired-vblank.html
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-4/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1:
- shard-tglu: NOTRUN -> [FAIL][254] ([i915#13027]) +1 other test fail
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1.html
* igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a1:
- shard-dg2: NOTRUN -> [FAIL][255] ([i915#13027])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-4/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-glk: NOTRUN -> [INCOMPLETE][256] ([i915#12745] / [i915#4839]) +1 other test incomplete
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-glk6/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][257] ([i915#12745])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-glk6/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][258] ([i915#2672] / [i915#3555])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][259] ([i915#2587] / [i915#2672]) +1 other test skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][260] ([i915#2672] / [i915#3555]) +1 other test skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][261] ([i915#2672]) +1 other test skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][262] ([i915#2672] / [i915#3555] / [i915#8813]) +2 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
- shard-dg1: NOTRUN -> [SKIP][263] ([i915#2587] / [i915#2672] / [i915#3555])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
- shard-tglu: NOTRUN -> [SKIP][264] ([i915#2587] / [i915#2672] / [i915#3555])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][265] ([i915#2587] / [i915#2672] / [i915#3555])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-tglu: NOTRUN -> [SKIP][266] ([i915#2672] / [i915#3555]) +3 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][267] ([i915#2587] / [i915#2672]) +6 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][268] ([i915#2672] / [i915#8813])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][269] ([i915#2587] / [i915#2672]) +4 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][270] ([i915#2672] / [i915#3555]) +6 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
- shard-dg1: NOTRUN -> [SKIP][271] ([i915#2672] / [i915#3555]) +5 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][272] ([i915#2672]) +6 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][273] ([i915#1825]) +35 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-snb: [PASS][274] -> [SKIP][275] +3 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite:
- shard-dg2: NOTRUN -> [FAIL][276] ([i915#6880])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][277] ([i915#3458]) +10 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt:
- shard-dg1: NOTRUN -> [SKIP][278] +46 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][279] ([i915#1825]) +15 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][280] ([i915#3458]) +20 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][281] ([i915#5439])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][282] ([i915#3023]) +28 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][283] ([i915#8708]) +24 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move:
- shard-tglu: NOTRUN -> [SKIP][284] +78 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][285] ([i915#5354]) +24 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][286] +37 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][287] ([i915#8708]) +13 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][288] ([i915#8708]) +6 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
* igt@kms_hdr@brightness-with-hdr:
- shard-tglu-1: NOTRUN -> [SKIP][289] ([i915#12713])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-1/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg1: NOTRUN -> [SKIP][290] ([i915#3555] / [i915#8228]) +1 other test skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-13/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle:
- shard-tglu: NOTRUN -> [SKIP][291] ([i915#3555] / [i915#8228]) +1 other test skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-3/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-suspend:
- shard-rkl: NOTRUN -> [SKIP][292] ([i915#3555] / [i915#8228]) +2 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-6/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][293] ([i915#12388])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-7/igt@kms_joiner@basic-force-big-joiner.html
- shard-dg1: NOTRUN -> [SKIP][294] ([i915#12388])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-18/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][295] ([i915#12388])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-2/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][296] ([i915#12339])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-4/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][297] ([i915#13522])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-mtlp: NOTRUN -> [SKIP][298] ([i915#4816])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-rkl: NOTRUN -> [SKIP][299] ([i915#4070] / [i915#4816])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-tglu: NOTRUN -> [SKIP][300] ([i915#1839]) +1 other test skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@legacy:
- shard-tglu: NOTRUN -> [SKIP][301] ([i915#6301])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-2/igt@kms_panel_fitting@legacy.html
- shard-rkl: NOTRUN -> [SKIP][302] ([i915#6301])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-5/igt@kms_panel_fitting@legacy.html
- shard-dg1: NOTRUN -> [SKIP][303] ([i915#6301])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-18/igt@kms_panel_fitting@legacy.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a:
- shard-rkl: NOTRUN -> [DMESG-FAIL][304] ([i915#12964]) +1 other test dmesg-fail
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-1/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-glk: NOTRUN -> [FAIL][305] ([i915#10647] / [i915#12177])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-glk3/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-b-hdmi-a-2:
- shard-rkl: [PASS][306] -> [DMESG-WARN][307] ([i915#12964]) +37 other tests dmesg-warn
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-rkl-5/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-b-hdmi-a-2.html
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-1/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-b-hdmi-a-2.html
* igt@kms_plane_alpha_blend@constant-alpha-max:
- shard-glk: NOTRUN -> [FAIL][308] ([i915#10647] / [i915#12169])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-glk4/igt@kms_plane_alpha_blend@constant-alpha-max.html
* igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][309] ([i915#10647]) +3 other tests fail
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-glk4/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html
* igt@kms_plane_cursor@viewport@pipe-d-edp-1-size-256:
- shard-mtlp: [PASS][310] -> [DMESG-WARN][311] ([i915#1982])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-mtlp-1/igt@kms_plane_cursor@viewport@pipe-d-edp-1-size-256.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-3/igt@kms_plane_cursor@viewport@pipe-d-edp-1-size-256.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a:
- shard-dg1: NOTRUN -> [SKIP][312] ([i915#12247]) +8 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-12/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-tglu-1: NOTRUN -> [SKIP][313] ([i915#12247]) +4 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][314] ([i915#12247]) +2 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75:
- shard-mtlp: NOTRUN -> [SKIP][315] ([i915#12247] / [i915#3555] / [i915#6953])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-2/igt@kms_plane_scaling@planes-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b:
- shard-mtlp: NOTRUN -> [SKIP][316] ([i915#12247]) +12 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-2/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
- shard-mtlp: NOTRUN -> [SKIP][317] ([i915#12247] / [i915#6953])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
- shard-dg2: NOTRUN -> [SKIP][318] ([i915#12247] / [i915#6953] / [i915#9423])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
- shard-tglu: NOTRUN -> [SKIP][319] ([i915#12247] / [i915#6953])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-10/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c:
- shard-dg2: NOTRUN -> [SKIP][320] ([i915#12247]) +7 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d:
- shard-tglu: NOTRUN -> [SKIP][321] ([i915#12247]) +8 other tests skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-10/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][322] ([i915#12247] / [i915#3555] / [i915#9423])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][323] ([i915#12343])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-1/igt@kms_pm_backlight@brightness-with-dpms.html
- shard-dg1: NOTRUN -> [SKIP][324] ([i915#12343])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-18/igt@kms_pm_backlight@brightness-with-dpms.html
- shard-tglu: NOTRUN -> [SKIP][325] ([i915#12343])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-7/igt@kms_pm_backlight@brightness-with-dpms.html
- shard-dg2: NOTRUN -> [SKIP][326] ([i915#12343])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-3/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade:
- shard-tglu-1: NOTRUN -> [SKIP][327] ([i915#9812])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-1/igt@kms_pm_backlight@fade.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][328] ([i915#5354]) +1 other test skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-1/igt@kms_pm_backlight@fade-with-dpms.html
- shard-dg1: NOTRUN -> [SKIP][329] ([i915#5354]) +2 other tests skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-12/igt@kms_pm_backlight@fade-with-dpms.html
- shard-tglu: NOTRUN -> [SKIP][330] ([i915#9812])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-6/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2: NOTRUN -> [SKIP][331] ([i915#9685])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-6/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-rkl: NOTRUN -> [SKIP][332] ([i915#3828])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-6/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-rkl: NOTRUN -> [SKIP][333] ([i915#3361])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-3/igt@kms_pm_dc@dc6-dpms.html
- shard-tglu: [PASS][334] -> [FAIL][335] ([i915#9295])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-tglu-10/igt@kms_pm_dc@dc6-dpms.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-5/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-mtlp: [PASS][336] -> [FAIL][337] ([i915#12912])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-mtlp-7/igt@kms_pm_dc@dc6-psr.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-5/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][338] ([i915#4281])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-1/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: [PASS][339] -> [SKIP][340] ([i915#9519])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-rkl-7/igt@kms_pm_rpm@dpms-lpsp.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-5/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg1: NOTRUN -> [SKIP][341] ([i915#9519])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-14/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: NOTRUN -> [SKIP][342] ([i915#9519])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp-stress.html
- shard-rkl: NOTRUN -> [SKIP][343] ([i915#9519])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-tglu: NOTRUN -> [SKIP][344] ([i915#9519]) +1 other test skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-10/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
- shard-mtlp: NOTRUN -> [SKIP][345] ([i915#9519]) +1 other test skip
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-mtlp-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-tglu-1: NOTRUN -> [SKIP][346] ([i915#9519])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: NOTRUN -> [SKIP][347] ([i915#6524])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-rkl-4/igt@kms_prime@basic-modeset-hybrid.html
- shard-dg1: NOTRUN -> [SKIP][348] ([i915#6524]) +1 other test skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-13/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
- shard-snb: NOTRUN -> [SKIP][349] ([i915#11520]) +7 other tests skip
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-snb7/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
- shard-tglu: NOTRUN -> [SKIP][350] ([i915#11520]) +10 other tests skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-tglu-10/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][351] ([i915#11520]) +15 other tests skip
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-glk7/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][352] ([i915#11520]) +4 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg1-18/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf:
- shard-dg2: NOTRUN -> [SKIP][353] ([i915#11520]) +5 other tests skip
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/shard-dg2-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-tglu-1: NOTRUN -> [SKIP][354] ([i915#11520]) +3 other tests skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_124
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/index.html
[-- Attachment #2: Type: text/html, Size: 112932 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH i-g-t v2 2/3] lib/igt_device_scan: change device list variable visibility
2025-01-23 9:52 ` [PATCH i-g-t v2 2/3] lib/igt_device_scan: change device list variable visibility Zbigniew Kempczyński
@ 2025-01-24 16:26 ` Kamil Konieczny
2025-01-27 4:49 ` Zbigniew Kempczyński
0 siblings, 1 reply; 18+ messages in thread
From: Kamil Konieczny @ 2025-01-24 16:26 UTC (permalink / raw)
To: igt-dev; +Cc: Zbigniew Kempczyński, Lucas De Marchi
Hi Zbigniew,
On 2025-01-23 at 10:52:07 +0100, Zbigniew Kempczyński wrote:
could you improve subject? something like:
lib/igt_device_scan: Fix multithreading for Xe
> In commit: 2e8f3e06fb (tests/xe_evict|exec_threads: Use fd reopen
> to avoid corrupting global data) I simply changed tests which
> corrupted device list global variable. i915 didn't use opening
> devices in multithreaded tests but this changed with xe.
>
> Device scan is now unconditional so we may change device list
> variable visibility to TLS. With this reverting of above commit
> should be safe (but I'm not sure is it worth to do this).
>
What about adding Fixes: tag? It is not a kernel so no strict
rules here, up to you.
> Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> Cc: Lucas De Marchi <lucas.demarchi@intel.com>
> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
You forgot about:
Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>
LGTM so also:
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> ---
> lib/igt_device_scan.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/lib/igt_device_scan.c b/lib/igt_device_scan.c
> index 44b632008b..c36b0efa90 100644
> --- a/lib/igt_device_scan.c
> +++ b/lib/igt_device_scan.c
> @@ -247,7 +247,7 @@ struct igt_device {
> };
>
> /* Scanned devices */
> -static struct {
> +static __thread struct {
> struct igt_list_head all;
> struct igt_list_head filtered;
> bool devs_scanned;
> --
> 2.34.1
>
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH i-g-t v2 3/3] tests/xe_intel_bb: check multithreading rescans won't segfault
2025-01-23 9:52 ` [PATCH i-g-t v2 3/3] tests/xe_intel_bb: check multithreading rescans won't segfault Zbigniew Kempczyński
@ 2025-01-24 16:28 ` Kamil Konieczny
2025-01-27 4:50 ` Zbigniew Kempczyński
0 siblings, 1 reply; 18+ messages in thread
From: Kamil Konieczny @ 2025-01-24 16:28 UTC (permalink / raw)
To: igt-dev; +Cc: Zbigniew Kempczyński, Lucas De Marchi
Hi Zbigniew,
On 2025-01-23 at 10:52:08 +0100, Zbigniew Kempczyński wrote:
> This test is likely only for checking purposes, it doesn't makes
> sense to merge it after series review.
In such cases please add prefix in subject, something like:
[PATCH i-g-t v2 3/3] DO_NOT_MERGE: tests/xe_intel_bb: check multithreading rescans won't segfault
Regards,
Kamil
>
> Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> Cc: Lucas De Marchi <lucas.demarchi@intel.com>
> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> ---
> tests/intel-ci/xe-fast-feedback.testlist | 1 +
> tests/intel/xe_intel_bb.c | 47 ++++++++++++++++++++++++
> 2 files changed, 48 insertions(+)
>
...cut...
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH i-g-t v2 2/3] lib/igt_device_scan: change device list variable visibility
2025-01-24 16:26 ` Kamil Konieczny
@ 2025-01-27 4:49 ` Zbigniew Kempczyński
2025-01-27 15:31 ` Lucas De Marchi
0 siblings, 1 reply; 18+ messages in thread
From: Zbigniew Kempczyński @ 2025-01-27 4:49 UTC (permalink / raw)
To: Kamil Konieczny, igt-dev, Lucas De Marchi
On Fri, Jan 24, 2025 at 05:26:25PM +0100, Kamil Konieczny wrote:
> Hi Zbigniew,
> On 2025-01-23 at 10:52:07 +0100, Zbigniew Kempczyński wrote:
>
> could you improve subject? something like:
>
> lib/igt_device_scan: Fix multithreading for Xe
Yes, I can change it to sth like
'lib/igt_device_scan: fix multithreading support in device scanning'
because it also affects i915 even if there's not used there.
>
> > In commit: 2e8f3e06fb (tests/xe_evict|exec_threads: Use fd reopen
> > to avoid corrupting global data) I simply changed tests which
> > corrupted device list global variable. i915 didn't use opening
> > devices in multithreaded tests but this changed with xe.
> >
> > Device scan is now unconditional so we may change device list
> > variable visibility to TLS. With this reverting of above commit
> > should be safe (but I'm not sure is it worth to do this).
> >
>
> What about adding Fixes: tag? It is not a kernel so no strict
> rules here, up to you.
I don't if any freedesktop issue was created for this, maybe Lucas
knows about it.
--
Zbigniew
>
> > Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> > Cc: Lucas De Marchi <lucas.demarchi@intel.com>
> > Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
>
> You forgot about:
> Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>
>
> LGTM so also:
> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
>
> > ---
> > lib/igt_device_scan.c | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/lib/igt_device_scan.c b/lib/igt_device_scan.c
> > index 44b632008b..c36b0efa90 100644
> > --- a/lib/igt_device_scan.c
> > +++ b/lib/igt_device_scan.c
> > @@ -247,7 +247,7 @@ struct igt_device {
> > };
> >
> > /* Scanned devices */
> > -static struct {
> > +static __thread struct {
> > struct igt_list_head all;
> > struct igt_list_head filtered;
> > bool devs_scanned;
> > --
> > 2.34.1
> >
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH i-g-t v2 3/3] tests/xe_intel_bb: check multithreading rescans won't segfault
2025-01-24 16:28 ` Kamil Konieczny
@ 2025-01-27 4:50 ` Zbigniew Kempczyński
0 siblings, 0 replies; 18+ messages in thread
From: Zbigniew Kempczyński @ 2025-01-27 4:50 UTC (permalink / raw)
To: Kamil Konieczny, igt-dev
On Fri, Jan 24, 2025 at 05:28:58PM +0100, Kamil Konieczny wrote:
> Hi Zbigniew,
> On 2025-01-23 at 10:52:08 +0100, Zbigniew Kempczyński wrote:
> > This test is likely only for checking purposes, it doesn't makes
> > sense to merge it after series review.
>
> In such cases please add prefix in subject, something like:
Ack, noticed for future patches.
--
Zbigniew
>
> [PATCH i-g-t v2 3/3] DO_NOT_MERGE: tests/xe_intel_bb: check multithreading rescans won't segfault
>
> Regards,
> Kamil
>
> >
> > Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> > Cc: Lucas De Marchi <lucas.demarchi@intel.com>
> > Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> > ---
> > tests/intel-ci/xe-fast-feedback.testlist | 1 +
> > tests/intel/xe_intel_bb.c | 47 ++++++++++++++++++++++++
> > 2 files changed, 48 insertions(+)
> >
> ...cut...
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: ✗ Xe.CI.Full: failure for Drop device scan cache logic (rev2)
2025-01-23 23:13 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-01-27 4:55 ` Zbigniew Kempczyński
0 siblings, 0 replies; 18+ messages in thread
From: Zbigniew Kempczyński @ 2025-01-27 4:55 UTC (permalink / raw)
To: igt-dev; +Cc: I915-ci-infra
On Thu, Jan 23, 2025 at 11:13:48PM +0000, Patchwork wrote:
> Patch Details
>
> Series: Drop device scan cache logic (rev2)
> URL: https://patchwork.freedesktop.org/series/143880/
> State: failure
> Details: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12487/index.html
>
> CI Bug Log - changes from XEIGT_8207_full -> XEIGTPW_12487_full
>
> Summary
>
> FAILURE
>
> Serious unknown changes coming with XEIGTPW_12487_full absolutely need to
> be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in XEIGTPW_12487_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_12487_full:
>
> IGT changes
>
> Possible regressions
>
> * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc:
>
> * shard-dg2-set2: PASS -> DMESG-WARN
> * igt@kms_content_protection@legacy:
>
> * shard-dg2-set2: NOTRUN -> INCOMPLETE +1 other test incomplete
> * igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-reopen:
>
> * shard-bmg: PASS -> INCOMPLETE
These failures are not related to the patch series.
--
Zbigniew
>
> New tests
>
> New tests have been introduced between XEIGT_8207_full and
> XEIGTPW_12487_full:
>
> New IGT tests (1)
>
> * igt@xe_intel_bb@multithread-open:
> * Statuses : 2 pass(s)
> * Exec time: [1.42, 1.62] s
>
> Known issues
>
> Here are the changes found in XEIGTPW_12487_full that come from known
> issues:
>
> IGT changes
>
> Issues hit
>
> * igt@kms_big_fb@4-tiled-32bpp-rotate-270:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#1407) +1 other test skip
> * igt@kms_big_fb@linear-32bpp-rotate-270:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#316) +1 other test skip
> * igt@kms_big_fb@x-tiled-64bpp-rotate-270:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#2327)
> * igt@kms_big_fb@y-tiled-addfb-size-overflow:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#1428) +1 other test skip
> * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#1124) +3 other tests skip
> * igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1124) +9 other tests
> skip
> * igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#1124) +2 other tests skip
> * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#2191) +1 other test skip
> * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2191) +2 other tests
> skip
> * igt@kms_bw@linear-tiling-2-displays-2560x1440p:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#367) +1 other test skip
> * igt@kms_bw@linear-tiling-4-displays-2560x1440p:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#367) +1 other test skip
> * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#787) +104 other tests
> skip
> * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#455 / Intel XE#787) +21
> other tests skip
> * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2907)
> * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#2887) +3 other tests skip
> * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#3433) +3 other tests skip
> * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
>
> * shard-dg2-set2: NOTRUN -> INCOMPLETE (Intel XE#2705 / Intel
> XE#4010)
> * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6:
>
> * shard-dg2-set2: NOTRUN -> INCOMPLETE (Intel XE#4010)
> * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
>
> * shard-dg2-set2: PASS -> INCOMPLETE (Intel XE#1033 / Intel XE#2692
> / Intel XE#4010)
> * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6:
>
> * shard-dg2-set2: PASS -> INCOMPLETE (Intel XE#1033 / Intel XE#3113
> / Intel XE#4010)
> * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#2652 / Intel XE#787) +3 other
> tests skip
> * igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#2887) +1 other test skip
> * igt@kms_cdclk@mode-transition@pipe-d-dp-4:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#314) +3 other tests skip
> * igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1152) +3 other tests
> skip
> * igt@kms_chamelium_color@ctm-red-to-blue:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#306)
> * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#373) +7 other tests skip
> * igt@kms_chamelium_frames@dp-crc-single:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#2252) +2 other tests skip
> * igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#373) +4 other tests skip
> * igt@kms_content_protection@atomic-dpms:
>
> * shard-dg2-set2: NOTRUN -> FAIL (Intel XE#1178) +2 other tests
> fail
> * igt@kms_content_protection@dp-mst-type-0:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#307)
> * igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
>
> * shard-bmg: NOTRUN -> FAIL (Intel XE#1178)
> * igt@kms_cursor_crc@cursor-onscreen-512x170:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#2321) +1 other test skip
> * igt@kms_cursor_crc@cursor-random-32x10:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#1424) +2 other tests skip
> * igt@kms_cursor_crc@cursor-sliding-512x170:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#308)
> * igt@kms_cursor_crc@cursor-suspend:
>
> * shard-dg2-set2: NOTRUN -> ABORT (Intel XE#2625 / Intel XE#4083)
> +1 other test abort
> * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
>
> * shard-bmg: PASS -> SKIP (Intel XE#2291) +5 other tests skip
> * igt@kms_dither@fb-8bpc-vs-panel-6bpc:
>
> * shard-bmg: PASS -> SKIP (Intel XE#1340)
> * igt@kms_dp_linktrain_fallback@dp-fallback:
>
> * shard-bmg: PASS -> SKIP (Intel XE#3070)
> * igt@kms_dsc@dsc-with-bpc:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#2244)
> * igt@kms_fbcon_fbt@psr-suspend:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#776)
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#776)
> * igt@kms_feature_discovery@chamelium:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#701)
> * igt@kms_flip@2x-flip-vs-expired-vblank:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#1421) +2 other tests skip
> * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3:
>
> * shard-bmg: PASS -> FAIL (Intel XE#3321) +1 other test fail
> * igt@kms_flip@2x-plain-flip-fb-recreate:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#2316)
> * igt@kms_flip@2x-plain-flip-ts-check:
>
> * shard-bmg: PASS -> FAIL (Intel XE#2882) +1 other test fail
> * igt@kms_flip@2x-plain-flip-ts-check-interruptible:
>
> * shard-bmg: PASS -> SKIP (Intel XE#2316) +6 other tests skip
> * igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ab-hdmi-a6-dp4:
>
> * shard-dg2-set2: PASS -> DMESG-WARN (Intel XE#1033) +32 other
> tests dmesg-warn
> * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6:
>
> * shard-dg2-set2: PASS -> FAIL (Intel XE#301) +1 other test fail
> * igt@kms_flip@flip-vs-expired-vblank@c-dp4:
>
> * shard-dg2-set2: PASS -> FAIL (Intel XE#301 / Intel XE#3321)
> * igt@kms_flip@flip-vs-suspend-interruptible:
>
> * shard-bmg: NOTRUN -> DMESG-WARN (Intel XE#1033) +5 other tests
> dmesg-warn
> * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#1401 / Intel XE#1745)
> * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#1401)
> * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#2293 / Intel XE#2380)
> * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#2293) +1 other test skip
> * igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#2311) +5 other tests skip
> * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#651) +6 other tests skip
> * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#2312) +1 other test skip
> * igt@kms_frontbuffer_tracking@drrs-suspend:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#651) +29 other tests
> skip
> * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#4141) +5 other tests skip
> * igt@kms_frontbuffer_tracking@fbc-tiling-y:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#658) +1 other test skip
> * shard-lnl: NOTRUN -> SKIP (Intel XE#1469)
> * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-render:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#656) +13 other tests skip
> * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#2313) +8 other tests skip
> * igt@kms_frontbuffer_tracking@psr-slowdraw:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#653) +27 other tests
> skip
> * igt@kms_getfb@getfb-reject-ccs:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#605)
> * igt@kms_hdmi_inject@inject-audio:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#1470 / Intel XE#2853)
> * igt@kms_hdr@invalid-hdr:
>
> * shard-bmg: PASS -> SKIP (Intel XE#1503)
> * igt@kms_joiner@basic-force-big-joiner:
>
> * shard-bmg: PASS -> SKIP (Intel XE#3012)
> * igt@kms_joiner@basic-ultra-joiner:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2927)
> * igt@kms_plane_lowres@tiling-x@pipe-b-edp-1:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#599) +3 other tests skip
> * igt@kms_plane_scaling@2x-scaler-multi-pipe:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#309) +1 other test skip
> * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#2763) +11 other tests skip
> * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#2763) +7 other tests skip
> * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
>
> * shard-dg2-set2: PASS -> DMESG-WARN (Intel XE#1033 / Intel
> XE#2566)
> * igt@kms_pm_dc@dc5-psr:
>
> * shard-lnl: PASS -> FAIL (Intel XE#718)
> * igt@kms_pm_dc@deep-pkgc:
>
> * shard-lnl: NOTRUN -> FAIL (Intel XE#2029)
> * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#1489) +1 other test skip
> * igt@kms_psr2_sf@pr-cursor-plane-update-sf:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1489) +5 other tests
> skip
> * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#2893) +1 other test skip
> * igt@kms_psr2_su@page_flip-p010:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1122)
> * igt@kms_psr@fbc-pr-cursor-blt:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#2234 / Intel XE#2850) +4
> other tests skip
> * igt@kms_psr@fbc-psr-sprite-render:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2850 / Intel XE#929) +10
> other tests skip
> * igt@kms_psr@pr-dpms:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#1406) +1 other test skip
> * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2939)
> * igt@kms_rotation_crc@primary-rotation-270:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#3414 / Intel XE#3904) +1
> other test skip
> * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#3414) +2 other tests
> skip
> * igt@kms_sequence@get-idle:
>
> * shard-bmg: PASS -> DMESG-WARN (Intel XE#1033) +28 other tests
> dmesg-warn
> * igt@kms_setmode@invalid-clone-exclusive-crtc:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#1435)
> * igt@kms_vblank@wait-forked-busy:
>
> * shard-dg2-set2: NOTRUN -> DMESG-WARN (Intel XE#1033) +13 other
> tests dmesg-warn
> * igt@kms_vrr@cmrr:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2168)
> * igt@kms_vrr@flip-dpms:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#455) +8 other tests skip
> * igt@kms_writeback@writeback-invalid-parameters:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#756)
> * igt@kms_writeback@writeback-pixel-formats:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#756)
> * igt@testdisplay:
>
> * shard-dg2-set2: NOTRUN -> DMESG-WARN (Intel XE#2705)
> * igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-vram01-vram01:
>
> * shard-dg2-set2: PASS -> ABORT (Intel XE#2625) +2 other tests
> abort
> * igt@xe_compute_preempt@compute-preempt-many:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1280 / Intel XE#455) +1
> other test skip
> * igt@xe_copy_basic@mem-copy-linear-0xfffe:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1123)
> * igt@xe_eudebug@basic-read-event:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#2905) +3 other tests skip
> * igt@xe_eudebug_online@debugger-reopen:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2905) +6 other tests
> skip
> * igt@xe_eudebug_online@stopped-thread:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#2905) +2 other tests skip
> * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#2322) +3 other tests skip
> * igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#1392) +2 other tests skip
> * igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-invalidate:
>
> * shard-bmg: PASS -> INCOMPLETE (Intel XE#4115)
> * igt@xe_exec_fault_mode@once-bindexecqueue-imm:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#288) +21 other tests
> skip
> * igt@xe_gt_freq@freq_suspend:
>
> * shard-dg2-set2: PASS -> ABORT (Intel XE#1033 / Intel XE#2625)
> * igt@xe_live_ktest@xe_dma_buf:
>
> * shard-bmg: PASS -> SKIP (Intel XE#1192) +1 other test skip
> * igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit:
>
> * shard-dg2-set2: NOTRUN -> FAIL (Intel XE#1999) +2 other tests
> fail
> * igt@xe_media_fill@media-fill:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#560)
> * igt@xe_mmap@small-bar:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#512)
> * igt@xe_module_load@force-load:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#378)
> * igt@xe_module_load@load:
>
> * shard-bmg: (PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS,
> PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS,
> PASS, PASS, PASS, PASS) -> (PASS, PASS, PASS, PASS, PASS, PASS,
> PASS, SKIP, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS,
> PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS) (Intel
> XE#2457)
> * shard-dg2-set2: (PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS,
> PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS,
> PASS, PASS, PASS, PASS, PASS, PASS) -> (SKIP, PASS, PASS, PASS,
> PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS,
> PASS, PASS, PASS, PASS, PASS, PASS, PASS, PASS) (Intel XE#378)
> * igt@xe_oa@missing-sample-flags:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2541 / Intel XE#3573) +2
> other tests skip
> * igt@xe_pm@d3cold-mmap-vram:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2284 / Intel XE#366) +1
> other test skip
> * igt@xe_pm@s3-multiple-execs:
>
> * shard-bmg: PASS -> DMESG-WARN (Intel XE#1033 / Intel XE#569) +1
> other test dmesg-warn
> * shard-dg2-set2: NOTRUN -> DMESG-WARN (Intel XE#1033 / Intel
> XE#569)
> * igt@xe_pm@s3-vm-bind-prefetch:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#584)
> * igt@xe_pm@s4-mocs:
>
> * shard-lnl: PASS -> ABORT (Intel XE#1358 / Intel XE#1794)
> * igt@xe_pm@s4-vm-bind-unbind-all:
>
> * shard-lnl: PASS -> ABORT (Intel XE#1358 / Intel XE#1607 / Intel
> XE#1794)
> * igt@xe_query@multigpu-query-gt-list:
>
> * shard-bmg: NOTRUN -> SKIP (Intel XE#944)
> * igt@xe_query@multigpu-query-invalid-size:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#944)
> * igt@xe_query@multigpu-query-oa-units:
>
> * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#944)
> * igt@xe_sriov_flr@flr-vf1-clear:
>
> * shard-lnl: NOTRUN -> SKIP (Intel XE#3342)
>
> Possible fixes
>
> * igt@kms_async_flips@alternate-sync-async-flip:
>
> * shard-bmg: FAIL (Intel XE#827) -> PASS +1 other test pass
> * igt@kms_async_flips@async-flip-with-page-flip-events:
>
> * shard-bmg: INCOMPLETE -> PASS +1 other test pass
> * igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p:
>
> * shard-dg2-set2: SKIP (Intel XE#367) -> PASS +4 other tests pass
> * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
>
> * shard-bmg: SKIP (Intel XE#2314 / Intel XE#2894) -> PASS
> * igt@kms_color@ctm-blue-to-red:
>
> * shard-bmg: SKIP (Intel XE#3007) -> PASS +19 other tests pass
> * igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
>
> * shard-bmg: SKIP (Intel XE#2291) -> PASS +2 other tests pass
> * igt@kms_flip@2x-absolute-wf_vblank:
>
> * shard-bmg: SKIP (Intel XE#2316) -> PASS +1 other test pass
> * igt@kms_flip@flip-vs-expired-vblank@a-dp4:
>
> * shard-dg2-set2: FAIL (Intel XE#301 / Intel XE#3321) -> PASS
> * igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6:
>
> * shard-dg2-set2: FAIL (Intel XE#301) -> PASS +1 other test pass
> * igt@kms_flip@flip-vs-suspend:
>
> * shard-dg2-set2: DMESG-WARN (Intel XE#2955) -> PASS
> * igt@kms_flip@wf_vblank-ts-check-interruptible@a-edp1:
>
> * shard-lnl: FAIL (Intel XE#886) -> PASS +2 other tests pass
> * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-upscaling:
>
> * shard-bmg: SKIP (Intel XE#2136 / Intel XE#2231) -> PASS +1 other
> test pass
> * igt@kms_flip_tiling@flip-change-tiling:
>
> * shard-dg2-set2: INCOMPLETE (Intel XE#2049) -> PASS
> * igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-6-4-rc-ccs-cc-to-4-mc-ccs:
>
> * shard-dg2-set2: INCOMPLETE -> PASS
> * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff:
>
> * shard-dg2-set2: SKIP (Intel XE#2136 / Intel XE#2351) -> PASS +1
> other test pass
> * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
>
> * shard-dg2-set2: SKIP (Intel XE#2136) -> PASS +4 other tests pass
> * igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-wc:
>
> * shard-dg2-set2: DMESG-WARN (Intel XE#1033) -> PASS +51 other
> tests pass
> * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation:
>
> * shard-dg2-set2: SKIP (Intel XE#2423 / i915#2575) -> PASS +13
> other tests pass
> * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers:
>
> * shard-bmg: DMESG-WARN (Intel XE#1033) -> PASS +40 other tests
> pass
> * igt@kms_pm_rpm@modeset-non-lpsp:
>
> * shard-dg2-set2: SKIP (Intel XE#2446) -> PASS
> * shard-bmg: SKIP (Intel XE#2446) -> PASS
> * igt@xe_evict@evict-large-multi-vm:
>
> * shard-dg2-set2: DMESG-WARN (Intel XE#1033 / Intel XE#1473) ->
> PASS
> * igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap:
>
> * shard-dg2-set2: SKIP (Intel XE#1392) -> PASS +4 other tests pass
> * igt@xe_pm@s3-exec-after:
>
> * shard-bmg: DMESG-WARN (Intel XE#1033 / Intel XE#569) -> PASS
> * shard-dg2-set2: DMESG-WARN (Intel XE#1033 / Intel XE#569) -> PASS
> * igt@xe_pm_residency@cpg-basic:
>
> * shard-dg2-set2: ABORT (Intel XE#4046) -> PASS
> * igt@xe_spin_batch@spin-all:
>
> * shard-bmg: SKIP (Intel XE#1130) -> PASS +42 other tests pass
> * igt@xe_vm@large-binds-2147483648:
>
> * shard-dg2-set2: SKIP (Intel XE#1130) -> PASS +25 other tests pass
>
> Warnings
>
> * igt@kms_atomic_transition@plane-all-transition-fencing:
>
> * shard-bmg: SKIP (Intel XE#3007) -> DMESG-WARN (Intel XE#1033)
> * shard-dg2-set2: SKIP (Intel XE#2423 / i915#2575) -> DMESG-WARN
> (Intel XE#1033)
> * igt@kms_big_fb@4-tiled-64bpp-rotate-270:
>
> * shard-bmg: SKIP (Intel XE#2136 / Intel XE#2231) -> SKIP (Intel
> XE#2327) +1 other test skip
> * shard-dg2-set2: SKIP (Intel XE#2136 / Intel XE#2351) -> SKIP
> (Intel XE#316)
> * igt@kms_big_fb@y-tiled-64bpp-rotate-270:
>
> * shard-bmg: SKIP (Intel XE#2136 / Intel XE#2231) -> SKIP (Intel
> XE#1124) +2 other tests skip
> * shard-dg2-set2: SKIP (Intel XE#2136 / Intel XE#2351) -> SKIP
> (Intel XE#1124)
> * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
>
> * shard-bmg: SKIP (Intel XE#3007) -> SKIP (Intel XE#2314 / Intel
> XE#2894)
> * igt@kms_bw@linear-tiling-1-displays-2560x1440p:
>
> * shard-bmg: SKIP (Intel XE#3007) -> SKIP (Intel XE#367)
> * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs:
>
> * shard-bmg: SKIP (Intel XE#2136 / Intel XE#2231) -> SKIP (Intel
> XE#2887) +3 other tests skip
> * shard-dg2-set2: SKIP (Intel XE#2136) -> SKIP (Intel XE#455 /
> Intel XE#787)
> * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs:
>
> * shard-dg2-set2: SKIP (Intel XE#2136 / Intel XE#2351) -> SKIP
> (Intel XE#455 / Intel XE#787) +1 other test skip
> * igt@kms_cdclk@plane-scaling:
>
> * shard-bmg: SKIP (Intel XE#2136 / Intel XE#2231) -> SKIP (Intel
> XE#2724)
> * igt@kms_chamelium_edid@dp-edid-stress-resolution-4k:
>
> * shard-bmg: SKIP (Intel XE#3007) -> SKIP (Intel XE#2252) +1 other
> test skip
> * igt@kms_chamelium_hpd@vga-hpd:
>
> * shard-dg2-set2: SKIP (Intel XE#2423 / i915#2575) -> SKIP (Intel
> XE#373) +1 other test skip
> * igt@kms_content_protection@atomic-dpms:
>
> * shard-bmg: INCOMPLETE -> SKIP (Intel XE#2341)
> * igt@kms_content_protection@legacy:
>
> * shard-bmg: DMESG-FAIL (Intel XE#877) -> FAIL (Intel XE#1178) +1
> other test fail
> * igt@kms_content_protection@lic-type-0:
>
> * shard-bmg: SKIP (Intel XE#2341) -> FAIL (Intel XE#1178)
> * igt@kms_content_protection@uevent:
>
> * shard-dg2-set2: FAIL (Intel XE#1188) -> DMESG-FAIL (Intel
> XE#1033) +1 other test dmesg-fail
> * igt@kms_cursor_crc@cursor-offscreen-max-size:
>
> * shard-dg2-set2: SKIP (Intel XE#2423 / i915#2575) -> SKIP (Intel
> XE#455)
> * igt@kms_cursor_crc@cursor-sliding-256x85:
>
> * shard-bmg: SKIP (Intel XE#3007) -> SKIP (Intel XE#2320) +2 other
> tests skip
> * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
>
> * shard-bmg: DMESG-WARN (Intel XE#1033) -> SKIP (Intel XE#2291)
> * igt@kms_feature_discovery@psr1:
>
> * shard-bmg: SKIP (Intel XE#3007) -> SKIP (Intel XE#2374)
> * shard-dg2-set2: SKIP (Intel XE#2423 / i915#2575) -> SKIP (Intel
> XE#1135)
> * igt@kms_flip@2x-flip-vs-suspend-interruptible:
>
> * shard-dg2-set2: DMESG-WARN (Intel XE#1033) -> DMESG-WARN (Intel
> XE#2955)
> * igt@kms_flip@flip-vs-expired-vblank:
>
> * shard-dg2-set2: FAIL (Intel XE#301) -> DMESG-FAIL (Intel XE#1033)
> * igt@kms_flip@flip-vs-expired-vblank@d-dp4:
>
> * shard-dg2-set2: FAIL (Intel XE#301 / Intel XE#3321) -> DMESG-WARN
> (Intel XE#1033)
> * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
>
> * shard-dg2-set2: SKIP (Intel XE#2136) -> SKIP (Intel XE#455)
> * shard-bmg: SKIP (Intel XE#2136 / Intel XE#2231) -> SKIP (Intel
> XE#2293 / Intel XE#2380)
> * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen:
>
> * shard-bmg: SKIP (Intel XE#2136 / Intel XE#2231) -> SKIP (Intel
> XE#2311) +6 other tests skip
> * shard-dg2-set2: SKIP (Intel XE#2136) -> SKIP (Intel XE#651) +2
> other tests skip
> * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt:
>
> * shard-bmg: SKIP (Intel XE#2312) -> SKIP (Intel XE#2311) +9 other
> tests skip
> * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
>
> * shard-bmg: SKIP (Intel XE#2311) -> SKIP (Intel XE#2312) +15 other
> tests skip
> * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
>
> * shard-bmg: SKIP (Intel XE#2312) -> SKIP (Intel XE#4141) +3 other
> tests skip
> * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
>
> * shard-bmg: SKIP (Intel XE#2136 / Intel XE#2231) -> SKIP (Intel
> XE#4141) +1 other test skip
> * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
>
> * shard-bmg: SKIP (Intel XE#4141) -> SKIP (Intel XE#2312) +4 other
> tests skip
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt:
>
> * shard-bmg: SKIP (Intel XE#2313) -> SKIP (Intel XE#2312) +17 other
> tests skip
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
>
> * shard-bmg: SKIP (Intel XE#2312) -> SKIP (Intel XE#2313) +6 other
> tests skip
> * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
>
> * shard-bmg: SKIP (Intel XE#2136 / Intel XE#2231) -> SKIP (Intel
> XE#2313) +6 other tests skip
> * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt:
>
> * shard-dg2-set2: SKIP (Intel XE#2136) -> SKIP (Intel XE#653) +3
> other tests skip
> * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
>
> * shard-bmg: SKIP (Intel XE#3007) -> SKIP (Intel XE#2763) +1 other
> test skip
> * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
>
> * shard-dg2-set2: SKIP (Intel XE#2136) -> SKIP (Intel XE#1489) +1
> other test skip
> * igt@kms_psr2_sf@psr2-cursor-plane-update-sf:
>
> * shard-bmg: SKIP (Intel XE#2136 / Intel XE#2231) -> SKIP (Intel
> XE#1489) +2 other tests skip
> * igt@kms_psr@fbc-pr-sprite-blt:
>
> * shard-bmg: SKIP (Intel XE#2136 / Intel XE#2231) -> SKIP (Intel
> XE#2234 / Intel XE#2850) +1 other test skip
> * igt@kms_psr@psr2-sprite-plane-move:
>
> * shard-dg2-set2: SKIP (Intel XE#2136) -> SKIP (Intel XE#2850 /
> Intel XE#929) +2 other tests skip
> * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
>
> * shard-bmg: SKIP (Intel XE#3007) -> SKIP (Intel XE#2330)
> * igt@kms_tiled_display@basic-test-pattern:
>
> * shard-bmg: SKIP (Intel XE#2426) -> FAIL (Intel XE#1729)
> * igt@xe_eudebug_online@single-step-one:
>
> * shard-bmg: SKIP (Intel XE#1130) -> SKIP (Intel XE#2905) +3 other
> tests skip
> * shard-dg2-set2: SKIP (Intel XE#1130) -> SKIP (Intel XE#2905) +1
> other test skip
> * igt@xe_exec_basic@multigpu-no-exec-null:
>
> * shard-bmg: SKIP (Intel XE#1130) -> SKIP (Intel XE#2322) +1 other
> test skip
> * igt@xe_exec_fault_mode@once-userptr-invalidate-race:
>
> * shard-dg2-set2: SKIP (Intel XE#1130) -> SKIP (Intel XE#288) +3
> other tests skip
> * igt@xe_pm@s3-basic-exec:
>
> * shard-dg2-set2: ABORT (Intel XE#1033 / Intel XE#1358) ->
> DMESG-WARN (Intel XE#1033 / Intel XE#569)
> * igt@xe_pm@s3-vm-bind-userptr:
>
> * shard-dg2-set2: ABORT (Intel XE#1358 / Intel XE#1794) ->
> DMESG-WARN (Intel XE#1033 / Intel XE#569)
>
> Build changes
>
> * IGT: IGT_8207 -> IGTPW_12487
> * Linux: xe-2534-db7cf8d52a41001ea2780cf834fed3dc490343d2 ->
> xe-2536-33906a7032dfca356fd7309e6abbdf5a7ea97db4
>
> IGTPW_12487: 34ada825e9efa46c9deef07a2117005a1408e090 @
> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> IGT_8207: 9f36f9f9e8825a67b762630c2b31628ddcda5c10 @
> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> xe-2534-db7cf8d52a41001ea2780cf834fed3dc490343d2:
> db7cf8d52a41001ea2780cf834fed3dc490343d2
> xe-2536-33906a7032dfca356fd7309e6abbdf5a7ea97db4:
> 33906a7032dfca356fd7309e6abbdf5a7ea97db4
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: ✗ i915.CI.Full: failure for Drop device scan cache logic (rev2)
2025-01-24 3:29 ` ✗ i915.CI.Full: " Patchwork
@ 2025-01-27 4:59 ` Zbigniew Kempczyński
0 siblings, 0 replies; 18+ messages in thread
From: Zbigniew Kempczyński @ 2025-01-27 4:59 UTC (permalink / raw)
To: igt-dev; +Cc: I915-ci-infra
On Fri, Jan 24, 2025 at 03:29:53AM +0000, Patchwork wrote:
> Patch Details
>
> Series: Drop device scan cache logic (rev2)
> URL: https://patchwork.freedesktop.org/series/143880/
> State: failure
> Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/index.html
>
> CI Bug Log - changes from CI_DRM_16005_full -> IGTPW_12487_full
>
> Summary
>
> FAILURE
>
> Serious unknown changes coming with IGTPW_12487_full absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_12487_full, please notify your bug team
> (I915-ci-infra@lists.freedesktop.org) to allow them
> to document this new failure mode, which will reduce false positives in
> CI.
>
> External URL:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12487/index.html
>
> Participating hosts (11 -> 10)
>
> Missing (1): shard-glk-0
>
> Possible new issues
>
> Here are the unknown changes that may have been introduced in
> IGTPW_12487_full:
>
> IGT changes
>
> Possible regressions
>
> * igt@gem_eio@in-flight-contexts-1us:
>
> * shard-mtlp: PASS -> ABORT
> * igt@gem_workarounds@suspend-resume-context:
>
> * shard-dg1: NOTRUN -> ABORT
> * igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-1:
>
> * shard-tglu: PASS -> FAIL +3 other tests fail
> * igt@kms_cursor_crc@cursor-sliding-256x85:
>
> * shard-tglu: NOTRUN -> FAIL +1 other test fail
> * igt@kms_plane_cursor@viewport:
>
> * shard-mtlp: PASS -> DMESG-WARN
Series don't have any relation to these failures.
--
Zbigniew
>
> New tests
>
> New tests have been introduced between CI_DRM_16005_full and
> IGTPW_12487_full:
>
> New IGT tests (154)
>
> * igt@gem_exec_schedule@noreorder:
>
> * Statuses : 2 pass(s)
> * Exec time: [0.34, 0.41] s
> * igt@gem_exec_schedule@noreorder-corked:
>
> * Statuses : 6 pass(s) 1 skip(s)
> * Exec time: [0.0, 8.07] s
> * igt@gem_exec_schedule@noreorder-corked@bcs0:
>
> * Statuses : 5 pass(s)
> * Exec time: [1.10, 1.13] s
> * igt@gem_exec_schedule@noreorder-corked@rcs0:
>
> * Statuses : 6 pass(s)
> * Exec time: [1.11, 1.16] s
> * igt@gem_exec_schedule@noreorder-corked@vcs0:
>
> * Statuses : 6 pass(s)
> * Exec time: [1.11, 1.68] s
> * igt@gem_exec_schedule@noreorder-corked@vcs1:
>
> * Statuses : 4 pass(s)
> * Exec time: [1.13, 2.08] s
> * igt@gem_exec_schedule@noreorder-corked@vecs0:
>
> * Statuses : 6 pass(s)
> * Exec time: [1.10, 1.99] s
> * igt@gem_exec_schedule@noreorder-priority:
>
> * Statuses : 6 pass(s) 1 skip(s)
> * Exec time: [0.0, 8.33] s
> * igt@gem_exec_schedule@noreorder-priority@bcs0:
>
> * Statuses : 5 pass(s)
> * Exec time: [1.11, 1.14] s
> * igt@gem_exec_schedule@noreorder-priority@rcs0:
>
> * Statuses : 6 pass(s)
> * Exec time: [1.11, 1.19] s
> * igt@gem_exec_schedule@noreorder-priority@vcs0:
>
> * Statuses : 6 pass(s)
> * Exec time: [1.11, 2.01] s
> * igt@gem_exec_schedule@noreorder-priority@vcs1:
>
> * Statuses : 4 pass(s)
> * Exec time: [1.12, 1.99] s
> * igt@gem_exec_schedule@noreorder-priority@vecs0:
>
> * Statuses : 6 pass(s)
> * Exec time: [1.11, 1.99] s
> * igt@gem_exec_schedule@noreorder@bcs0:
>
> * Statuses : 2 pass(s)
> * Exec time: [0.07, 0.08] s
> * igt@gem_exec_schedule@noreorder@rcs0:
>
> * Statuses : 2 pass(s)
> * Exec time: [0.07] s
> * igt@gem_exec_schedule@noreorder@vcs0:
>
> * Statuses : 2 pass(s)
> * Exec time: [0.06, 0.09] s
> * igt@gem_exec_schedule@noreorder@vcs1:
>
> * Statuses : 2 pass(s)
> * Exec time: [0.05, 0.08] s
> * igt@gem_exec_schedule@noreorder@vecs0:
>
> * Statuses : 2 pass(s)
> * Exec time: [0.07, 0.08] s
> * igt@gem_exercise_blt@fast-copy:
>
> * Statuses : 4 pass(s)
> * Exec time: [0.08, 0.65] s
> * igt@gem_exercise_blt@fast-copy-emit:
>
> * Statuses : 5 pass(s) 1 skip(s)
> * Exec time: [0.0, 0.94] s
> * igt@gem_exercise_blt@fast-copy-emit@linear-lmem0-lmem0-emit:
>
> * Statuses : 2 pass(s)
> * Exec time: [0.06, 0.09] s
> * igt@gem_exercise_blt@fast-copy-emit@linear-lmem0-smem-emit:
>
> * Statuses : 2 pass(s)
> * Exec time: [0.06, 0.09] s
> * igt@gem_exercise_blt@fast-copy-emit@linear-smem-lmem0-emit:
>
> * Statuses : 2 pass(s)
> * Exec time: [0.01] s
> * igt@gem_exercise_blt@fast-copy-emit@linear-smem-smem-emit:
>
> * Statuses : 5 pass(s)
> * Exec time: [0.02, 0.05] s
> * igt@gem_exercise_blt@fast-copy-emit@tile4-lmem0-lmem0-emit:
>
> * Statuses : 2 pass(s)
> * Exec time: [0.06, 0.10] s
> * igt@gem_exercise_blt@fast-copy-emit@tile4-lmem0-smem-emit:
>
> * Statuses : 2 pass(s)
> * Exec time: [0.06, 0.10] s
> * igt@gem_exercise_blt@fast-copy-emit@tile4-smem-lmem0-emit:
>
> * Statuses : 2 pass(s)
> * Exec time: [0.01] s
> * igt@gem_exercise_blt@fast-copy-emit@tile4-smem-smem-emit:
>
> * Statuses : 4 pass(s)
> * Exec time: [0.01, 0.02] s
> * igt@gem_exercise_blt@fast-copy-emit@tile64-lmem0-lmem0-emit:
>
> * Statuses : 2 pass(s)
> * Exec time: [0.06, 0.11] s
> * igt@gem_exercise_blt@fast-copy-emit@tile64-lmem0-smem-emit:
>
> * Statuses : 2 pass(s)
> * Exec time: [0.06, 0.10] s
> * igt@gem_exercise_blt@fast-copy-emit@tile64-smem-lmem0-emit:
>
> * Statuses : 2 pass(s)
> * Exec time: [0.01] s
> * igt@gem_exercise_blt@fast-copy-emit@tile64-smem-smem-emit:
>
> * Statuses : 5 pass(s)
> * Exec time: [0.01, 0.04] s
> * igt@gem_exercise_blt@fast-copy-emit@yfmajor-smem-smem-emit:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.04] s
> * igt@gem_exercise_blt@fast-copy-emit@ymajor-lmem0-lmem0-emit:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.06] s
> * igt@gem_exercise_blt@fast-copy-emit@ymajor-lmem0-smem-emit:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.06] s
> * igt@gem_exercise_blt@fast-copy-emit@ymajor-smem-lmem0-emit:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.01] s
> * igt@gem_exercise_blt@fast-copy-emit@ymajor-smem-smem-emit:
>
> * Statuses : 3 pass(s)
> * Exec time: [0.01, 0.04] s
> * igt@gem_exercise_blt@fast-copy@linear-lmem0-lmem0:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.06] s
> * igt@gem_exercise_blt@fast-copy@linear-lmem0-smem:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.06] s
> * igt@gem_exercise_blt@fast-copy@linear-smem-lmem0:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.02] s
> * igt@gem_exercise_blt@fast-copy@linear-smem-smem:
>
> * Statuses : 4 pass(s)
> * Exec time: [0.02, 0.05] s
> * igt@gem_exercise_blt@fast-copy@tile4-lmem0-lmem0:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.06] s
> * igt@gem_exercise_blt@fast-copy@tile4-lmem0-smem:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.06] s
> * igt@gem_exercise_blt@fast-copy@tile4-smem-lmem0:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.01] s
> * igt@gem_exercise_blt@fast-copy@tile4-smem-smem:
>
> * Statuses : 3 pass(s)
> * Exec time: [0.02] s
> * igt@gem_exercise_blt@fast-copy@tile64-lmem0-lmem0:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.06] s
> * igt@gem_exercise_blt@fast-copy@tile64-lmem0-smem:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.06] s
> * igt@gem_exercise_blt@fast-copy@tile64-smem-lmem0:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.01] s
> * igt@gem_exercise_blt@fast-copy@tile64-smem-smem:
>
> * Statuses : 4 pass(s)
> * Exec time: [0.02, 0.04] s
> * igt@gem_exercise_blt@fast-copy@yfmajor-smem-smem:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.06] s
> * igt@gem_exercise_blt@fast-copy@ymajor-lmem0-lmem0:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.06] s
> * igt@gem_exercise_blt@fast-copy@ymajor-lmem0-smem:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.06] s
> * igt@gem_exercise_blt@fast-copy@ymajor-smem-lmem0:
>
> * Statuses : 1 pass(s)
> * Exec time: [0.01] s
> * igt@gem_exercise_blt@fast-copy@ymajor-smem-smem:
>
> * Statuses : 3 pass(s)
> * Exec time: [0.02, 0.07] s
> * igt@gem_spin_batch@engines:
>
> * Statuses : 6 pass(s)
> * Exec time: [9.94, 22.68] s
> * igt@gem_spin_batch@engines@bcs0:
>
> * Statuses : 6 pass(s)
> * Exec time: [3.23, 3.32] s
> * igt@gem_spin_batch@engines@rcs0:
>
> * Statuses : 6 pass(s)
> * Exec time: [3.23, 3.32] s
> * igt@gem_spin_batch@engines@vcs0:
>
> * Statuses : 6 pass(s)
> * Exec time: [3.23, 3.33] s
> * igt@gem_spin_batch@engines@vcs1:
>
> * Statuses : 4 pass(s)
> * Exec time: [3.23, 3.32] s
> * igt@gem_spin_batch@engines@vecs0:
>
> * Statuses : 5 pass(s)
> * Exec time: [3.23, 3.33] s
> * igt@gem_spin_batch@legacy:
>
> * Statuses : 4 pass(s)
> * Exec time: [16.56, 23.24] s
> * igt@gem_spin_batch@legacy-resubmit:
>
> * Statuses : 3 pass(s)
> * Exec time: [0.01, 0.04] s
> * igt@gem_spin_batch@legacy-resubmit-new:
>
> * Statuses : 7 pass(s)
> * Exec time: [0.01, 0.06] s
> * igt@gem_spin_batch@legacy-resubmit-new@blt:
>
> * Statuses : 7 pass(s)
> * Exec time: [0.00, 0.01] s
> * igt@gem_spin_batch@legacy-resubmit-new@bsd:
>
> * Statuses : 7 pass(s)
> * Exec time: [0.00, 0.01] s
> * igt@gem_spin_batch@legacy-resubmit-new@bsd1:
>
> * Statuses : 7 pass(s)
> * Exec time: [0.00, 0.01] s
> * igt@gem_spin_batch@legacy-resubmit-new@bsd2:
>
> * Statuses : 4 pass(s)
> * Exec time: [0.00] s
> * igt@gem_spin_batch@legacy-resubmit-new@default:
>
> * Statuses : 7 pass(s)
> * Exec time: [0.00, 0.03] s
> * igt@gem_spin_batch@legacy-resubmit-new@render:
>
> * Statuses : 7 pass(s)
> * Exec time: [0.00, 0.01] s
> * igt@gem_spin_batch@legacy-resubmit-new@vebox:
>
> * Statuses : 6 pass(s)
> * Exec time: [0.00, 0.01] s
> * igt@gem_spin_batch@legacy-resubmit@blt:
>
> * Statuses : 3 pass(s)
> * Exec time: [0.00] s
> * igt@gem_spin_batch@legacy-resubmit@bsd:
>
> * Statuses : 3 pass(s)
> * Exec time: [0.00] s
> * igt@gem_spin_batch@legacy-resubmit@bsd1:
>
> * Statuses : 3 pass(s)
> * Exec time: [0.00] s
> * igt@gem_spin_batch@legacy-resubmit@bsd2:
>
> * Statuses : 3 pass(s)
> * Exec time: [0.00] s
> * igt@gem_spin_batch@legacy-resubmit@default:
>
> * Statuses : 3 pass(s)
> * Exec time: [0.00, 0.03] s
> * igt@gem_spin_batch@legacy-resubmit@render:
>
> * Statuses : 3 pass(s)
> * Exec time: [0.00] s
> * igt@gem_spin_batch@legacy-resubmit@vebox:
>
> * Statuses : 3 pass(s)
> * Exec time: [0.00] s
> * igt@gem_spin_batch@legacy@blt:
>
> * Statuses : 4 pass(s)
> * Exec time: [3.23, 3.32] s
> * igt@gem_spin_batch@legacy@bsd:
>
> * Statuses : 4 pass(s)
> * Exec time: [3.23, 3.32] s
> * igt@gem_spin_batch@legacy@bsd1:
>
> * Statuses : 4 pass(s)
> * Exec time: [3.23, 3.32] s
> * igt@gem_spin_batch@legacy@bsd2:
>
> * Statuses : 3 pass(s)
> * Exec time: [3.23, 3.32] s
> * igt@gem_spin_batch@legacy@default:
>
> * Statuses : 4 pass(s)
> * Exec time: [3.23, 3.32] s
> * igt@gem_spin_batch@legacy@render:
>
> * Statuses : 4 pass(s)
> * Exec time: [3.23, 3.32] s
> * igt@gem_spin_batch@legacy@vebox:
>
> * Statuses : 3 pass(s)
> * Exec time: [3.23, 3.32] s
> * igt@gem_spin_batch@resubmit:
>
> * Statuses : 6 pass(s)
> * Exec time: [0.01, 0.04] s
> * igt@gem_spin_batch@resubmit-all:
>
> * Statuses : 7 pass(s)
> * Exec time: [0.01, 0.05] s
> * igt@gem_spin_batch@resubmit-all@bcs0:
>
> * Statuses : 7 pass(s)
> * Exec time: [0.00, 0.02] s
> * igt@gem_spin_batch@resubmit-all@rcs0:
>
> * Statuses : 7 pass(s)
> * Exec time: [0.00, 0.04] s
> * igt@gem_spin_batch@resubmit-all@vcs0:
>
> * Statuses : 7 pass(s)
> * Exec time: [0.00, 0.01] s
> * igt@gem_spin_batch@resubmit-all@vcs1:
>
> * Statuses : 4 pass(s)
> * Exec time: [0.00] s
> * igt@gem_spin_batch@resubmit-all@vecs0:
>
> * Statuses : 6 pass(s)
> * Exec time: [0.00, 0.01] s
> * igt@gem_spin_batch@resubmit-new:
>
> * Statuses : 5 pass(s)
> * Exec time: [0.01, 0.06] s
> * igt@gem_spin_batch@resubmit-new-all:
>
> * Statuses : 7 pass(s)
> * Exec time: [0.01, 0.08] s
> * igt@gem_spin_batch@resubmit-new-all@bcs0:
>
> * Statuses : 7 pass(s)
> * Exec time: [0.00, 0.01] s
> * igt@gem_spin_batch@resubmit-new-all@rcs0:
>
> * Statuses : 7 pass(s)
> * Exec time: [0.00, 0.03] s
> * igt@gem_spin_batch@resubmit-new-all@vcs0:
>
> * Statuses : 7 pass(s)
> * Exec time: [0.00, 0.01] s
> * igt@gem_spin_batch@resubmit-new-all@vcs1:
>
> * Statuses : 4 pass(s)
> * Exec time: [0.00, 0.01] s
> * igt@gem_spin_batch@resubmit-new-all@vecs0:
>
> * Statuses : 6 pass(s)
> * Exec time: [0.00, 0.01] s
> * igt@gem_spin_batch@resubmit-new@bcs0:
>
> * Statuses : 5 pass(s)
> * Exec time: [0.00] s
> * igt@gem_spin_batch@resubmit-new@rcs0:
>
> * Statuses : 5 pass(s)
> * Exec time: [0.00, 0.03] s
> * igt@gem_spin_batch@resubmit-new@vcs0:
>
> * Statuses : 5 pass(s)
> * Exec time: [0.00, 0.01] s
> * igt@gem_spin_batch@resubmit-new@vcs1:
>
> * Statuses : 3 pass(s)
> * Exec time: [0.00] s
> * igt@gem_spin_batch@resubmit-new@vecs0:
>
> * Statuses : 4 pass(s)
> * Exec time: [0.00] s
> * igt@gem_spin_batch@resubmit@bcs0:
>
> * Statuses : 6 pass(s)
> * Exec time: [0.00] s
> * igt@gem_spin_batch@resubmit@rcs0:
>
> * Statuses : 6 pass(s)
> * Exec time: [0.00, 0.03] s
> * igt@gem_spin_batch@resubmit@vcs0:
>
> * Statuses : 6 pass(s)
> * Exec time: [0.00] s
> * igt@gem_spin_batch@resubmit@vcs1:
>
> * Statuses : 4 pass(s)
> * Exec time: [0.00] s
> * igt@gem_spin_batch@resubmit@vecs0:
>
> * Statuses : 5 pass(s)
> * Exec time: [0.00] s
> * igt@gem_spin_batch@spin-all:
>
> * Statuses : 6 pass(s)
> * Exec time: [0.00, 0.04] s
> * igt@gem_spin_batch@spin-all-new:
>
> * Statuses : 6 pass(s)
> * Exec time: [0.00, 0.05] s
> * igt@gem_spin_batch@spin-each:
>
> * Statuses : 6 pass(s)
> * Exec time: [3.34, 3.40] s
> * igt@gem_spin_batch@user-each:
>
> * Statuses : 7 pass(s)
> * Exec time: [3.27, 3.42] s
> * igt@i915_hangman@detector:
>
> * Statuses : 3 pass(s)
> * Exec time: [48.89, 71.71] s
> * igt@i915_hangman@detector@bcs0:
>
> * Statuses : 3 pass(s)
> * Exec time: [9.95, 12.03] s
> * igt@i915_hangman@detector@rcs0:
>
> * Statuses : 3 pass(s)
> * Exec time: [8.88, 11.74] s
> * igt@i915_hangman@detector@vcs0:
>
> * Statuses : 3 pass(s)
> * Exec time: [10.04, 11.97] s
> * igt@i915_hangman@detector@vcs1:
>
> * Statuses : 3 pass(s)
> * Exec time: [9.97, 11.96] s
> * igt@i915_hangman@detector@vecs0:
>
> * Statuses : 3 pass(s)
> * Exec time: [9.98, 12.03] s
> * igt@i915_hangman@engine-engine-error:
>
> * Statuses : 6 pass(s) 1 skip(s)
> * Exec time: [0.0, 11.11] s
> * igt@i915_hangman@engine-engine-error@bcs0:
>
> * Statuses : 5 pass(s) 1 skip(s)
> * Exec time: [0.00, 1.98] s
> * igt@i915_hangman@engine-engine-error@rcs0:
>
> * Statuses : 6 pass(s)
> * Exec time: [0.07, 1.06] s
> * igt@i915_hangman@engine-engine-error@vcs0:
>
> * Statuses : 6 pass(s)
> * Exec time: [0.07, 2.05] s
> * igt@i915_hangman@engine-engine-error@vcs1:
>
> * Statuses : 4 pass(s)
> * Exec time: [0.08, 1.98] s
> * igt@i915_hangman@engine-engine-error@vecs0:
>
> * Statuses : 6 pass(s)
> * Exec time: [0.07, 1.98] s
> * igt@i915_hangman@engine-engine-hang:
>
> * Statuses : 5 pass(s) 1 skip(s)
> * Exec time: [0.0, 11.51] s
> * igt@i915_hangman@engine-engine-hang@bcs0:
>
> * Statuses : 5 pass(s)
> * Exec time: [0.58, 1.98] s
> * igt@i915_hangman@engine-engine-hang@rcs0:
>
> * Statuses : 5 pass(s)
> * Exec time: [0.59, 1.53] s
> * igt@i915_hangman@engine-engine-hang@vcs0:
>
> * Statuses : 5 pass(s)
> * Exec time: [0.57, 1.98] s
> * igt@i915_hangman@engine-engine-hang@vcs1:
>
> * Statuses : 4 pass(s)
> * Exec time: [0.58, 1.98] s
> * igt@i915_hangman@engine-engine-hang@vecs0:
>
> * Statuses : 5 pass(s)
> * Exec time: [0.57, 2.05] s
> * igt@i915_hangman@engine-error-state-capture:
>
> * Statuses : 6 pass(s)
> * Exec time: [16.20, 32.73] s
> * igt@i915_hangman@engine-error-state-capture@bcs0:
>
> * Statuses : 6 pass(s)
> * Exec time: [3.96, 5.95] s
> * igt@i915_hangman@engine-error-state-capture@rcs0:
>
> * Statuses : 6 pass(s)
> * Exec time: [1.80, 4.58] s
> * igt@i915_hangman@engine-error-state-capture@vcs0:
>
> * Statuses : 6 pass(s)
> * Exec time: [3.03, 5.05] s
> * igt@i915_hangman@engine-error-state-capture@vcs1:
>
> * Statuses : 4 pass(s)
> * Exec time: [3.97, 6.02] s
> * igt@i915_hangman@engine-error-state-capture@vecs0:
>
> * Statuses : 6 pass(s)
> * Exec time: [3.95, 5.95] s
> * igt@i915_hangman@gt-engine-error:
>
> * Statuses : 6 pass(s) 1 skip(s)
> * Exec time: [0.0, 11.36] s
> * igt@i915_hangman@gt-engine-error@bcs0:
>
> * Statuses : 5 pass(s) 1 skip(s)
> * Exec time: [0.00, 2.08] s
> * igt@i915_hangman@gt-engine-error@rcs0:
>
> * Statuses : 6 pass(s)
> * Exec time: [0.06, 1.20] s
> * igt@i915_hangman@gt-engine-error@vcs0:
>
> * Statuses : 6 pass(s)
> * Exec time: [0.07, 2.01] s
> * igt@i915_hangman@gt-engine-error@vcs1:
>
> * Statuses : 4 pass(s)
> * Exec time: [0.07, 2.00] s
> * igt@i915_hangman@gt-engine-error@vecs0:
>
> * Statuses : 6 pass(s)
> * Exec time: [0.08, 2.00] s
> * igt@i915_hangman@gt-engine-hang:
>
> * Statuses : 5 pass(s) 1 skip(s)
> * Exec time: [0.0, 5.23] s
> * igt@i915_hangman@gt-engine-hang@bcs0:
>
> * Statuses : 5 pass(s)
> * Exec time: [0.57, 0.72] s
> * igt@i915_hangman@gt-engine-hang@rcs0:
>
> * Statuses : 5 pass(s)
> * Exec time: [0.58, 0.82] s
> * igt@i915_hangman@gt-engine-hang@vcs0:
>
> * Statuses : 5 pass(s)
> * Exec time: [0.57, 0.74] s
> * igt@i915_hangman@gt-engine-hang@vcs1:
>
> * Statuses : 3 pass(s)
> * Exec time: [0.59, 0.73] s
> * igt@i915_hangman@gt-engine-hang@vecs0:
>
> * Statuses : 5 pass(s)
> * Exec time: [0.57, 0.71] s
> * igt@i915_hangman@gt-error-state-capture:
>
> * Statuses : 5 pass(s)
> * Exec time: [11.68, 68.53] s
> * igt@i915_hangman@gt-error-state-capture@bcs0:
>
> * Statuses : 5 pass(s)
> * Exec time: [3.97, 10.01] s
> * igt@i915_hangman@gt-error-state-capture@rcs0:
>
> * Statuses : 5 pass(s)
> * Exec time: [3.69, 9.91] s
> * igt@i915_hangman@gt-error-state-capture@vcs0:
>
> * Statuses : 5 pass(s)
> * Exec time: [4.02, 10.01] s
> * igt@i915_hangman@gt-error-state-capture@vcs1:
>
> * Statuses : 3 pass(s)
> * Exec time: [9.97, 10.04] s
> * igt@i915_hangman@gt-error-state-capture@vecs0:
>
> * Statuses : 4 pass(s)
> * Exec time: [9.04, 9.99] s
>
> Known issues
>
> Here are the changes found in IGTPW_12487_full that come from known
> issues:
>
> IGT changes
>
> Issues hit
>
> * igt@api_intel_bb@crc32:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#6230])
> * igt@api_intel_bb@object-reloc-purge-cache:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#8411])
> * igt@drm_fdinfo@busy-hang@bcs0:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#8414]) +9 other tests skip
> * igt@drm_fdinfo@busy-hang@rcs0:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#8414]) +7 other tests skip
> * igt@drm_fdinfo@most-busy-idle-check-all@bcs0:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#8414]) +13 other tests skip
> * igt@gem_basic@multigpu-create-close:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#7697])
> * igt@gem_busy@semaphore:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#3936])
> * igt@gem_ccs@block-copy-compressed:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#3555] / [i915#9323])
> * igt@gem_ccs@block-multicopy-inplace:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#3555] / [i915#9323]) +1 other
> test skip
> * igt@gem_ccs@ctrl-surf-copy:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#3555] / [i915#9323])
> * igt@gem_ccs@ctrl-surf-copy-new-ctx:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#9323])
> * igt@gem_ccs@large-ctrl-surf-copy:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#13008])
> * igt@gem_close_race@multigpu-basic-process:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#7697])
> * igt@gem_close_race@multigpu-basic-threads:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#7697])
> * igt@gem_create@create-ext-cpu-access-big:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#6335])
> * shard-rkl: NOTRUN -> SKIP ([i915#6335])
> * igt@gem_ctx_persistence@hang:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#8555])
> * shard-dg1: NOTRUN -> SKIP ([i915#8555])
> * igt@gem_ctx_persistence@smoketest:
>
> * shard-snb: NOTRUN -> SKIP ([i915#1099])
> * igt@gem_ctx_sseu@engines:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#280])
> * igt@gem_ctx_sseu@invalid-sseu:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#280])
> * igt@gem_eio@hibernate:
>
> * shard-dg1: NOTRUN -> ABORT ([i915#7975] / [i915#8213])
> * shard-dg2: NOTRUN -> ABORT ([i915#10030] / [i915#7975] /
> [i915#8213])
> * igt@gem_eio@kms:
>
> * shard-dg1: PASS -> FAIL ([i915#5784])
> * igt@gem_eio@unwedge-stress:
>
> * shard-mtlp: PASS -> ABORT ([i915#13193]) +1 other test abort
> * shard-dg1: PASS -> FAIL ([i915#12714] / [i915#5784])
> * igt@gem_exec_balancer@bonded-semaphore:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#4812])
> * igt@gem_exec_balancer@bonded-sync:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#4771]) +1 other test skip
> * shard-dg1: NOTRUN -> SKIP ([i915#4771])
> * shard-mtlp: NOTRUN -> SKIP ([i915#4771])
> * igt@gem_exec_balancer@parallel-balancer:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#4525]) +4 other tests skip
> * igt@gem_exec_balancer@parallel-dmabuf-import-out-fence:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#4525])
> * igt@gem_exec_balancer@parallel-keep-submit-fence:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#4525])
> * igt@gem_exec_capture@capture-invisible:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#6334]) +2 other tests skip
> * igt@gem_exec_capture@capture-invisible@smem0:
>
> * shard-glk: NOTRUN -> SKIP ([i915#6334]) +1 other test skip
> * igt@gem_exec_fence@syncobj-channel:
>
> * shard-glk: NOTRUN -> DMESG-WARN ([i915#118])
> * igt@gem_exec_flush@basic-batch-kernel-default-cmd:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#3539] / [i915#4852]) +4 other
> tests skip
> * igt@gem_exec_reloc@basic-cpu-read:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#3281]) +8 other tests skip
> * igt@gem_exec_reloc@basic-gtt-wc-noreloc:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#3281]) +10 other tests skip
> * igt@gem_exec_reloc@basic-range:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#3281]) +2 other tests skip
> * igt@gem_exec_reloc@basic-wc-read:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#3281]) +7 other tests skip
> * igt@gem_exec_schedule@preempt-queue-contexts:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#4812]) +1 other test skip
> * igt@gem_exec_schedule@preempt-queue-contexts-chain:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#4537] / [i915#4812])
> * igt@gem_exec_suspend@basic-s3@smem:
>
> * shard-glk: PASS -> INCOMPLETE ([i915#13196]) +1 other test
> incomplete
> * igt@gem_exec_suspend@basic-s4-devices:
>
> * shard-rkl: NOTRUN -> ABORT ([i915#7975] / [i915#8213]) +2 other
> tests abort
> * igt@gem_fence_thrash@bo-write-verify-none:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#4860]) +2 other tests skip
> * igt@gem_fence_thrash@bo-write-verify-x:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#4860]) +1 other test skip
> * igt@gem_lmem_evict@dontneed-evict-race:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#4613] / [i915#7582])
> * igt@gem_lmem_swapping@heavy-verify-random:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#4613]) +4 other tests skip
> * shard-mtlp: NOTRUN -> SKIP ([i915#4613])
> * igt@gem_lmem_swapping@heavy-verify-random-ccs:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#4613]) +2 other tests skip
> * igt@gem_lmem_swapping@random-engines:
>
> * shard-glk: NOTRUN -> SKIP ([i915#4613]) +6 other tests skip
> * igt@gem_lmem_swapping@verify-random-ccs:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#12193])
> * igt@gem_lmem_swapping@verify-random-ccs@lmem0:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#4565])
> * igt@gem_media_fill@media-fill:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#8289])
> * igt@gem_media_vme:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#284])
> * igt@gem_mmap_gtt@big-bo-tiledx:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#4077]) +6 other tests skip
> * igt@gem_mmap_gtt@coherency:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#4077]) +12 other tests skip
> * igt@gem_mmap_gtt@cpuset-medium-copy-odd:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#4077]) +3 other tests skip
> * igt@gem_mmap_wc@write:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#4083]) +2 other tests skip
> * igt@gem_mmap_wc@write-prefaulted:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#4083]) +6 other tests skip
> * igt@gem_mmap_wc@write-wc-read-gtt:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#4083]) +3 other tests skip
> * igt@gem_partial_pwrite_pread@reads:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#3282]) +3 other tests skip
> * igt@gem_pwrite@basic-exhaustion:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#3282]) +4 other tests skip
> * shard-dg1: NOTRUN -> SKIP ([i915#3282]) +6 other tests skip
> * shard-snb: NOTRUN -> WARN ([i915#2658])
> * igt@gem_pxp@display-protected-crc:
>
> * shard-rkl: NOTRUN -> TIMEOUT ([i915#12917] / [i915#12964]) +3
> other tests timeout
> * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#4270]) +2 other tests skip
> * shard-rkl: NOTRUN -> TIMEOUT ([i915#12964]) +1 other test timeout
> * shard-dg1: NOTRUN -> SKIP ([i915#4270]) +3 other tests skip
> * igt@gem_pxp@hw-rejects-pxp-buffer:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#13398])
> * shard-mtlp: NOTRUN -> SKIP ([i915#13398])
> * igt@gem_readwrite@new-obj:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#3282]) +4 other tests skip
> * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#8428]) +2 other tests skip
> * shard-dg2: NOTRUN -> SKIP ([i915#5190] / [i915#8428]) +4 other
> tests skip
> * igt@gem_set_tiling_vs_gtt:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#4079]) +1 other test skip
> * shard-mtlp: NOTRUN -> SKIP ([i915#4079])
> * shard-dg2: NOTRUN -> SKIP ([i915#4079])
> * igt@gem_tiled_swapping@non-threaded:
>
> * shard-tglu: PASS -> FAIL ([i915#13557])
> * igt@gem_userptr_blits@access-control:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#3297]) +1 other test skip
> * igt@gem_userptr_blits@create-destroy-unsync:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#3297]) +1 other test skip
> * shard-rkl: NOTRUN -> SKIP ([i915#3297])
> * igt@gem_userptr_blits@forbidden-operations:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#3282] / [i915#3297])
> * igt@gem_userptr_blits@map-fixed-invalidate:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#3297] / [i915#4880])
> * igt@gem_userptr_blits@readonly-unsync:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#3297]) +2 other tests skip
> * igt@gem_userptr_blits@relocations:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#3281] / [i915#3297])
> * shard-rkl: NOTRUN -> SKIP ([i915#3281] / [i915#3297])
> * igt@gem_userptr_blits@sd-probe:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#3297] / [i915#4958])
> * igt@gem_userptr_blits@unsync-overlap:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#3297])
> * igt@gen9_exec_parse@bb-oversize:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#2527]) +4 other tests skip
> * shard-dg1: NOTRUN -> SKIP ([i915#2527]) +1 other test skip
> * shard-mtlp: NOTRUN -> SKIP ([i915#2856]) +1 other test skip
> * igt@gen9_exec_parse@bb-secure:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#2527] / [i915#2856])
> * igt@gen9_exec_parse@bb-start-far:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#2856]) +2 other tests skip
> * igt@gen9_exec_parse@unaligned-jump:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#2527] / [i915#2856]) +3 other
> tests skip
> * igt@i915_fb_tiling:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#4881])
> * shard-dg1: NOTRUN -> SKIP ([i915#4881])
> * igt@i915_module_load@reload-with-fault-injection:
>
> * shard-snb: PASS -> ABORT ([i915#9820])
> * shard-dg1: NOTRUN -> ABORT ([i915#13493] / [i915#9820])
> * igt@i915_module_load@resize-bar:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#6412])
> * igt@i915_pm_freq_api@freq-reset:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#8399])
> * igt@i915_pm_freq_api@freq-suspend@gt0:
>
> * shard-dg2: PASS -> INCOMPLETE ([i915#12455]) +1 other test
> incomplete
> * igt@i915_pm_rc6_residency@rc6-accuracy:
>
> * shard-rkl: PASS -> FAIL ([i915#12942]) +1 other test fail
> * igt@i915_pm_rps@min-max-config-idle:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#11681] / [i915#6621])
> * shard-mtlp: NOTRUN -> SKIP ([i915#11681] / [i915#6621])
> * igt@i915_pm_rps@thresholds-park:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#11681])
> * igt@i915_pm_sseu@full-enable:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#4387])
> * igt@i915_query@hwconfig_table:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#6245])
> * igt@i915_query@query-topology-coherent-slice-mask:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#6188])
> * shard-dg2: NOTRUN -> SKIP ([i915#6188])
> * igt@i915_selftest@live@workarounds:
>
> * shard-mtlp: PASS -> DMESG-FAIL ([i915#12061]) +1 other test
> dmesg-fail
> * igt@i915_selftest@mock:
>
> * shard-glk: NOTRUN -> DMESG-WARN ([i915#1982] / [i915#9311])
> * igt@i915_selftest@mock@memory_region:
>
> * shard-glk: NOTRUN -> DMESG-WARN ([i915#9311])
> * igt@i915_suspend@basic-s3-without-i915:
>
> * shard-glk: NOTRUN -> INCOMPLETE ([i915#4817])
> * igt@i915_suspend@debugfs-reader:
>
> * shard-glk: PASS -> INCOMPLETE ([i915#4817])
> * igt@intel_hwmon@hwmon-write:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#7707])
> * shard-mtlp: NOTRUN -> SKIP ([i915#7707])
> * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#4212])
> * igt@kms_addfb_basic@framebuffer-vs-set-tiling:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#4212]) +1 other test skip
> * igt@kms_async_flips@async-flip-suspend-resume:
>
> * shard-glk: NOTRUN -> INCOMPLETE ([i915#12761] / [i915#1982]) +1
> other test incomplete
> * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-4-y-rc-ccs-cc:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#8709]) +7 other tests skip
> * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-4-rc-ccs-cc:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#8709]) +7 other tests skip
> * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-y-rc-ccs-cc:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#8709]) +3 other tests skip
> * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#8709]) +3 other tests skip
> * igt@kms_atomic_transition@modeset-transition-fencing:
>
> * shard-glk: PASS -> FAIL ([i915#12238])
> * igt@kms_atomic_transition@modeset-transition-fencing@2x-outputs:
>
> * shard-glk: PASS -> FAIL ([i915#11859])
> * igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
>
> * shard-tglu: PASS -> FAIL ([i915#11808]) +1 other test fail
> * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#1769] / [i915#3555])
> * shard-glk: NOTRUN -> SKIP ([i915#1769])
> * igt@kms_big_fb@4-tiled-16bpp-rotate-180:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#5286]) +1 other test skip
> * igt@kms_big_fb@4-tiled-32bpp-rotate-0:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#5286]) +6 other tests skip
> * igt@kms_big_fb@4-tiled-32bpp-rotate-270:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#5286]) +8 other tests skip
> * shard-mtlp: NOTRUN -> SKIP +9 other tests skip
> * igt@kms_big_fb@4-tiled-8bpp-rotate-180:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#4538] / [i915#5286]) +6 other
> tests skip
> * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#5286])
> * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
>
> * shard-mtlp: PASS -> FAIL ([i915#5138])
> * igt@kms_big_fb@linear-8bpp-rotate-270:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#3638]) +4 other tests skip
> * igt@kms_big_fb@y-tiled-32bpp-rotate-90:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#4538] / [i915#5190]) +7 other
> tests skip
> * igt@kms_big_fb@y-tiled-64bpp-rotate-90:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#3638]) +5 other tests skip
> * igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#4538]) +6 other tests skip
> * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#5190])
> * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#6095]) +177 other tests skip
> * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#10307] / [i915#10434] /
> [i915#6095]) +1 other test skip
> * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-edp-1:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#6095]) +49 other tests skip
> * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#12313])
> * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#12313])
> * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-1:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#6095]) +49 other tests skip
> * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#12313]) +2 other tests skip
> * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#6095]) +24 other tests skip
> * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#12805])
> * shard-tglu: NOTRUN -> SKIP ([i915#12805])
> * shard-mtlp: NOTRUN -> SKIP ([i915#12805])
> * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#6095]) +78 other tests skip
> * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-3:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#6095]) +21 other tests skip
> * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-2:
>
> * shard-glk: NOTRUN -> INCOMPLETE ([i915#12796])
> * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#12313]) +1 other test skip
> * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#10307] / [i915#6095]) +132 other
> tests skip
> * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#4423] / [i915#6095]) +1 other
> test skip
> * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#12313]) +1 other test skip
> * igt@kms_cdclk@mode-transition:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#3742])
> * igt@kms_cdclk@mode-transition-all-outputs:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#3742])
> * igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#4087]) +3 other tests skip
> * igt@kms_chamelium_edid@vga-edid-read:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#11151] / [i915#7828]) +2 other
> tests skip
> * igt@kms_chamelium_frames@hdmi-crc-fast:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#11151] / [i915#7828]) +6 other
> tests skip
> * igt@kms_chamelium_frames@hdmi-crc-single:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#11151] / [i915#7828]) +2
> other tests skip
> * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#11151] / [i915#7828]) +11 other
> tests skip
> * igt@kms_chamelium_hpd@vga-hpd-fast:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#11151] / [i915#7828]) +8 other
> tests skip
> * shard-dg1: NOTRUN -> SKIP ([i915#11151] / [i915#7828]) +10 other
> tests skip
> * igt@kms_content_protection@atomic@pipe-a-dp-4:
>
> * shard-dg2: NOTRUN -> TIMEOUT ([i915#7173])
> * igt@kms_content_protection@content-type-change:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#6944] / [i915#9424])
> * shard-mtlp: NOTRUN -> SKIP ([i915#6944] / [i915#9424])
> * shard-dg2: NOTRUN -> SKIP ([i915#9424])
> * shard-rkl: NOTRUN -> SKIP ([i915#9424])
> * shard-dg1: NOTRUN -> SKIP ([i915#9424])
> * igt@kms_content_protection@mei-interface:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#9433])
> * igt@kms_content_protection@type1:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#7116] / [i915#9424])
> * igt@kms_cursor_crc@cursor-offscreen-32x32:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#3555]) +1 other test skip
> * igt@kms_cursor_crc@cursor-offscreen-512x512:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#13049])
> * shard-rkl: NOTRUN -> SKIP ([i915#13049])
> * shard-dg1: NOTRUN -> SKIP ([i915#13049])
> * igt@kms_cursor_crc@cursor-onscreen-128x42:
>
> * shard-rkl: PASS -> FAIL ([i915#13566])
> * igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-2:
>
> * shard-rkl: NOTRUN -> FAIL ([i915#13566]) +1 other test fail
> * igt@kms_cursor_crc@cursor-random-32x10:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#3555] / [i915#8814]) +1 other
> test skip
> * igt@kms_cursor_crc@cursor-rapid-movement-32x32:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#3555]) +1 other test skip
> * igt@kms_cursor_crc@cursor-rapid-movement-512x512:
>
> * shard-snb: NOTRUN -> SKIP +194 other tests skip
> * igt@kms_cursor_crc@cursor-rapid-movement-max-size:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#3555]) +7 other tests skip
> * igt@kms_cursor_crc@cursor-sliding-256x85:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#8814])
> * igt@kms_cursor_crc@cursor-sliding-512x512:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#13049]) +3 other tests skip
> * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#4103])
> * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#13046] / [i915#5354]) +2 other
> tests skip
> * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#9809]) +3 other tests skip
> * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
>
> * shard-glk: PASS -> FAIL ([i915#2346])
> * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
>
> * shard-glk: NOTRUN -> FAIL ([i915#2346])
> * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#9067])
> * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#4213])
> * shard-dg2: NOTRUN -> SKIP ([i915#4103] / [i915#4213])
> * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#4103]) +1 other test skip
> * igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#9723])
> * igt@kms_dirtyfb@psr-dirtyfb-ioctl:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#9723])
> * igt@kms_dp_linktrain_fallback@dp-fallback:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#12402])
> * shard-dg1: NOTRUN -> SKIP ([i915#12402])
> * shard-mtlp: NOTRUN -> SKIP ([i915#12402])
> * igt@kms_draw_crc@draw-method-mmap-gtt:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#8812])
> * igt@kms_dsc@dsc-fractional-bpp-with-bpc:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#3840])
> * igt@kms_dsc@dsc-with-formats:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#3555] / [i915#3840])
> * shard-rkl: NOTRUN -> SKIP ([i915#3555] / [i915#3840])
> * shard-dg1: NOTRUN -> SKIP ([i915#3555] / [i915#3840])
> * igt@kms_dsc@dsc-with-output-formats-with-bpc:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#3840] / [i915#9053])
> * igt@kms_fbcon_fbt@fbc-suspend:
>
> * shard-glk: NOTRUN -> INCOMPLETE ([i915#9878])
> * igt@kms_fbcon_fbt@psr-suspend:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#3469])
> * igt@kms_feature_discovery@chamelium:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#2065] / [i915#4854])
> * igt@kms_feature_discovery@display-2x:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#1839])
> * igt@kms_feature_discovery@display-3x:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#1839])
> * igt@kms_feature_discovery@display-4x:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#1839])
> * shard-dg1: NOTRUN -> SKIP ([i915#1839]) +1 other test skip
> * igt@kms_feature_discovery@dp-mst:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#9337])
> * shard-dg1: NOTRUN -> SKIP ([i915#9337])
> * igt@kms_feature_discovery@psr2:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#658])
> * igt@kms_flip@2x-blocking-absolute-wf_vblank:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#3637]) +4 other tests skip
> * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#3637]) +3 other tests skip
> * igt@kms_flip@2x-flip-vs-fences-interruptible:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#9934]) +7 other tests skip
> * igt@kms_flip@2x-flip-vs-suspend:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#3637]) +3 other tests skip
> * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2:
>
> * shard-glk: NOTRUN -> INCOMPLETE ([i915#4839])
> * igt@kms_flip@2x-flip-vs-wf_vblank:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#9934]) +1 other test skip
> * igt@kms_flip@2x-plain-flip-interruptible:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#9934]) +7 other tests skip
> * igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
>
> * shard-snb: PASS -> FAIL ([i915#11989]) +5 other tests fail
> * igt@kms_flip@flip-vs-expired-vblank:
>
> * shard-dg2: PASS -> FAIL ([i915#13027])
> * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1:
>
> * shard-tglu: NOTRUN -> FAIL ([i915#13027]) +1 other test fail
> * igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a1:
>
> * shard-dg2: NOTRUN -> FAIL ([i915#13027])
> * igt@kms_flip@flip-vs-suspend-interruptible:
>
> * shard-glk: NOTRUN -> INCOMPLETE ([i915#12745] / [i915#4839]) +1
> other test incomplete
> * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
>
> * shard-glk: NOTRUN -> INCOMPLETE ([i915#12745])
> * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#2672] / [i915#3555])
> * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#2587] / [i915#2672]) +1 other
> test skip
> * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#2672] / [i915#3555]) +1 other
> test skip
> * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#2672]) +1 other test skip
> * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#2672] / [i915#3555] /
> [i915#8813]) +2 other tests skip
> * shard-dg1: NOTRUN -> SKIP ([i915#2587] / [i915#2672] /
> [i915#3555])
> * shard-tglu: NOTRUN -> SKIP ([i915#2587] / [i915#2672] /
> [i915#3555])
> * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#2587] / [i915#2672] /
> [i915#3555])
> * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#2672] / [i915#3555]) +3 other
> tests skip
> * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#2587] / [i915#2672]) +6 other
> tests skip
> * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#2672] / [i915#8813])
> * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#2587] / [i915#2672]) +4 other
> tests skip
> * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#2672] / [i915#3555]) +6 other
> tests skip
> * shard-dg1: NOTRUN -> SKIP ([i915#2672] / [i915#3555]) +5 other
> tests skip
> * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#2672]) +6 other tests skip
> * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#1825]) +35 other tests skip
> * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
>
> * shard-snb: PASS -> SKIP +3 other tests skip
> * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite:
>
> * shard-dg2: NOTRUN -> FAIL ([i915#6880])
> * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#3458]) +10 other tests skip
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt:
>
> * shard-dg1: NOTRUN -> SKIP +46 other tests skip
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#1825]) +15 other tests skip
> * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#3458]) +20 other tests skip
> * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#5439])
> * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#3023]) +28 other tests skip
> * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#8708]) +24 other tests skip
> * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move:
>
> * shard-tglu: NOTRUN -> SKIP +78 other tests skip
> * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#5354]) +24 other tests skip
> * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu:
>
> * shard-tglu-1: NOTRUN -> SKIP +37 other tests skip
> * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#8708]) +13 other tests skip
> * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#8708]) +6 other tests skip
> * igt@kms_hdr@brightness-with-hdr:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#12713])
> * igt@kms_hdr@invalid-metadata-sizes:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#3555] / [i915#8228]) +1 other
> test skip
> * igt@kms_hdr@static-toggle:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#3555] / [i915#8228]) +1 other
> test skip
> * igt@kms_hdr@static-toggle-suspend:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#3555] / [i915#8228]) +2 other
> tests skip
> * igt@kms_joiner@basic-force-big-joiner:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#12388])
> * shard-dg1: NOTRUN -> SKIP ([i915#12388])
> * igt@kms_joiner@invalid-modeset-force-big-joiner:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#12388])
> * igt@kms_joiner@invalid-modeset-ultra-joiner:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#12339])
> * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#13522])
> * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#4816])
> * shard-rkl: NOTRUN -> SKIP ([i915#4070] / [i915#4816])
> * shard-tglu: NOTRUN -> SKIP ([i915#1839]) +1 other test skip
> * igt@kms_panel_fitting@legacy:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#6301])
> * shard-rkl: NOTRUN -> SKIP ([i915#6301])
> * shard-dg1: NOTRUN -> SKIP ([i915#6301])
> * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a:
>
> * shard-rkl: NOTRUN -> DMESG-FAIL ([i915#12964]) +1 other test
> dmesg-fail
> * igt@kms_plane_alpha_blend@alpha-transparent-fb:
>
> * shard-glk: NOTRUN -> FAIL ([i915#10647] / [i915#12177])
> * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-b-hdmi-a-2:
>
> * shard-rkl: PASS -> DMESG-WARN ([i915#12964]) +37 other tests
> dmesg-warn
> * igt@kms_plane_alpha_blend@constant-alpha-max:
>
> * shard-glk: NOTRUN -> FAIL ([i915#10647] / [i915#12169])
> * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1:
>
> * shard-glk: NOTRUN -> FAIL ([i915#10647]) +3 other tests fail
> * igt@kms_plane_cursor@viewport@pipe-d-edp-1-size-256:
>
> * shard-mtlp: PASS -> DMESG-WARN ([i915#1982])
> * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#12247]) +8 other tests skip
> * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#12247]) +4 other tests skip
> * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#12247]) +2 other tests skip
> * igt@kms_plane_scaling@planes-downscale-factor-0-75:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#12247] / [i915#3555] /
> [i915#6953])
> * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#12247]) +12 other tests skip
> * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#12247] / [i915#6953])
> * shard-dg2: NOTRUN -> SKIP ([i915#12247] / [i915#6953] /
> [i915#9423])
> * shard-tglu: NOTRUN -> SKIP ([i915#12247] / [i915#6953])
> * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#12247]) +7 other tests skip
> * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#12247]) +8 other tests skip
> * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#12247] / [i915#3555] /
> [i915#9423])
> * igt@kms_pm_backlight@brightness-with-dpms:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#12343])
> * shard-dg1: NOTRUN -> SKIP ([i915#12343])
> * shard-tglu: NOTRUN -> SKIP ([i915#12343])
> * shard-dg2: NOTRUN -> SKIP ([i915#12343])
> * igt@kms_pm_backlight@fade:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#9812])
> * igt@kms_pm_backlight@fade-with-dpms:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#5354]) +1 other test skip
> * shard-dg1: NOTRUN -> SKIP ([i915#5354]) +2 other tests skip
> * shard-tglu: NOTRUN -> SKIP ([i915#9812])
> * igt@kms_pm_dc@dc5-psr:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#9685])
> * igt@kms_pm_dc@dc5-retention-flops:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#3828])
> * igt@kms_pm_dc@dc6-dpms:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#3361])
> * shard-tglu: PASS -> FAIL ([i915#9295])
> * igt@kms_pm_dc@dc6-psr:
>
> * shard-mtlp: PASS -> FAIL ([i915#12912])
> * igt@kms_pm_dc@dc9-dpms:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#4281])
> * igt@kms_pm_rpm@dpms-lpsp:
>
> * shard-rkl: PASS -> SKIP ([i915#9519])
> * igt@kms_pm_rpm@dpms-mode-unset-lpsp:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#9519])
> * igt@kms_pm_rpm@modeset-lpsp-stress:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#9519])
> * shard-rkl: NOTRUN -> SKIP ([i915#9519])
> * igt@kms_pm_rpm@modeset-non-lpsp-stress:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#9519]) +1 other test skip
> * shard-mtlp: NOTRUN -> SKIP ([i915#9519]) +1 other test skip
> * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#9519])
> * igt@kms_prime@basic-modeset-hybrid:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#6524])
> * shard-dg1: NOTRUN -> SKIP ([i915#6524]) +1 other test skip
> * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
>
> * shard-snb: NOTRUN -> SKIP ([i915#11520]) +7 other tests skip
> * igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#11520]) +10 other tests skip
> * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
>
> * shard-glk: NOTRUN -> SKIP ([i915#11520]) +15 other tests skip
> * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#11520]) +4 other tests skip
> * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#11520]) +5 other tests skip
> * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#11520]) +3 other tests skip
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH i-g-t v2 2/3] lib/igt_device_scan: change device list variable visibility
2025-01-27 4:49 ` Zbigniew Kempczyński
@ 2025-01-27 15:31 ` Lucas De Marchi
2025-01-27 15:37 ` Zbigniew Kempczyński
0 siblings, 1 reply; 18+ messages in thread
From: Lucas De Marchi @ 2025-01-27 15:31 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: Kamil Konieczny, igt-dev
On Mon, Jan 27, 2025 at 05:49:15AM +0100, Zbigniew Kempczyński wrote:
>On Fri, Jan 24, 2025 at 05:26:25PM +0100, Kamil Konieczny wrote:
>> Hi Zbigniew,
>> On 2025-01-23 at 10:52:07 +0100, Zbigniew Kempczyński wrote:
>>
>> could you improve subject? something like:
>>
>> lib/igt_device_scan: Fix multithreading for Xe
>
>Yes, I can change it to sth like
>
>'lib/igt_device_scan: fix multithreading support in device scanning'
>
>because it also affects i915 even if there's not used there.
>
>>
>> > In commit: 2e8f3e06fb (tests/xe_evict|exec_threads: Use fd reopen
>> > to avoid corrupting global data) I simply changed tests which
>> > corrupted device list global variable. i915 didn't use opening
>> > devices in multithreaded tests but this changed with xe.
>> >
>> > Device scan is now unconditional so we may change device list
>> > variable visibility to TLS. With this reverting of above commit
>> > should be safe (but I'm not sure is it worth to do this).
>> >
>>
>> What about adding Fixes: tag? It is not a kernel so no strict
>> rules here, up to you.
>
>I don't if any freedesktop issue was created for this, maybe Lucas
>knows about it.
fdo issue would use a Closes:, not Fixes:
We do have some issues in which the device "disappears" after certain
tests. They are usually created and closed as "cannot reproduce" after
some time.
I don't think we can point to any bug with 100% confidence it actually
closes it - there may be other bugs lurking around on either kernel or
igt.
For this specific commit (not the one before) maybe we can point to the
commit first using multiple threads, but I don't think it's really
accurate.
Lucas De Marchi
>
>--
>Zbigniew
>
>>
>> > Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
>> > Cc: Lucas De Marchi <lucas.demarchi@intel.com>
>> > Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
>>
>> You forgot about:
>> Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>
>>
>> LGTM so also:
>> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
>>
>> > ---
>> > lib/igt_device_scan.c | 2 +-
>> > 1 file changed, 1 insertion(+), 1 deletion(-)
>> >
>> > diff --git a/lib/igt_device_scan.c b/lib/igt_device_scan.c
>> > index 44b632008b..c36b0efa90 100644
>> > --- a/lib/igt_device_scan.c
>> > +++ b/lib/igt_device_scan.c
>> > @@ -247,7 +247,7 @@ struct igt_device {
>> > };
>> >
>> > /* Scanned devices */
>> > -static struct {
>> > +static __thread struct {
>> > struct igt_list_head all;
>> > struct igt_list_head filtered;
>> > bool devs_scanned;
>> > --
>> > 2.34.1
>> >
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH i-g-t v2 2/3] lib/igt_device_scan: change device list variable visibility
2025-01-27 15:31 ` Lucas De Marchi
@ 2025-01-27 15:37 ` Zbigniew Kempczyński
2025-01-27 16:08 ` Lucas De Marchi
0 siblings, 1 reply; 18+ messages in thread
From: Zbigniew Kempczyński @ 2025-01-27 15:37 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: Kamil Konieczny, igt-dev
On Mon, Jan 27, 2025 at 09:31:46AM -0600, Lucas De Marchi wrote:
> On Mon, Jan 27, 2025 at 05:49:15AM +0100, Zbigniew Kempczyński wrote:
> > On Fri, Jan 24, 2025 at 05:26:25PM +0100, Kamil Konieczny wrote:
> > > Hi Zbigniew,
> > > On 2025-01-23 at 10:52:07 +0100, Zbigniew Kempczyński wrote:
> > >
> > > could you improve subject? something like:
> > >
> > > lib/igt_device_scan: Fix multithreading for Xe
> >
> > Yes, I can change it to sth like
> >
> > 'lib/igt_device_scan: fix multithreading support in device scanning'
> >
> > because it also affects i915 even if there's not used there.
> >
> > >
> > > > In commit: 2e8f3e06fb (tests/xe_evict|exec_threads: Use fd reopen
> > > > to avoid corrupting global data) I simply changed tests which
> > > > corrupted device list global variable. i915 didn't use opening
> > > > devices in multithreaded tests but this changed with xe.
> > > >
> > > > Device scan is now unconditional so we may change device list
> > > > variable visibility to TLS. With this reverting of above commit
> > > > should be safe (but I'm not sure is it worth to do this).
> > > >
> > >
> > > What about adding Fixes: tag? It is not a kernel so no strict
> > > rules here, up to you.
> >
> > I don't if any freedesktop issue was created for this, maybe Lucas
> > knows about it.
>
> fdo issue would use a Closes:, not Fixes:
>
> We do have some issues in which the device "disappears" after certain
> tests. They are usually created and closed as "cannot reproduce" after
> some time.
>
> I don't think we can point to any bug with 100% confidence it actually
> closes it - there may be other bugs lurking around on either kernel or
> igt.
>
> For this specific commit (not the one before) maybe we can point to the
> commit first using multiple threads, but I don't think it's really
> accurate.
So if you don't mind I would merge it as it is (patches 1-2) with reprase
of commit title as Kamil suggested for second patch. If you won't oppose
I'm going to merge this tomorrow (no negative answer means agreement).
--
Zbigniew
>
> Lucas De Marchi
>
> >
> > --
> > Zbigniew
> >
> > >
> > > > Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> > > > Cc: Lucas De Marchi <lucas.demarchi@intel.com>
> > > > Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> > >
> > > You forgot about:
> > > Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>
> > >
> > > LGTM so also:
> > > Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> > >
> > > > ---
> > > > lib/igt_device_scan.c | 2 +-
> > > > 1 file changed, 1 insertion(+), 1 deletion(-)
> > > >
> > > > diff --git a/lib/igt_device_scan.c b/lib/igt_device_scan.c
> > > > index 44b632008b..c36b0efa90 100644
> > > > --- a/lib/igt_device_scan.c
> > > > +++ b/lib/igt_device_scan.c
> > > > @@ -247,7 +247,7 @@ struct igt_device {
> > > > };
> > > >
> > > > /* Scanned devices */
> > > > -static struct {
> > > > +static __thread struct {
> > > > struct igt_list_head all;
> > > > struct igt_list_head filtered;
> > > > bool devs_scanned;
> > > > --
> > > > 2.34.1
> > > >
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH i-g-t v2 2/3] lib/igt_device_scan: change device list variable visibility
2025-01-27 15:37 ` Zbigniew Kempczyński
@ 2025-01-27 16:08 ` Lucas De Marchi
0 siblings, 0 replies; 18+ messages in thread
From: Lucas De Marchi @ 2025-01-27 16:08 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: Kamil Konieczny, igt-dev
On Mon, Jan 27, 2025 at 04:37:49PM +0100, Zbigniew Kempczyński wrote:
>On Mon, Jan 27, 2025 at 09:31:46AM -0600, Lucas De Marchi wrote:
>> On Mon, Jan 27, 2025 at 05:49:15AM +0100, Zbigniew Kempczyński wrote:
>> > On Fri, Jan 24, 2025 at 05:26:25PM +0100, Kamil Konieczny wrote:
>> > > Hi Zbigniew,
>> > > On 2025-01-23 at 10:52:07 +0100, Zbigniew Kempczyński wrote:
>> > >
>> > > could you improve subject? something like:
>> > >
>> > > lib/igt_device_scan: Fix multithreading for Xe
>> >
>> > Yes, I can change it to sth like
>> >
>> > 'lib/igt_device_scan: fix multithreading support in device scanning'
>> >
>> > because it also affects i915 even if there's not used there.
>> >
>> > >
>> > > > In commit: 2e8f3e06fb (tests/xe_evict|exec_threads: Use fd reopen
>> > > > to avoid corrupting global data) I simply changed tests which
>> > > > corrupted device list global variable. i915 didn't use opening
>> > > > devices in multithreaded tests but this changed with xe.
>> > > >
>> > > > Device scan is now unconditional so we may change device list
>> > > > variable visibility to TLS. With this reverting of above commit
>> > > > should be safe (but I'm not sure is it worth to do this).
>> > > >
>> > >
>> > > What about adding Fixes: tag? It is not a kernel so no strict
>> > > rules here, up to you.
>> >
>> > I don't if any freedesktop issue was created for this, maybe Lucas
>> > knows about it.
>>
>> fdo issue would use a Closes:, not Fixes:
>>
>> We do have some issues in which the device "disappears" after certain
>> tests. They are usually created and closed as "cannot reproduce" after
>> some time.
>>
>> I don't think we can point to any bug with 100% confidence it actually
>> closes it - there may be other bugs lurking around on either kernel or
>> igt.
>>
>> For this specific commit (not the one before) maybe we can point to the
>> commit first using multiple threads, but I don't think it's really
>> accurate.
>
>So if you don't mind I would merge it as it is (patches 1-2) with reprase
>of commit title as Kamil suggested for second patch. If you won't oppose
>I'm going to merge this tomorrow (no negative answer means agreement).
agreed, this can be merged as is.
Lucas De Marchi
^ permalink raw reply [flat|nested] 18+ messages in thread
end of thread, other threads:[~2025-01-27 16:08 UTC | newest]
Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-23 9:52 [PATCH i-g-t v2 0/3] Drop device scan cache logic Zbigniew Kempczyński
2025-01-23 9:52 ` [PATCH i-g-t v2 1/3] lib/igt_device_scan: drop " Zbigniew Kempczyński
2025-01-23 17:25 ` Lucas De Marchi
2025-01-23 9:52 ` [PATCH i-g-t v2 2/3] lib/igt_device_scan: change device list variable visibility Zbigniew Kempczyński
2025-01-24 16:26 ` Kamil Konieczny
2025-01-27 4:49 ` Zbigniew Kempczyński
2025-01-27 15:31 ` Lucas De Marchi
2025-01-27 15:37 ` Zbigniew Kempczyński
2025-01-27 16:08 ` Lucas De Marchi
2025-01-23 9:52 ` [PATCH i-g-t v2 3/3] tests/xe_intel_bb: check multithreading rescans won't segfault Zbigniew Kempczyński
2025-01-24 16:28 ` Kamil Konieczny
2025-01-27 4:50 ` Zbigniew Kempczyński
2025-01-23 10:36 ` ✓ i915.CI.BAT: success for Drop device scan cache logic (rev2) Patchwork
2025-01-23 11:15 ` ✓ Xe.CI.BAT: " Patchwork
2025-01-23 23:13 ` ✗ Xe.CI.Full: failure " Patchwork
2025-01-27 4:55 ` Zbigniew Kempczyński
2025-01-24 3:29 ` ✗ i915.CI.Full: " Patchwork
2025-01-27 4:59 ` Zbigniew Kempczyński
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox