* [PATCH i-g-t] tests/intel/perf_pmu: Drop cpu-hotplug subtest
@ 2025-01-23 5:30 Lucas De Marchi
2025-01-23 8:23 ` ✓ i915.CI.BAT: success for " Patchwork
` (7 more replies)
0 siblings, 8 replies; 11+ messages in thread
From: Lucas De Marchi @ 2025-01-23 5:30 UTC (permalink / raw)
To: igt-dev; +Cc: Lucas De Marchi
This test has been skipping since a long time (forever?) in CI. The
reason is that cpu0 is not really hot pluggable. There was an initial
attempt that got removed with kernel commits 5475abbde77f ("x86/smpboot:
Remove the CPU0 hotplug kludge") and e59e74dc48a3 ("x86/topology: Remove
CPU0 hotplug option").
With those commits there are no more cpu0_hotplug kernel parameter and
no more BOOTPARAM_HOTPLUG_CPU0 build config.
The current i915 pmu integration always returns the first cpu in the
system, which means that it's always cpu0. The cpu migration is also
currently wrong and was never detected by this test: it tries to find a
sibling cpu rather than allowing to migrate to any cpu in the system.
In order to clean up the i915 side, the hotplug code is being removed in
favor of the generic one, provided by perf infra. That too has the same
"issue" that there's no easy way to test, but hopefully receives more
visibility since it's shared by several drivers.
If we ever find a way to instrument the kernel to test the hotplug, this
code can be partially restored.
References: https://lore.kernel.org/all/20250116222426.77757-1-lucas.demarchi@intel.com/
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
---
tests/intel/perf_pmu.c | 142 -----------------------------------------
1 file changed, 142 deletions(-)
diff --git a/tests/intel/perf_pmu.c b/tests/intel/perf_pmu.c
index 5d0467c02..084ef9631 100644
--- a/tests/intel/perf_pmu.c
+++ b/tests/intel/perf_pmu.c
@@ -101,9 +101,6 @@
* SUBTEST: busy-start
* Description: Test to verify gpu busyness through engine business pmu counters
*
- * SUBTEST: cpu-hotplug
- * Description: Test the i915 pmu perf interface
- *
* SUBTEST: enable-race
* Description: Test the i915 pmu perf interface
*
@@ -1362,139 +1359,6 @@ static void open_invalid(int i915)
igt_assert_lt(fd, 0);
}
-static bool cpu0_hotplug_support(void)
-{
- return access("/sys/devices/system/cpu/cpu0/online", W_OK) == 0;
-}
-
-static void cpu_hotplug(int gem_fd)
-{
- igt_spin_t *spin[2];
- uint64_t ts[2];
- uint64_t val;
- int link[2];
- int fd, ret;
- int cur = 0;
- char buf;
- uint64_t ahnd = get_reloc_ahnd(gem_fd, 0);
-
- igt_require(cpu0_hotplug_support());
-
- fd = open_pmu(gem_fd,
- I915_PMU_ENGINE_BUSY(I915_ENGINE_CLASS_RENDER, 0));
-
- /*
- * Create two spinners so test can ensure shorter gaps in engine
- * busyness as it is terminating one and re-starting the other.
- */
- spin[0] = igt_spin_new(gem_fd, .ahnd = ahnd,
- .engine = I915_EXEC_DEFAULT);
- spin[1] = __igt_spin_new(gem_fd, .ahnd = ahnd,
- .engine = I915_EXEC_DEFAULT);
-
- val = __pmu_read_single(fd, &ts[0]);
-
- ret = pipe2(link, O_NONBLOCK);
- igt_assert_eq(ret, 0);
-
- /*
- * Toggle online status of all the CPUs in a child process and ensure
- * this has not affected busyness stats in the parent.
- */
- igt_fork(child, 1) {
- int cpu = 0;
-
- close(link[0]);
-
- for (;;) {
- char name[128];
- int cpufd;
-
- igt_assert_lt(snprintf(name, sizeof(name),
- "/sys/devices/system/cpu/cpu%d/online",
- cpu), sizeof(name));
- cpufd = open(name, O_WRONLY);
- if (cpufd == -1) {
- igt_assert_lt(0, cpu);
- /*
- * Signal parent that we cycled through all
- * CPUs and we are done.
- */
- igt_assert_eq(write(link[1], "*", 1), 1);
- break;
- }
-
- /* Offline followed by online a CPU. */
-
- ret = write(cpufd, "0", 2);
- if (ret < 0) {
- /*
- * If we failed to offline a CPU we don't want
- * to proceed.
- */
- igt_warn("Failed to offline cpu%u! (%d)\n",
- cpu, errno);
- igt_assert_eq(write(link[1], "s", 1), 1);
- break;
- }
-
- usleep(1e6);
-
- ret = write(cpufd, "1", 2);
- if (ret < 0) {
- /*
- * Failed to bring a CPU back online is fatal
- * for the sanity of a test run so stop further
- * testing.
- */
- igt_warn("Failed to online cpu%u! (%d)\n",
- cpu, errno);
- igt_fatal_error();
- }
-
- close(cpufd);
- cpu++;
- }
- }
-
- close(link[1]);
-
- /*
- * Very long batches can be declared as GPU hangs so emit shorter ones
- * until the CPU core shuffler finishes one loop.
- */
- for (;;) {
- usleep(500e3);
- end_spin(gem_fd, spin[cur], 0);
-
- /* Check if the child is signaling completion. */
- ret = read(link[0], &buf, 1);
- if ( ret == 1 || (ret < 0 && errno != EAGAIN))
- break;
-
- igt_spin_free(gem_fd, spin[cur]);
- spin[cur] = __igt_spin_new(gem_fd, .ahnd = ahnd,
- .engine = I915_EXEC_DEFAULT);
- cur ^= 1;
- }
-
- val = __pmu_read_single(fd, &ts[1]) - val;
-
- end_spin(gem_fd, spin[0], FLAG_SYNC);
- end_spin(gem_fd, spin[1], FLAG_SYNC);
- igt_spin_free(gem_fd, spin[0]);
- igt_spin_free(gem_fd, spin[1]);
- igt_waitchildren();
- close(fd);
- close(link[0]);
- put_ahnd(ahnd);
-
- /* Skip if child signals a problem with offlining a CPU. */
- igt_skip_on(buf == 's');
-
- assert_within_epsilon(val, ts[1] - ts[0], tolerance);
-}
-
static int target_num_interrupts(int i915)
{
const intel_ctx_cfg_t cfg = intel_ctx_cfg_all_physical(i915);
@@ -2650,12 +2514,6 @@ igt_main
all_busy_check_all(fd, ctx, num_engines,
TEST_BUSY | TEST_TRAILING_IDLE);
- /**
- * Test counters are not affected by CPU offline/online events.
- */
- igt_subtest("cpu-hotplug")
- cpu_hotplug(fd);
-
/**
* Test GPU frequency.
*/
--
2.48.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* ✓ i915.CI.BAT: success for tests/intel/perf_pmu: Drop cpu-hotplug subtest
2025-01-23 5:30 [PATCH i-g-t] tests/intel/perf_pmu: Drop cpu-hotplug subtest Lucas De Marchi
@ 2025-01-23 8:23 ` Patchwork
2025-01-23 8:24 ` Patchwork
` (6 subsequent siblings)
7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2025-01-23 8:23 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 6843 bytes --]
== Series Details ==
Series: tests/intel/perf_pmu: Drop cpu-hotplug subtest
URL : https://patchwork.freedesktop.org/series/143874/
State : success
== Summary ==
CI Bug Log - changes from IGT_8207 -> IGTPW_12483
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/index.html
Participating hosts (43 -> 42)
------------------------------
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_12483 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_12483/fi-pnv-d510/igt@i915_module_load@load.html
* igt@i915_pm_rpm@module-reload:
- fi-cfl-8109u: [PASS][3] -> [DMESG-WARN][4] ([i915#11621] / [i915#1982]) +1 other test dmesg-warn
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8207/fi-cfl-8109u/igt@i915_pm_rpm@module-reload.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/fi-cfl-8109u/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live:
- bat-twl-1: NOTRUN -> [ABORT][5] ([i915#12919] / [i915#13503])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/bat-twl-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@gt_pm:
- bat-twl-1: NOTRUN -> [ABORT][6] ([i915#12919])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/bat-twl-1/igt@i915_selftest@live@gt_pm.html
* igt@i915_selftest@live@late_gt_pm:
- fi-cfl-8109u: [PASS][7] -> [DMESG-WARN][8] ([i915#11621]) +130 other tests dmesg-warn
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8207/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-mtlp-8: [DMESG-FAIL][9] ([i915#12061]) -> [PASS][10] +1 other test pass
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8207/bat-mtlp-8/igt@i915_selftest@live.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/bat-mtlp-8/igt@i915_selftest@live.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-dg2-13: [SKIP][11] ([i915#5274]) -> [PASS][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8207/bat-dg2-13/igt@kms_force_connector_basic@prune-stale-modes.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/bat-dg2-13/igt@kms_force_connector_basic@prune-stale-modes.html
- bat-dg2-9: [SKIP][13] ([i915#5274]) -> [PASS][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8207/bat-dg2-9/igt@kms_force_connector_basic@prune-stale-modes.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/bat-dg2-9/igt@kms_force_connector_basic@prune-stale-modes.html
- bat-mtlp-6: [SKIP][15] ([i915#5274] / [i915#9792]) -> [PASS][16]
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8207/bat-mtlp-6/igt@kms_force_connector_basic@prune-stale-modes.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/bat-mtlp-6/igt@kms_force_connector_basic@prune-stale-modes.html
- bat-dg2-14: [SKIP][17] ([i915#5274]) -> [PASS][18]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8207/bat-dg2-14/igt@kms_force_connector_basic@prune-stale-modes.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/bat-dg2-14/igt@kms_force_connector_basic@prune-stale-modes.html
- bat-dg2-11: [SKIP][19] ([i915#5274]) -> [PASS][20]
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8207/bat-dg2-11/igt@kms_force_connector_basic@prune-stale-modes.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/bat-dg2-11/igt@kms_force_connector_basic@prune-stale-modes.html
- bat-mtlp-8: [SKIP][21] ([i915#5274]) -> [PASS][22]
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8207/bat-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/bat-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html
- bat-dg2-8: [SKIP][23] ([i915#5274]) -> [PASS][24]
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8207/bat-dg2-8/igt@kms_force_connector_basic@prune-stale-modes.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/bat-dg2-8/igt@kms_force_connector_basic@prune-stale-modes.html
- {bat-mtlp-9}: [SKIP][25] ([i915#5274]) -> [PASS][26]
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8207/bat-mtlp-9/igt@kms_force_connector_basic@prune-stale-modes.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/bat-mtlp-9/igt@kms_force_connector_basic@prune-stale-modes.html
- bat-arlh-3: [SKIP][27] ([i915#12648]) -> [PASS][28]
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8207/bat-arlh-3/igt@kms_force_connector_basic@prune-stale-modes.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/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).
[i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12648]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12648
[i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919
[i915#13203]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13203
[i915#13503]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13503
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[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_12483
* 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_12483: 6e8cdd5021761a6d09bb290f783713fd86867c02 @ 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_12483/index.html
[-- Attachment #2: Type: text/html, Size: 8314 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ i915.CI.BAT: success for tests/intel/perf_pmu: Drop cpu-hotplug subtest
2025-01-23 5:30 [PATCH i-g-t] tests/intel/perf_pmu: Drop cpu-hotplug subtest Lucas De Marchi
2025-01-23 8:23 ` ✓ i915.CI.BAT: success for " Patchwork
@ 2025-01-23 8:24 ` Patchwork
2025-01-23 8:24 ` Patchwork
` (5 subsequent siblings)
7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2025-01-23 8:24 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 6843 bytes --]
== Series Details ==
Series: tests/intel/perf_pmu: Drop cpu-hotplug subtest
URL : https://patchwork.freedesktop.org/series/143874/
State : success
== Summary ==
CI Bug Log - changes from IGT_8207 -> IGTPW_12483
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/index.html
Participating hosts (43 -> 42)
------------------------------
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_12483 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_12483/fi-pnv-d510/igt@i915_module_load@load.html
* igt@i915_pm_rpm@module-reload:
- fi-cfl-8109u: [PASS][3] -> [DMESG-WARN][4] ([i915#11621] / [i915#1982]) +1 other test dmesg-warn
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8207/fi-cfl-8109u/igt@i915_pm_rpm@module-reload.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/fi-cfl-8109u/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live:
- bat-twl-1: NOTRUN -> [ABORT][5] ([i915#12919] / [i915#13503])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/bat-twl-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@gt_pm:
- bat-twl-1: NOTRUN -> [ABORT][6] ([i915#12919])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/bat-twl-1/igt@i915_selftest@live@gt_pm.html
* igt@i915_selftest@live@late_gt_pm:
- fi-cfl-8109u: [PASS][7] -> [DMESG-WARN][8] ([i915#11621]) +130 other tests dmesg-warn
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8207/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-mtlp-8: [DMESG-FAIL][9] ([i915#12061]) -> [PASS][10] +1 other test pass
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8207/bat-mtlp-8/igt@i915_selftest@live.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/bat-mtlp-8/igt@i915_selftest@live.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-dg2-13: [SKIP][11] ([i915#5274]) -> [PASS][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8207/bat-dg2-13/igt@kms_force_connector_basic@prune-stale-modes.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/bat-dg2-13/igt@kms_force_connector_basic@prune-stale-modes.html
- bat-dg2-9: [SKIP][13] ([i915#5274]) -> [PASS][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8207/bat-dg2-9/igt@kms_force_connector_basic@prune-stale-modes.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/bat-dg2-9/igt@kms_force_connector_basic@prune-stale-modes.html
- bat-mtlp-6: [SKIP][15] ([i915#5274] / [i915#9792]) -> [PASS][16]
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8207/bat-mtlp-6/igt@kms_force_connector_basic@prune-stale-modes.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/bat-mtlp-6/igt@kms_force_connector_basic@prune-stale-modes.html
- bat-dg2-14: [SKIP][17] ([i915#5274]) -> [PASS][18]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8207/bat-dg2-14/igt@kms_force_connector_basic@prune-stale-modes.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/bat-dg2-14/igt@kms_force_connector_basic@prune-stale-modes.html
- bat-dg2-11: [SKIP][19] ([i915#5274]) -> [PASS][20]
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8207/bat-dg2-11/igt@kms_force_connector_basic@prune-stale-modes.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/bat-dg2-11/igt@kms_force_connector_basic@prune-stale-modes.html
- bat-mtlp-8: [SKIP][21] ([i915#5274]) -> [PASS][22]
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8207/bat-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/bat-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html
- bat-dg2-8: [SKIP][23] ([i915#5274]) -> [PASS][24]
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8207/bat-dg2-8/igt@kms_force_connector_basic@prune-stale-modes.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/bat-dg2-8/igt@kms_force_connector_basic@prune-stale-modes.html
- {bat-mtlp-9}: [SKIP][25] ([i915#5274]) -> [PASS][26]
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8207/bat-mtlp-9/igt@kms_force_connector_basic@prune-stale-modes.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/bat-mtlp-9/igt@kms_force_connector_basic@prune-stale-modes.html
- bat-arlh-3: [SKIP][27] ([i915#12648]) -> [PASS][28]
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8207/bat-arlh-3/igt@kms_force_connector_basic@prune-stale-modes.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/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).
[i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12648]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12648
[i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919
[i915#13203]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13203
[i915#13503]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13503
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[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_12483
* 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_12483: 6e8cdd5021761a6d09bb290f783713fd86867c02 @ 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_12483/index.html
[-- Attachment #2: Type: text/html, Size: 8314 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ i915.CI.BAT: success for tests/intel/perf_pmu: Drop cpu-hotplug subtest
2025-01-23 5:30 [PATCH i-g-t] tests/intel/perf_pmu: Drop cpu-hotplug subtest Lucas De Marchi
2025-01-23 8:23 ` ✓ i915.CI.BAT: success for " Patchwork
2025-01-23 8:24 ` Patchwork
@ 2025-01-23 8:24 ` Patchwork
2025-01-23 9:38 ` ✓ Xe.CI.BAT: " Patchwork
` (4 subsequent siblings)
7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2025-01-23 8:24 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 6843 bytes --]
== Series Details ==
Series: tests/intel/perf_pmu: Drop cpu-hotplug subtest
URL : https://patchwork.freedesktop.org/series/143874/
State : success
== Summary ==
CI Bug Log - changes from IGT_8207 -> IGTPW_12483
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/index.html
Participating hosts (43 -> 42)
------------------------------
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_12483 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_12483/fi-pnv-d510/igt@i915_module_load@load.html
* igt@i915_pm_rpm@module-reload:
- fi-cfl-8109u: [PASS][3] -> [DMESG-WARN][4] ([i915#11621] / [i915#1982]) +1 other test dmesg-warn
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8207/fi-cfl-8109u/igt@i915_pm_rpm@module-reload.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/fi-cfl-8109u/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live:
- bat-twl-1: NOTRUN -> [ABORT][5] ([i915#12919] / [i915#13503])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/bat-twl-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@gt_pm:
- bat-twl-1: NOTRUN -> [ABORT][6] ([i915#12919])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/bat-twl-1/igt@i915_selftest@live@gt_pm.html
* igt@i915_selftest@live@late_gt_pm:
- fi-cfl-8109u: [PASS][7] -> [DMESG-WARN][8] ([i915#11621]) +130 other tests dmesg-warn
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8207/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-mtlp-8: [DMESG-FAIL][9] ([i915#12061]) -> [PASS][10] +1 other test pass
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8207/bat-mtlp-8/igt@i915_selftest@live.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/bat-mtlp-8/igt@i915_selftest@live.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-dg2-13: [SKIP][11] ([i915#5274]) -> [PASS][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8207/bat-dg2-13/igt@kms_force_connector_basic@prune-stale-modes.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/bat-dg2-13/igt@kms_force_connector_basic@prune-stale-modes.html
- bat-dg2-9: [SKIP][13] ([i915#5274]) -> [PASS][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8207/bat-dg2-9/igt@kms_force_connector_basic@prune-stale-modes.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/bat-dg2-9/igt@kms_force_connector_basic@prune-stale-modes.html
- bat-mtlp-6: [SKIP][15] ([i915#5274] / [i915#9792]) -> [PASS][16]
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8207/bat-mtlp-6/igt@kms_force_connector_basic@prune-stale-modes.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/bat-mtlp-6/igt@kms_force_connector_basic@prune-stale-modes.html
- bat-dg2-14: [SKIP][17] ([i915#5274]) -> [PASS][18]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8207/bat-dg2-14/igt@kms_force_connector_basic@prune-stale-modes.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/bat-dg2-14/igt@kms_force_connector_basic@prune-stale-modes.html
- bat-dg2-11: [SKIP][19] ([i915#5274]) -> [PASS][20]
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8207/bat-dg2-11/igt@kms_force_connector_basic@prune-stale-modes.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/bat-dg2-11/igt@kms_force_connector_basic@prune-stale-modes.html
- bat-mtlp-8: [SKIP][21] ([i915#5274]) -> [PASS][22]
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8207/bat-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/bat-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html
- bat-dg2-8: [SKIP][23] ([i915#5274]) -> [PASS][24]
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8207/bat-dg2-8/igt@kms_force_connector_basic@prune-stale-modes.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/bat-dg2-8/igt@kms_force_connector_basic@prune-stale-modes.html
- {bat-mtlp-9}: [SKIP][25] ([i915#5274]) -> [PASS][26]
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8207/bat-mtlp-9/igt@kms_force_connector_basic@prune-stale-modes.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/bat-mtlp-9/igt@kms_force_connector_basic@prune-stale-modes.html
- bat-arlh-3: [SKIP][27] ([i915#12648]) -> [PASS][28]
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8207/bat-arlh-3/igt@kms_force_connector_basic@prune-stale-modes.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/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).
[i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12648]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12648
[i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919
[i915#13203]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13203
[i915#13503]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13503
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[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_12483
* 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_12483: 6e8cdd5021761a6d09bb290f783713fd86867c02 @ 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_12483/index.html
[-- Attachment #2: Type: text/html, Size: 8314 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Xe.CI.BAT: success for tests/intel/perf_pmu: Drop cpu-hotplug subtest
2025-01-23 5:30 [PATCH i-g-t] tests/intel/perf_pmu: Drop cpu-hotplug subtest Lucas De Marchi
` (2 preceding siblings ...)
2025-01-23 8:24 ` Patchwork
@ 2025-01-23 9:38 ` Patchwork
2025-01-23 17:45 ` [PATCH i-g-t] " Lucas De Marchi
` (3 subsequent siblings)
7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2025-01-23 9:38 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3720 bytes --]
== Series Details ==
Series: tests/intel/perf_pmu: Drop cpu-hotplug subtest
URL : https://patchwork.freedesktop.org/series/143874/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8207_BAT -> XEIGTPW_12483_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_12483_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_12483/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_12483/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_12483/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_12483/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_12483/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_12483/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_12483
* Linux: xe-2534-db7cf8d52a41001ea2780cf834fed3dc490343d2 -> xe-2536-33906a7032dfca356fd7309e6abbdf5a7ea97db4
IGTPW_12483: 6e8cdd5021761a6d09bb290f783713fd86867c02 @ 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_12483/index.html
[-- Attachment #2: Type: text/html, Size: 4709 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t] tests/intel/perf_pmu: Drop cpu-hotplug subtest
2025-01-23 5:30 [PATCH i-g-t] tests/intel/perf_pmu: Drop cpu-hotplug subtest Lucas De Marchi
` (3 preceding siblings ...)
2025-01-23 9:38 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-01-23 17:45 ` Lucas De Marchi
2025-01-25 0:13 ` Umesh Nerlige Ramappa
2025-01-23 20:15 ` ✗ Xe.CI.Full: failure for " Patchwork
` (2 subsequent siblings)
7 siblings, 1 reply; 11+ messages in thread
From: Lucas De Marchi @ 2025-01-23 17:45 UTC (permalink / raw)
To: igt-dev; +Cc: Tvrtko Ursulin
On Wed, Jan 22, 2025 at 09:30:39PM -0800, Lucas De Marchi wrote:
>This test has been skipping since a long time (forever?) in CI. The
s/(forever?)//
looking at the CI repo it was actually tested because it had a kconfig
set for making CPU0 hotpluggable. That capability went way in the kernel
by ...
>reason is that cpu0 is not really hot pluggable. There was an initial
>attempt that got removed with kernel commits 5475abbde77f ("x86/smpboot:
>Remove the CPU0 hotplug kludge") and e59e74dc48a3 ("x86/topology: Remove
>CPU0 hotplug option").
^ these commits, so it's dead code since then.
Lucas De Marchi
>
>With those commits there are no more cpu0_hotplug kernel parameter and
>no more BOOTPARAM_HOTPLUG_CPU0 build config.
>
>The current i915 pmu integration always returns the first cpu in the
>system, which means that it's always cpu0. The cpu migration is also
>currently wrong and was never detected by this test: it tries to find a
>sibling cpu rather than allowing to migrate to any cpu in the system.
>In order to clean up the i915 side, the hotplug code is being removed in
>favor of the generic one, provided by perf infra. That too has the same
>"issue" that there's no easy way to test, but hopefully receives more
>visibility since it's shared by several drivers.
>
>If we ever find a way to instrument the kernel to test the hotplug, this
>code can be partially restored.
>
>References: https://lore.kernel.org/all/20250116222426.77757-1-lucas.demarchi@intel.com/
>Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
>---
> tests/intel/perf_pmu.c | 142 -----------------------------------------
> 1 file changed, 142 deletions(-)
>
>diff --git a/tests/intel/perf_pmu.c b/tests/intel/perf_pmu.c
>index 5d0467c02..084ef9631 100644
>--- a/tests/intel/perf_pmu.c
>+++ b/tests/intel/perf_pmu.c
>@@ -101,9 +101,6 @@
> * SUBTEST: busy-start
> * Description: Test to verify gpu busyness through engine business pmu counters
> *
>- * SUBTEST: cpu-hotplug
>- * Description: Test the i915 pmu perf interface
>- *
> * SUBTEST: enable-race
> * Description: Test the i915 pmu perf interface
> *
>@@ -1362,139 +1359,6 @@ static void open_invalid(int i915)
> igt_assert_lt(fd, 0);
> }
>
>-static bool cpu0_hotplug_support(void)
>-{
>- return access("/sys/devices/system/cpu/cpu0/online", W_OK) == 0;
>-}
>-
>-static void cpu_hotplug(int gem_fd)
>-{
>- igt_spin_t *spin[2];
>- uint64_t ts[2];
>- uint64_t val;
>- int link[2];
>- int fd, ret;
>- int cur = 0;
>- char buf;
>- uint64_t ahnd = get_reloc_ahnd(gem_fd, 0);
>-
>- igt_require(cpu0_hotplug_support());
>-
>- fd = open_pmu(gem_fd,
>- I915_PMU_ENGINE_BUSY(I915_ENGINE_CLASS_RENDER, 0));
>-
>- /*
>- * Create two spinners so test can ensure shorter gaps in engine
>- * busyness as it is terminating one and re-starting the other.
>- */
>- spin[0] = igt_spin_new(gem_fd, .ahnd = ahnd,
>- .engine = I915_EXEC_DEFAULT);
>- spin[1] = __igt_spin_new(gem_fd, .ahnd = ahnd,
>- .engine = I915_EXEC_DEFAULT);
>-
>- val = __pmu_read_single(fd, &ts[0]);
>-
>- ret = pipe2(link, O_NONBLOCK);
>- igt_assert_eq(ret, 0);
>-
>- /*
>- * Toggle online status of all the CPUs in a child process and ensure
>- * this has not affected busyness stats in the parent.
>- */
>- igt_fork(child, 1) {
>- int cpu = 0;
>-
>- close(link[0]);
>-
>- for (;;) {
>- char name[128];
>- int cpufd;
>-
>- igt_assert_lt(snprintf(name, sizeof(name),
>- "/sys/devices/system/cpu/cpu%d/online",
>- cpu), sizeof(name));
>- cpufd = open(name, O_WRONLY);
>- if (cpufd == -1) {
>- igt_assert_lt(0, cpu);
>- /*
>- * Signal parent that we cycled through all
>- * CPUs and we are done.
>- */
>- igt_assert_eq(write(link[1], "*", 1), 1);
>- break;
>- }
>-
>- /* Offline followed by online a CPU. */
>-
>- ret = write(cpufd, "0", 2);
>- if (ret < 0) {
>- /*
>- * If we failed to offline a CPU we don't want
>- * to proceed.
>- */
>- igt_warn("Failed to offline cpu%u! (%d)\n",
>- cpu, errno);
>- igt_assert_eq(write(link[1], "s", 1), 1);
>- break;
>- }
>-
>- usleep(1e6);
>-
>- ret = write(cpufd, "1", 2);
>- if (ret < 0) {
>- /*
>- * Failed to bring a CPU back online is fatal
>- * for the sanity of a test run so stop further
>- * testing.
>- */
>- igt_warn("Failed to online cpu%u! (%d)\n",
>- cpu, errno);
>- igt_fatal_error();
>- }
>-
>- close(cpufd);
>- cpu++;
>- }
>- }
>-
>- close(link[1]);
>-
>- /*
>- * Very long batches can be declared as GPU hangs so emit shorter ones
>- * until the CPU core shuffler finishes one loop.
>- */
>- for (;;) {
>- usleep(500e3);
>- end_spin(gem_fd, spin[cur], 0);
>-
>- /* Check if the child is signaling completion. */
>- ret = read(link[0], &buf, 1);
>- if ( ret == 1 || (ret < 0 && errno != EAGAIN))
>- break;
>-
>- igt_spin_free(gem_fd, spin[cur]);
>- spin[cur] = __igt_spin_new(gem_fd, .ahnd = ahnd,
>- .engine = I915_EXEC_DEFAULT);
>- cur ^= 1;
>- }
>-
>- val = __pmu_read_single(fd, &ts[1]) - val;
>-
>- end_spin(gem_fd, spin[0], FLAG_SYNC);
>- end_spin(gem_fd, spin[1], FLAG_SYNC);
>- igt_spin_free(gem_fd, spin[0]);
>- igt_spin_free(gem_fd, spin[1]);
>- igt_waitchildren();
>- close(fd);
>- close(link[0]);
>- put_ahnd(ahnd);
>-
>- /* Skip if child signals a problem with offlining a CPU. */
>- igt_skip_on(buf == 's');
>-
>- assert_within_epsilon(val, ts[1] - ts[0], tolerance);
>-}
>-
> static int target_num_interrupts(int i915)
> {
> const intel_ctx_cfg_t cfg = intel_ctx_cfg_all_physical(i915);
>@@ -2650,12 +2514,6 @@ igt_main
> all_busy_check_all(fd, ctx, num_engines,
> TEST_BUSY | TEST_TRAILING_IDLE);
>
>- /**
>- * Test counters are not affected by CPU offline/online events.
>- */
>- igt_subtest("cpu-hotplug")
>- cpu_hotplug(fd);
>-
> /**
> * Test GPU frequency.
> */
>--
>2.48.0
>
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ Xe.CI.Full: failure for tests/intel/perf_pmu: Drop cpu-hotplug subtest
2025-01-23 5:30 [PATCH i-g-t] tests/intel/perf_pmu: Drop cpu-hotplug subtest Lucas De Marchi
` (4 preceding siblings ...)
2025-01-23 17:45 ` [PATCH i-g-t] " Lucas De Marchi
@ 2025-01-23 20:15 ` Patchwork
2025-01-24 2:02 ` ✗ i915.CI.Full: " Patchwork
2025-01-27 8:53 ` [PATCH i-g-t] " Tvrtko Ursulin
7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2025-01-23 20:15 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 109115 bytes --]
== Series Details ==
Series: tests/intel/perf_pmu: Drop cpu-hotplug subtest
URL : https://patchwork.freedesktop.org/series/143874/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8207_full -> XEIGTPW_12483_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12483_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12483_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_12483_full:
### IGT changes ###
#### Possible regressions ####
* igt@core_setmaster@master-drop-set-root:
- shard-bmg: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-6/igt@core_setmaster@master-drop-set-root.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-3/igt@core_setmaster@master-drop-set-root.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][3] -> [DMESG-WARN][4] +2 other tests dmesg-warn
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-436/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-434/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
* igt@xe_exec_compute_mode@many-execqueues-rebind:
- shard-bmg: [PASS][5] -> [INCOMPLETE][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-8/igt@xe_exec_compute_mode@many-execqueues-rebind.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-3/igt@xe_exec_compute_mode@many-execqueues-rebind.html
#### Warnings ####
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-bmg: [SKIP][7] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-7/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
Known issues
------------
Here are the changes found in XEIGTPW_12483_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_setmaster@master-drop-set-root:
- shard-dg2-set2: [PASS][9] -> [FAIL][10] ([Intel XE#3249])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-432/igt@core_setmaster@master-drop-set-root.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-434/igt@core_setmaster@master-drop-set-root.html
* igt@intel_hwmon@hwmon-read:
- shard-bmg: [PASS][11] -> [SKIP][12] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-8/igt@intel_hwmon@hwmon-read.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-3/igt@intel_hwmon@hwmon-read.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-6-4-mc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#3767]) +15 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-463/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-6-4-mc-ccs.html
* igt@kms_async_flips@crc:
- shard-bmg: [PASS][14] -> [DMESG-WARN][15] ([Intel XE#877]) +1 other test dmesg-warn
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-6/igt@kms_async_flips@crc.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-3/igt@kms_async_flips@crc.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1407]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-lnl-3/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#316]) +2 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-433/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2327])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-7/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: [PASS][19] -> [SKIP][20] ([Intel XE#2136] / [Intel XE#2351])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@kms_big_fb@x-tiled-addfb-size-offset-overflow.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-434/igt@kms_big_fb@x-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1428]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-lnl-6/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][22] ([Intel XE#1124]) +3 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-1/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][23] ([Intel XE#1124]) +9 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-436/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#1124]) +2 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/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][25] ([Intel XE#2191]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-lnl-8/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
- shard-bmg: [PASS][26] -> [SKIP][27] ([Intel XE#2314] / [Intel XE#2894])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#2191]) +2 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-433/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-1-displays-1920x1080p:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#367]) +3 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-463/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#367]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-7/igt@kms_bw@linear-tiling-2-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][31] ([Intel XE#787]) +125 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-435/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#2907])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-434/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][33] ([Intel XE#2887]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-6/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][34] ([Intel XE#3433]) +3 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-lnl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [PASS][35] -> [SKIP][36] ([Intel XE#2136]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#455] / [Intel XE#787]) +24 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][38] ([Intel XE#1727] / [Intel XE#3124] / [Intel XE#4010])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][39] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4010])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2652] / [Intel XE#787]) +7 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/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][41] ([Intel XE#2887]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-lnl-4/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][42] ([Intel XE#314]) +3 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-463/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#1152]) +3 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-433/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_audio@dp-audio-edid:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2252]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-8/igt@kms_chamelium_audio@dp-audio-edid.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#306])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-436/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#373]) +9 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-435/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#373]) +4 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-lnl-1/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][48] ([Intel XE#1178])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-1/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#308]) +2 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-434/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-256x256@pipe-d-hdmi-a-3:
- shard-bmg: NOTRUN -> [DMESG-WARN][50] ([Intel XE#1033]) +3 other tests dmesg-warn
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-6/igt@kms_cursor_crc@cursor-onscreen-256x256@pipe-d-hdmi-a-3.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2320])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#2321]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-lnl-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#1424]) +2 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-lnl-7/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2321])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-8/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2291])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#323])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-433/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-bmg: [PASS][57] -> [SKIP][58] ([Intel XE#2291]) +3 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#307])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-433/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dsc@dsc-with-bpc:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#2244])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-lnl-1/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#776])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-5/igt@kms_fbcon_fbt@psr-suspend.html
- shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#776])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-435/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#701])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-435/igt@kms_feature_discovery@chamelium.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-bmg: [PASS][64] -> [SKIP][65] ([Intel XE#2316]) +6 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-3/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#1421]) +2 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-lnl-1/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a2-dp2:
- shard-dg2-set2: NOTRUN -> [FAIL][67] ([Intel XE#301]) +2 other tests fail
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-432/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a2-dp2.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3:
- shard-bmg: [PASS][68] -> [FAIL][69] ([Intel XE#3321]) +3 other tests fail
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][70] -> [FAIL][71] ([Intel XE#301]) +6 other tests fail
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-suspend@cd-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][72] ([Intel XE#1033]) +22 other tests dmesg-warn
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-433/igt@kms_flip@2x-flip-vs-suspend@cd-hdmi-a6-dp4.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-lnl: [PASS][73] -> [FAIL][74] ([Intel XE#886]) +5 other tests fail
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-lnl-6/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-lnl-4/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@a-dp2:
- shard-bmg: NOTRUN -> [FAIL][75] ([Intel XE#2882])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-3/igt@kms_flip@flip-vs-absolute-wf_vblank@a-dp2.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: NOTRUN -> [DMESG-WARN][76] ([Intel XE#2955])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-3/igt@kms_flip@flip-vs-suspend-interruptible.html
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][77] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-434/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@plain-flip-ts-check@a-hdmi-a3:
- shard-bmg: [PASS][78] -> [FAIL][79] ([Intel XE#2882]) +2 other tests fail
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-4/igt@kms_flip@plain-flip-ts-check@a-hdmi-a3.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-6/igt@kms_flip@plain-flip-ts-check@a-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#2293] / [Intel XE#2380])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-7/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][81] ([Intel XE#2293]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-lnl-3/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-default-mode:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#1401]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2311]) +3 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-5/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][85] ([Intel XE#651]) +6 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-lnl-1/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][86] ([Intel XE#2312]) +4 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/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][87] ([Intel XE#651]) +28 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-suspend.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#4141]) +5 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#658]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#1469])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-lnl-1/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#2136]) +2 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#656]) +14 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-lnl-3/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][93] ([Intel XE#2313]) +5 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2136] / [Intel XE#2231])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-slowdraw:
- shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#653]) +29 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-slowdraw.html
* igt@kms_hdmi_inject@inject-audio:
- shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#1470] / [Intel XE#2853])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-lnl-7/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@static-toggle-suspend@pipe-a-dp-2:
- shard-dg2-set2: NOTRUN -> [ABORT][97] ([Intel XE#2625] / [Intel XE#4048])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-432/igt@kms_hdr@static-toggle-suspend@pipe-a-dp-2.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#2927])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-432/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_plane_cursor@overlay:
- shard-dg2-set2: [PASS][99] -> [FAIL][100] ([Intel XE#616]) +1 other test fail
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-432/igt@kms_plane_cursor@overlay.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-432/igt@kms_plane_cursor@overlay.html
* igt@kms_plane_lowres@tiling-x@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#599]) +3 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-lnl-8/igt@kms_plane_lowres@tiling-x@pipe-b-edp-1.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#309]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-lnl-7/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format:
- shard-dg2-set2: [PASS][103] -> [SKIP][104] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-434/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-434/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c:
- shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#2763]) +11 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-lnl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d:
- shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a:
- shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2763]) +7 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b:
- shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#2763]) +8 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-433/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html
* igt@kms_pm_backlight@bad-brightness:
- shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#870])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-463/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [PASS][110] -> [FAIL][111] ([Intel XE#718])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-lnl-7/igt@kms_pm_dc@dc5-psr.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-lnl-7/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@deep-pkgc:
- shard-lnl: NOTRUN -> [FAIL][112] ([Intel XE#2029])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-lnl-1/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#1489]) +1 other test skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-8/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][114] ([Intel XE#1489]) +2 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-433/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][115] ([Intel XE#2893]) +1 other test skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-lnl-8/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#1122])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-436/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-cursor-blt:
- shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#2234] / [Intel XE#2850]) +4 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-6/igt@kms_psr@fbc-pr-cursor-blt.html
* igt@kms_psr@fbc-psr-sprite-render:
- shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#2850] / [Intel XE#929]) +13 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-433/igt@kms_psr@fbc-psr-sprite-render.html
* igt@kms_psr@pr-dpms:
- shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#1406]) +1 other test skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-lnl-1/igt@kms_psr@pr-dpms.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#2939])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-433/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-lnl-5/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#3414]) +2 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-463/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_sequence@get-idle:
- shard-bmg: [PASS][123] -> [SKIP][124] ([Intel XE#3007]) +2 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-8/igt@kms_sequence@get-idle.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-3/igt@kms_sequence@get-idle.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-bmg: [PASS][125] -> [SKIP][126] ([Intel XE#1435])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-8/igt@kms_setmode@clone-exclusive-crtc.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#1435])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-lnl-8/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#330])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-436/igt@kms_tv_load_detect@load-detect.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- shard-lnl: [PASS][129] -> [FAIL][130] ([Intel XE#899])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-lnl-3/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@kms_vrr@flip-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#455]) +13 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-463/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@lobf:
- shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#2168]) +1 other test skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-463/igt@kms_vrr@lobf.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#756])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-5/igt@kms_writeback@writeback-invalid-parameters.html
* igt@testdisplay:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][134] ([Intel XE#2705])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-435/igt@testdisplay.html
* igt@xe_compute_preempt@compute-preempt-many:
- shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-463/igt@xe_compute_preempt@compute-preempt-many.html
* igt@xe_copy_basic@mem-set-linear-0xfffe:
- shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#1126])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0xfffe.html
* igt@xe_eudebug@basic-read-event:
- shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#2905]) +3 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-lnl-6/igt@xe_eudebug@basic-read-event.html
* igt@xe_eudebug@basic-vm-bind-metadata-discovery:
- shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#1130]) +3 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-434/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
* igt@xe_eudebug@basic-vm-bind-ufence:
- shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#2905]) +1 other test skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-5/igt@xe_eudebug@basic-vm-bind-ufence.html
* igt@xe_eudebug_online@debugger-reopen:
- shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#2905]) +5 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-433/igt@xe_eudebug_online@debugger-reopen.html
* igt@xe_eudebug_online@stopped-thread:
- shard-bmg: NOTRUN -> [SKIP][141] ([Intel XE#1130])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-3/igt@xe_eudebug_online@stopped-thread.html
* igt@xe_evict@evict-small-multi-vm:
- shard-bmg: [PASS][142] -> [DMESG-WARN][143] ([Intel XE#1033] / [Intel XE#1473])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-7/igt@xe_evict@evict-small-multi-vm.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-6/igt@xe_evict@evict-small-multi-vm.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind:
- shard-dg2-set2: [PASS][144] -> [SKIP][145] ([Intel XE#1392]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-434/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
- shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#2322]) +3 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-6/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
* igt@xe_exec_basic@multigpu-no-exec-null-defer-bind:
- shard-dg2-set2: [PASS][147] -> [SKIP][148] ([Intel XE#1130]) +12 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-434/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html
* igt@xe_exec_basic@multigpu-once-basic-defer-mmap:
- shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#1392]) +2 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-432/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind:
- shard-lnl: NOTRUN -> [SKIP][150] ([Intel XE#1392]) +2 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-lnl-8/igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind.html
* igt@xe_exec_basic@twice-bindexecqueue-userptr-invalidate-race:
- shard-bmg: [PASS][151] -> [SKIP][152] ([Intel XE#1130]) +13 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-7/igt@xe_exec_basic@twice-bindexecqueue-userptr-invalidate-race.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-3/igt@xe_exec_basic@twice-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@once-bindexecqueue-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][153] ([Intel XE#288]) +21 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-434/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence:
- shard-dg2-set2: NOTRUN -> [SKIP][154] ([Intel XE#2360])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-433/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html
* igt@xe_exec_sip_eudebug@wait-writesip-nodebug@drm_xe_engine_class_render0:
- shard-bmg: [PASS][155] -> [DMESG-WARN][156] ([Intel XE#1033]) +20 other tests dmesg-warn
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-7/igt@xe_exec_sip_eudebug@wait-writesip-nodebug@drm_xe_engine_class_render0.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-6/igt@xe_exec_sip_eudebug@wait-writesip-nodebug@drm_xe_engine_class_render0.html
* igt@xe_live_ktest@xe_bo:
- shard-bmg: [PASS][157] -> [SKIP][158] ([Intel XE#1192])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-8/igt@xe_live_ktest@xe_bo.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-6/igt@xe_live_ktest@xe_bo.html
* igt@xe_mmap@small-bar:
- shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#512])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-lnl-5/igt@xe_mmap@small-bar.html
* igt@xe_module_load@force-load:
- shard-dg2-set2: NOTRUN -> [SKIP][160] ([Intel XE#378])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-434/igt@xe_module_load@force-load.html
* igt@xe_module_load@load:
- shard-bmg: ([PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [PASS][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], [PASS][187], [PASS][188], [SKIP][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]) ([Intel XE#2457])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-3/igt@xe_module_load@load.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@xe_module_load@load.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-1/igt@xe_module_load@load.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-1/igt@xe_module_load@load.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-6/igt@xe_module_load@load.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-8/igt@xe_module_load@load.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-8/igt@xe_module_load@load.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-6/igt@xe_module_load@load.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-6/igt@xe_module_load@load.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-8/igt@xe_module_load@load.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-4/igt@xe_module_load@load.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-4/igt@xe_module_load@load.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-7/igt@xe_module_load@load.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-8/igt@xe_module_load@load.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-8/igt@xe_module_load@load.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-3/igt@xe_module_load@load.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-1/igt@xe_module_load@load.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-1/igt@xe_module_load@load.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-1/igt@xe_module_load@load.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-7/igt@xe_module_load@load.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-7/igt@xe_module_load@load.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@xe_module_load@load.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@xe_module_load@load.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@xe_module_load@load.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-1/igt@xe_module_load@load.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-1/igt@xe_module_load@load.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-1/igt@xe_module_load@load.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-6/igt@xe_module_load@load.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-1/igt@xe_module_load@load.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-6/igt@xe_module_load@load.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-8/igt@xe_module_load@load.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-8/igt@xe_module_load@load.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-8/igt@xe_module_load@load.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-7/igt@xe_module_load@load.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-5/igt@xe_module_load@load.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-5/igt@xe_module_load@load.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-5/igt@xe_module_load@load.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-3/igt@xe_module_load@load.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-3/igt@xe_module_load@load.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-7/igt@xe_module_load@load.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-8/igt@xe_module_load@load.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-6/igt@xe_module_load@load.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-7/igt@xe_module_load@load.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-6/igt@xe_module_load@load.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-6/igt@xe_module_load@load.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-5/igt@xe_module_load@load.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-3/igt@xe_module_load@load.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-3/igt@xe_module_load@load.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-7/igt@xe_module_load@load.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-7/igt@xe_module_load@load.html
- shard-dg2-set2: ([PASS][211], [PASS][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], [PASS][235]) -> ([PASS][236], [PASS][237], [PASS][238], [PASS][239], [PASS][240], [PASS][241], [PASS][242], [PASS][243], [PASS][244], [PASS][245], [PASS][246], [PASS][247], [PASS][248], [PASS][249], [PASS][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254], [SKIP][255], [PASS][256], [PASS][257], [PASS][258], [PASS][259], [PASS][260], [PASS][261]) ([Intel XE#378])
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-436/igt@xe_module_load@load.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-436/igt@xe_module_load@load.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@xe_module_load@load.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-463/igt@xe_module_load@load.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-463/igt@xe_module_load@load.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-463/igt@xe_module_load@load.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@xe_module_load@load.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@xe_module_load@load.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-432/igt@xe_module_load@load.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-432/igt@xe_module_load@load.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-432/igt@xe_module_load@load.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-436/igt@xe_module_load@load.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-435/igt@xe_module_load@load.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-434/igt@xe_module_load@load.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-434/igt@xe_module_load@load.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-435/igt@xe_module_load@load.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-435/igt@xe_module_load@load.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@xe_module_load@load.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-463/igt@xe_module_load@load.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-432/igt@xe_module_load@load.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-434/igt@xe_module_load@load.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@xe_module_load@load.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-434/igt@xe_module_load@load.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-432/igt@xe_module_load@load.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-432/igt@xe_module_load@load.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-436/igt@xe_module_load@load.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-432/igt@xe_module_load@load.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-432/igt@xe_module_load@load.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-463/igt@xe_module_load@load.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-463/igt@xe_module_load@load.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-463/igt@xe_module_load@load.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-436/igt@xe_module_load@load.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-436/igt@xe_module_load@load.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-435/igt@xe_module_load@load.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-432/igt@xe_module_load@load.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-432/igt@xe_module_load@load.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-432/igt@xe_module_load@load.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-434/igt@xe_module_load@load.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-434/igt@xe_module_load@load.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-434/igt@xe_module_load@load.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-434/igt@xe_module_load@load.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-433/igt@xe_module_load@load.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-463/igt@xe_module_load@load.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-435/igt@xe_module_load@load.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-436/igt@xe_module_load@load.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-436/igt@xe_module_load@load.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-433/igt@xe_module_load@load.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-433/igt@xe_module_load@load.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-432/igt@xe_module_load@load.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-432/igt@xe_module_load@load.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-433/igt@xe_module_load@load.html
* igt@xe_oa@missing-sample-flags:
- shard-dg2-set2: NOTRUN -> [SKIP][262] ([Intel XE#2541] / [Intel XE#3573]) +2 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-463/igt@xe_oa@missing-sample-flags.html
* igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p:
- shard-dg2-set2: NOTRUN -> [FAIL][263] ([Intel XE#1173])
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-436/igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p.html
* igt@xe_pm@s2idle-vm-bind-userptr:
- shard-bmg: NOTRUN -> [DMESG-WARN][264] ([Intel XE#1033] / [Intel XE#1616])
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-1/igt@xe_pm@s2idle-vm-bind-userptr.html
* igt@xe_pm@s3-mocs:
- shard-bmg: [PASS][265] -> [DMESG-WARN][266] ([Intel XE#1033] / [Intel XE#569]) +1 other test dmesg-warn
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-7/igt@xe_pm@s3-mocs.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-7/igt@xe_pm@s3-mocs.html
* igt@xe_pm@s3-multiple-execs:
- shard-dg2-set2: NOTRUN -> [ABORT][267] ([Intel XE#1358] / [Intel XE#1794])
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-432/igt@xe_pm@s3-multiple-execs.html
* igt@xe_pm@s3-vm-bind-prefetch:
- shard-lnl: NOTRUN -> [SKIP][268] ([Intel XE#584])
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-lnl-3/igt@xe_pm@s3-vm-bind-prefetch.html
* igt@xe_pm@s3-vm-bind-unbind-all:
- shard-dg2-set2: [PASS][269] -> [ABORT][270] ([Intel XE#1033] / [Intel XE#1358] / [Intel XE#1794]) +1 other test abort
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-463/igt@xe_pm@s3-vm-bind-unbind-all.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-432/igt@xe_pm@s3-vm-bind-unbind-all.html
* igt@xe_pm@s4-d3cold-basic-exec:
- shard-dg2-set2: NOTRUN -> [SKIP][271] ([Intel XE#2284] / [Intel XE#366])
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-432/igt@xe_pm@s4-d3cold-basic-exec.html
* igt@xe_pm@s4-exec-after:
- shard-lnl: [PASS][272] -> [ABORT][273] ([Intel XE#1358] / [Intel XE#1607])
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-lnl-7/igt@xe_pm@s4-exec-after.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-lnl-2/igt@xe_pm@s4-exec-after.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-dg2-set2: [PASS][274] -> [ABORT][275] ([Intel XE#1358] / [Intel XE#1794]) +1 other test abort
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@xe_pm@s4-vm-bind-userptr.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-432/igt@xe_pm@s4-vm-bind-userptr.html
* igt@xe_pm_residency@idle-residency-on-exec@gt0-engine-drm_xe_engine_class_copy:
- shard-dg2-set2: [PASS][276] -> [DMESG-WARN][277] ([Intel XE#1033]) +34 other tests dmesg-warn
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-436/igt@xe_pm_residency@idle-residency-on-exec@gt0-engine-drm_xe_engine_class_copy.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-435/igt@xe_pm_residency@idle-residency-on-exec@gt0-engine-drm_xe_engine_class_copy.html
* igt@xe_query@multigpu-query-gt-list:
- shard-bmg: NOTRUN -> [SKIP][278] ([Intel XE#944])
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-8/igt@xe_query@multigpu-query-gt-list.html
* igt@xe_query@multigpu-query-invalid-size:
- shard-lnl: NOTRUN -> [SKIP][279] ([Intel XE#944]) +1 other test skip
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-lnl-1/igt@xe_query@multigpu-query-invalid-size.html
* igt@xe_query@multigpu-query-oa-units:
- shard-dg2-set2: NOTRUN -> [SKIP][280] ([Intel XE#944]) +2 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-433/igt@xe_query@multigpu-query-oa-units.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-lnl: NOTRUN -> [SKIP][281] ([Intel XE#3342])
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-lnl-8/igt@xe_sriov_flr@flr-vf1-clear.html
#### Possible fixes ####
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-bmg: [FAIL][282] ([Intel XE#827]) -> [PASS][283] +1 other test pass
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_async_flips@alternate-sync-async-flip.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_async_flips@async-flip-with-page-flip-events:
- shard-bmg: [INCOMPLETE][284] -> [PASS][285] +1 other test pass
[284]: 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
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-8/igt@kms_async_flips@async-flip-with-page-flip-events.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic:
- shard-lnl: [FAIL][286] ([Intel XE#3719] / [Intel XE#911]) -> [PASS][287] +3 other tests pass
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html
* igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p:
- shard-dg2-set2: [SKIP][288] ([Intel XE#367]) -> [PASS][289] +4 other tests pass
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-463/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-433/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-bmg: [SKIP][290] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][291]
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [DMESG-WARN][292] -> [PASS][293]
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
* igt@kms_color@ctm-blue-to-red:
- shard-bmg: [SKIP][294] ([Intel XE#3007]) -> [PASS][295] +18 other tests pass
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_color@ctm-blue-to-red.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-3/igt@kms_color@ctm-blue-to-red.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-dg2-set2: [INCOMPLETE][296] ([Intel XE#3226]) -> [PASS][297]
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-435/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-436/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-bmg: [SKIP][298] ([Intel XE#2291]) -> [PASS][299] +1 other test pass
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-1/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-bmg: [SKIP][300] ([Intel XE#2316]) -> [PASS][301]
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-6/igt@kms_flip@2x-dpms-vs-vblank-race.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-7/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3:
- shard-bmg: [FAIL][302] ([Intel XE#3321]) -> [PASS][303]
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html
* igt@kms_flip@absolute-wf_vblank:
- shard-dg2-set2: [DMESG-WARN][304] ([Intel XE#1033]) -> [PASS][305] +53 other tests pass
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-436/igt@kms_flip@absolute-wf_vblank.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-463/igt@kms_flip@absolute-wf_vblank.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@a-edp1:
- shard-lnl: [FAIL][306] ([Intel XE#886]) -> [PASS][307] +2 other tests pass
[306]: 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
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-lnl-6/igt@kms_flip@wf_vblank-ts-check-interruptible@a-edp1.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: [SKIP][308] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][309] +1 other test pass
[308]: 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
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-463/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][310] ([Intel XE#2136]) -> [PASS][311] +4 other tests pass
[310]: 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
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-blt:
- shard-bmg: [SKIP][312] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][313] +1 other test pass
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-blt.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-blt.html
* igt@kms_hdr@static-toggle-dpms:
- shard-dg2-set2: [SKIP][314] ([Intel XE#2423] / [i915#2575]) -> [PASS][315] +16 other tests pass
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@kms_hdr@static-toggle-dpms.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-463/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers:
- shard-bmg: [DMESG-WARN][316] ([Intel XE#1033]) -> [PASS][317] +41 other tests pass
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-7/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-8/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2-set2: [SKIP][318] ([Intel XE#2446]) -> [PASS][319]
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@kms_pm_rpm@modeset-non-lpsp.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-463/igt@kms_pm_rpm@modeset-non-lpsp.html
- shard-bmg: [SKIP][320] ([Intel XE#2446]) -> [PASS][321]
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_pm_rpm@modeset-non-lpsp.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-7/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@xe_evict@evict-large-multi-vm:
- shard-dg2-set2: [DMESG-WARN][322] ([Intel XE#1033] / [Intel XE#1473]) -> [PASS][323]
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@xe_evict@evict-large-multi-vm.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-432/igt@xe_evict@evict-large-multi-vm.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate:
- shard-dg2-set2: [SKIP][324] ([Intel XE#1392]) -> [PASS][325] +2 other tests pass
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-436/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html
* igt@xe_pm@s2idle-basic-exec:
- shard-dg2-set2: [ABORT][326] ([Intel XE#1358]) -> [PASS][327]
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-432/igt@xe_pm@s2idle-basic-exec.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-433/igt@xe_pm@s2idle-basic-exec.html
* igt@xe_pm@s3-vm-bind-prefetch:
- shard-bmg: [DMESG-WARN][328] ([Intel XE#1033] / [Intel XE#569]) -> [PASS][329] +3 other tests pass
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-6/igt@xe_pm@s3-vm-bind-prefetch.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-3/igt@xe_pm@s3-vm-bind-prefetch.html
- shard-dg2-set2: [DMESG-WARN][330] ([Intel XE#1033] / [Intel XE#569]) -> [PASS][331] +2 other tests pass
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-463/igt@xe_pm@s3-vm-bind-prefetch.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-434/igt@xe_pm@s3-vm-bind-prefetch.html
* igt@xe_pm@s3-vm-bind-userptr:
- shard-dg2-set2: [ABORT][332] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][333]
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-432/igt@xe_pm@s3-vm-bind-userptr.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-463/igt@xe_pm@s3-vm-bind-userptr.html
* igt@xe_spin_batch@spin-all:
- shard-bmg: [SKIP][334] ([Intel XE#1130]) -> [PASS][335] +42 other tests pass
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@xe_spin_batch@spin-all.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-1/igt@xe_spin_batch@spin-all.html
* igt@xe_vm@large-binds-2147483648:
- shard-dg2-set2: [SKIP][336] ([Intel XE#1130]) -> [PASS][337] +27 other tests pass
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@xe_vm@large-binds-2147483648.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-435/igt@xe_vm@large-binds-2147483648.html
#### Warnings ####
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-bmg: [SKIP][338] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][339] ([Intel XE#2327]) +1 other test skip
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-7/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
- shard-dg2-set2: [SKIP][340] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][341] ([Intel XE#316])
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-463/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-bmg: [SKIP][342] ([Intel XE#2327]) -> [SKIP][343] ([Intel XE#2136] / [Intel XE#2231])
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-1/igt@kms_big_fb@linear-64bpp-rotate-90.html
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-3/igt@kms_big_fb@linear-64bpp-rotate-90.html
- shard-dg2-set2: [SKIP][344] ([Intel XE#316]) -> [SKIP][345] ([Intel XE#2136])
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-434/igt@kms_big_fb@linear-64bpp-rotate-90.html
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-434/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-dg2-set2: [SKIP][346] ([Intel XE#2136]) -> [SKIP][347] ([Intel XE#316])
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-434/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-bmg: [SKIP][348] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][349] ([Intel XE#1124]) +2 other tests skip
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-8/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
- shard-dg2-set2: [SKIP][350] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][351] ([Intel XE#1124])
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-433/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][352] ([Intel XE#2136]) -> [SKIP][353] ([Intel XE#1124])
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-463/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
* igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
- shard-bmg: [SKIP][354] ([Intel XE#3007]) -> [SKIP][355] ([Intel XE#2314] / [Intel XE#2894])
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-6/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-1-displays-2560x1440p:
- shard-bmg: [SKIP][356] ([Intel XE#3007]) -> [SKIP][357] ([Intel XE#367])
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-7/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
- shard-dg2-set2: [SKIP][358] ([Intel XE#2423] / [i915#2575]) -> [SKIP][359] ([Intel XE#367])
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-434/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs:
- shard-bmg: [SKIP][360] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][361] ([Intel XE#2887]) +3 other tests skip
[360]: 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
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-3/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html
- shard-dg2-set2: [SKIP][362] ([Intel XE#2136]) -> [SKIP][363] ([Intel XE#455] / [Intel XE#787])
[362]: 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
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-434/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc:
- shard-dg2-set2: [SKIP][364] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][365] ([Intel XE#2136])
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-432/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc.html
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-434/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs:
- shard-dg2-set2: [SKIP][366] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][367] ([Intel XE#455] / [Intel XE#787])
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs.html
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-433/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: [DMESG-WARN][368] ([Intel XE#1033]) -> [INCOMPLETE][369] ([Intel XE#3862]) +1 other test incomplete
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: [SKIP][370] ([Intel XE#2887]) -> [SKIP][371] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_cdclk@plane-scaling:
- shard-bmg: [SKIP][372] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][373] ([Intel XE#2724])
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_cdclk@plane-scaling.html
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-5/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-4k:
- shard-bmg: [SKIP][374] ([Intel XE#3007]) -> [SKIP][375] ([Intel XE#2252]) +1 other test skip
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-7/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-dg2-set2: [SKIP][376] ([Intel XE#373]) -> [SKIP][377] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-434/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-434/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
- shard-bmg: [SKIP][378] ([Intel XE#2252]) -> [SKIP][379] ([Intel XE#3007]) +1 other test skip
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-1/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-3/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-dg2-set2: [SKIP][380] ([Intel XE#2423] / [i915#2575]) -> [SKIP][381] ([Intel XE#373])
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@kms_chamelium_hpd@vga-hpd.html
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-463/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_content_protection@atomic:
- shard-bmg: [FAIL][382] ([Intel XE#1178]) -> [SKIP][383] ([Intel XE#2341])
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-8/igt@kms_content_protection@atomic.html
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-6/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-2:
- shard-bmg: [INCOMPLETE][384] -> [FAIL][385] ([Intel XE#1178]) +1 other test fail
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-8/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html
* igt@kms_content_protection@legacy:
- shard-bmg: [DMESG-FAIL][386] ([Intel XE#877]) -> [SKIP][387] ([Intel XE#2341])
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-7/igt@kms_content_protection@legacy.html
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-6/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-0:
- shard-bmg: [SKIP][388] ([Intel XE#2341]) -> [FAIL][389] ([Intel XE#1178])
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-6/igt@kms_content_protection@lic-type-0.html
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-1/igt@kms_content_protection@lic-type-0.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-bmg: [SKIP][390] ([Intel XE#3007]) -> [SKIP][391] ([Intel XE#2320]) +1 other test skip
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_cursor_crc@cursor-sliding-256x85.html
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions:
- shard-bmg: [DMESG-WARN][392] ([Intel XE#1033]) -> [DMESG-WARN][393] ([Intel XE#4044])
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-1/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions.html
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-3/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-bmg: [DMESG-WARN][394] ([Intel XE#877]) -> [DMESG-WARN][395] ([Intel XE#1033] / [Intel XE#877])
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [DMESG-WARN][396] ([Intel XE#1033]) -> [SKIP][397] ([Intel XE#2291])
[396]: 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
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_feature_discovery@psr1:
- shard-bmg: [SKIP][398] ([Intel XE#3007]) -> [SKIP][399] ([Intel XE#2374])
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_feature_discovery@psr1.html
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-5/igt@kms_feature_discovery@psr1.html
- shard-dg2-set2: [SKIP][400] ([Intel XE#2423] / [i915#2575]) -> [SKIP][401] ([Intel XE#1135])
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@kms_feature_discovery@psr1.html
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-434/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-bmg: [SKIP][402] ([Intel XE#3007]) -> [SKIP][403] ([Intel XE#2316])
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_flip@2x-wf_vblank-ts-check.html
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-dg2-set2: [SKIP][404] ([Intel XE#2136]) -> [SKIP][405] ([Intel XE#455])
[404]: 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
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
- shard-bmg: [SKIP][406] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][407] ([Intel XE#2293] / [Intel XE#2380])
[406]: 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
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/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][408] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][409] ([Intel XE#2311]) +6 other tests skip
[408]: 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
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][410] ([Intel XE#2312]) -> [SKIP][411] ([Intel XE#2311]) +13 other tests skip
[410]: 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
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-onoff:
- shard-dg2-set2: [SKIP][412] ([Intel XE#2136]) -> [SKIP][413] ([Intel XE#651]) +3 other tests skip
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-onoff.html
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][414] ([Intel XE#2312]) -> [SKIP][415] ([Intel XE#4141]) +7 other tests skip
[414]: 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
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-1/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][416] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][417] ([Intel XE#4141]) +1 other test skip
[416]: 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
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][418] ([Intel XE#4141]) -> [SKIP][419] ([Intel XE#2312]) +6 other tests skip
[418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
[419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-msflip-blt:
- shard-bmg: [SKIP][420] ([Intel XE#2311]) -> [SKIP][421] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip
[420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-msflip-blt.html
[421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-msflip-blt.html
- shard-dg2-set2: [SKIP][422] ([Intel XE#651]) -> [SKIP][423] ([Intel XE#2136])
[422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-msflip-blt.html
[423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][424] ([Intel XE#2311]) -> [SKIP][425] ([Intel XE#2312]) +19 other tests skip
[424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt:
- shard-dg2-set2: [SKIP][426] ([Intel XE#653]) -> [SKIP][427] ([Intel XE#2136]) +1 other test skip
[426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html
[427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html
- shard-bmg: [SKIP][428] ([Intel XE#2313]) -> [SKIP][429] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip
[428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html
[429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff:
- shard-bmg: [SKIP][430] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][431] ([Intel XE#2312])
[430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html
[431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][432] ([Intel XE#2312]) -> [SKIP][433] ([Intel XE#2313]) +6 other tests skip
[432]: 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
[433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][434] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][435] ([Intel XE#653])
[434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
[435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][436] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][437] ([Intel XE#2313]) +5 other tests skip
[436]: 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
[437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-5/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][438] ([Intel XE#2136]) -> [SKIP][439] ([Intel XE#653]) +2 other tests skip
[438]: 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
[439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][440] ([Intel XE#2313]) -> [SKIP][441] ([Intel XE#2312]) +12 other tests skip
[440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_hdr@bpc-switch:
- shard-dg2-set2: [SKIP][442] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][443] ([Intel XE#1033]) +1 other test dmesg-warn
[442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@kms_hdr@bpc-switch.html
[443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-434/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2-set2: [DMESG-WARN][444] ([Intel XE#1033]) -> [ABORT][445] ([Intel XE#2625])
[444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-434/igt@kms_hdr@static-toggle-suspend.html
[445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-432/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-bmg: [SKIP][446] ([Intel XE#3007]) -> [SKIP][447] ([Intel XE#2763]) +1 other test skip
[446]: 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
[447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
- shard-dg2-set2: [SKIP][448] ([Intel XE#2423] / [i915#2575]) -> [SKIP][449] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip
[448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
[449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-433/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][450] ([Intel XE#2136]) -> [SKIP][451] ([Intel XE#1489]) +1 other test skip
[450]: 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
[451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-bmg: [SKIP][452] ([Intel XE#1489]) -> [SKIP][453] ([Intel XE#2136] / [Intel XE#2231])
[452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
[453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
- shard-dg2-set2: [SKIP][454] ([Intel XE#1489]) -> [SKIP][455] ([Intel XE#2136])
[454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-432/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
[455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-434/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-update-sf:
- shard-bmg: [SKIP][456] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][457] ([Intel XE#1489]) +2 other tests skip
[456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html
[457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-1/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html
* igt@kms_psr@fbc-pr-sprite-blt:
- shard-bmg: [SKIP][458] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][459] ([Intel XE#2234] / [Intel XE#2850]) +3 other tests skip
[458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@kms_psr@fbc-pr-sprite-blt.html
[459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-5/igt@kms_psr@fbc-pr-sprite-blt.html
* igt@kms_psr@psr-primary-render:
- shard-dg2-set2: [SKIP][460] ([Intel XE#2136]) -> [SKIP][461] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip
[460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@kms_psr@psr-primary-render.html
[461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-436/igt@kms_psr@psr-primary-render.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-bmg: [SKIP][462] ([Intel XE#3007]) -> [SKIP][463] ([Intel XE#2330])
[462]: 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
[463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-dg2-set2: [SKIP][464] ([Intel XE#2423] / [i915#2575]) -> [SKIP][465] ([Intel XE#1127])
[464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@xe_eudebug@basic-vm-bind-metadata-discovery:
- shard-bmg: [SKIP][466] ([Intel XE#2905]) -> [SKIP][467] ([Intel XE#1130])
[466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-7/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
[467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-3/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
* igt@xe_eudebug_online@single-step-one:
- shard-bmg: [SKIP][468] ([Intel XE#1130]) -> [SKIP][469] ([Intel XE#2905]) +3 other tests skip
[468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@xe_eudebug_online@single-step-one.html
[469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-5/igt@xe_eudebug_online@single-step-one.html
* igt@xe_exec_basic@multigpu-no-exec-null:
- shard-bmg: [SKIP][470] ([Intel XE#1130]) -> [SKIP][471] ([Intel XE#2322]) +1 other test skip
[470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-5/igt@xe_exec_basic@multigpu-no-exec-null.html
[471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-8/igt@xe_exec_basic@multigpu-no-exec-null.html
- shard-dg2-set2: [SKIP][472] ([Intel XE#1130]) -> [SKIP][473] ([Intel XE#1392])
[472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@xe_exec_basic@multigpu-no-exec-null.html
[473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-null.html
* igt@xe_exec_basic@multigpu-no-exec-null-defer-bind:
- shard-bmg: [SKIP][474] ([Intel XE#2322]) -> [SKIP][475] ([Intel XE#1130])
[474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-8/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html
[475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-3/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html
* igt@xe_exec_fault_mode@once-userptr-invalidate-race:
- shard-dg2-set2: [SKIP][476] ([Intel XE#1130]) -> [SKIP][477] ([Intel XE#288]) +5 other tests skip
[476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@xe_exec_fault_mode@once-userptr-invalidate-race.html
[477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-432/igt@xe_exec_fault_mode@once-userptr-invalidate-race.html
* igt@xe_exec_sip_eudebug@breakpoint-waitsip:
- shard-dg2-set2: [SKIP][478] ([Intel XE#1130]) -> [SKIP][479] ([Intel XE#2905]) +3 other tests skip
[478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@xe_exec_sip_eudebug@breakpoint-waitsip.html
[479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-434/igt@xe_exec_sip_eudebug@breakpoint-waitsip.html
* igt@xe_live_ktest@xe_eudebug:
- shard-dg2-set2: [SKIP][480] ([Intel XE#455]) -> [SKIP][481] ([Intel XE#1192])
[480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-435/igt@xe_live_ktest@xe_eudebug.html
[481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-435/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_oa@closed-fd-and-unmapped-access:
- shard-dg2-set2: [SKIP][482] ([Intel XE#1130]) -> [SKIP][483] ([Intel XE#2541] / [Intel XE#3573])
[482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@xe_oa@closed-fd-and-unmapped-access.html
[483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-435/igt@xe_oa@closed-fd-and-unmapped-access.html
* igt@xe_peer2peer@write:
- shard-dg2-set2: [SKIP][484] ([Intel XE#1061]) -> [FAIL][485] ([Intel XE#1173])
[484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-432/igt@xe_peer2peer@write.html
[485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-436/igt@xe_peer2peer@write.html
* igt@xe_pm@s3-basic-exec:
- shard-dg2-set2: [ABORT][486] ([Intel XE#1033] / [Intel XE#1358]) -> [DMESG-WARN][487] ([Intel XE#1033] / [Intel XE#569])
[486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-432/igt@xe_pm@s3-basic-exec.html
[487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-463/igt@xe_pm@s3-basic-exec.html
* igt@xe_query@multigpu-query-cs-cycles:
- shard-bmg: [SKIP][488] ([Intel XE#944]) -> [SKIP][489] ([Intel XE#1130])
[488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-bmg-8/igt@xe_query@multigpu-query-cs-cycles.html
[489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-bmg-3/igt@xe_query@multigpu-query-cs-cycles.html
- shard-dg2-set2: [SKIP][490] ([Intel XE#944]) -> [SKIP][491] ([Intel XE#1130])
[490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8207/shard-dg2-433/igt@xe_query@multigpu-query-cs-cycles.html
[491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12483/shard-dg2-434/igt@xe_query@multigpu-query-cs-cycles.html
[Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#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#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#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#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[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#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#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[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#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#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[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#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#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[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#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[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#3719]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3719
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[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#4044]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4044
[Intel XE#4048]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4048
[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#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#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#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
[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_12483
* Linux: xe-2534-db7cf8d52a41001ea2780cf834fed3dc490343d2 -> xe-2536-33906a7032dfca356fd7309e6abbdf5a7ea97db4
IGTPW_12483: 6e8cdd5021761a6d09bb290f783713fd86867c02 @ 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_12483/index.html
[-- Attachment #2: Type: text/html, Size: 134826 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ i915.CI.Full: failure for tests/intel/perf_pmu: Drop cpu-hotplug subtest
2025-01-23 5:30 [PATCH i-g-t] tests/intel/perf_pmu: Drop cpu-hotplug subtest Lucas De Marchi
` (5 preceding siblings ...)
2025-01-23 20:15 ` ✗ Xe.CI.Full: failure for " Patchwork
@ 2025-01-24 2:02 ` Patchwork
2025-01-27 8:53 ` [PATCH i-g-t] " Tvrtko Ursulin
7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2025-01-24 2:02 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100266 bytes --]
== Series Details ==
Series: tests/intel/perf_pmu: Drop cpu-hotplug subtest
URL : https://patchwork.freedesktop.org/series/143874/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_16005_full -> IGTPW_12483_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12483_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12483_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_12483/index.html
Participating hosts (11 -> 11)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12483_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-7/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-random-256x85:
- shard-tglu: [PASS][2] -> [FAIL][3] +1 other test fail
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-tglu-10/igt@kms_cursor_crc@cursor-random-256x85.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-2/igt@kms_cursor_crc@cursor-random-256x85.html
* igt@kms_flip@flip-vs-modeset-vs-hang:
- shard-snb: NOTRUN -> [INCOMPLETE][4] +1 other test incomplete
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-snb2/igt@kms_flip@flip-vs-modeset-vs-hang.html
* igt@kms_pm_rpm@modeset-pc8-residency-stress:
- shard-rkl: NOTRUN -> [SKIP][5]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-3/igt@kms_pm_rpm@modeset-pc8-residency-stress.html
* igt@testdisplay:
- shard-dg2: [PASS][6] -> [TIMEOUT][7]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-dg2-4/igt@testdisplay.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-10/igt@testdisplay.html
Known issues
------------
Here are the changes found in IGTPW_12483_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-dg1: NOTRUN -> [SKIP][8] ([i915#8411]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-13/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-rkl: NOTRUN -> [SKIP][9] ([i915#8411])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-3/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@drm_fdinfo@busy-hang@bcs0:
- shard-dg2: NOTRUN -> [SKIP][10] ([i915#8414]) +9 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-7/igt@drm_fdinfo@busy-hang@bcs0.html
- shard-dg1: NOTRUN -> [SKIP][11] ([i915#8414]) +6 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-13/igt@drm_fdinfo@busy-hang@bcs0.html
* igt@drm_fdinfo@busy-hang@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][12] ([i915#8414]) +6 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-8/igt@drm_fdinfo@busy-hang@rcs0.html
* igt@drm_mm@drm_mm:
- shard-rkl: [PASS][13] -> [DMESG-WARN][14] ([i915#12964]) +50 other tests dmesg-warn
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-rkl-3/igt@drm_mm@drm_mm.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-3/igt@drm_mm@drm_mm.html
* igt@gem_basic@multigpu-create-close:
- shard-dg1: NOTRUN -> [SKIP][15] ([i915#7697])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-18/igt@gem_basic@multigpu-create-close.html
* igt@gem_busy@semaphore:
- shard-dg1: NOTRUN -> [SKIP][16] ([i915#3936])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-14/igt@gem_busy@semaphore.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-tglu-1: NOTRUN -> [SKIP][17] ([i915#9323])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-1/igt@gem_ccs@block-multicopy-compressed.html
- shard-mtlp: NOTRUN -> [SKIP][18] ([i915#9323])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-2/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-rkl: NOTRUN -> [SKIP][19] ([i915#3555] / [i915#9323]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-5/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-dg1: NOTRUN -> [SKIP][20] ([i915#3555] / [i915#9323])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-12/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-rkl: NOTRUN -> [SKIP][21] ([i915#9323])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@large-ctrl-surf-copy:
- shard-rkl: NOTRUN -> [SKIP][22] ([i915#13008])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-4/igt@gem_ccs@large-ctrl-surf-copy.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-tglu: NOTRUN -> [SKIP][23] ([i915#7697])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-4/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-mtlp: NOTRUN -> [SKIP][24] ([i915#6335])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-1/igt@gem_create@create-ext-cpu-access-big.html
- shard-dg2: NOTRUN -> [ABORT][25] ([i915#13427])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-2/igt@gem_create@create-ext-cpu-access-big.html
- shard-rkl: NOTRUN -> [SKIP][26] ([i915#6335])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-3/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_isolation@preservation-s3@rcs0:
- shard-glk: NOTRUN -> [INCOMPLETE][27] ([i915#12353]) +1 other test incomplete
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-glk6/igt@gem_ctx_isolation@preservation-s3@rcs0.html
* igt@gem_ctx_persistence@hang:
- shard-mtlp: NOTRUN -> [SKIP][28] ([i915#8555])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-8/igt@gem_ctx_persistence@hang.html
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#8555])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-10/igt@gem_ctx_persistence@hang.html
- shard-dg1: NOTRUN -> [SKIP][30] ([i915#8555])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-17/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_persistence@smoketest:
- shard-snb: NOTRUN -> [SKIP][31] ([i915#1099]) +2 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-snb5/igt@gem_ctx_persistence@smoketest.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-rkl: NOTRUN -> [SKIP][32] ([i915#280])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-4/igt@gem_ctx_sseu@invalid-sseu.html
- shard-dg1: NOTRUN -> [SKIP][33] ([i915#280])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-18/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@in-flight-contexts-10ms:
- shard-mtlp: [PASS][34] -> [ABORT][35] ([i915#13193])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-mtlp-4/igt@gem_eio@in-flight-contexts-10ms.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-7/igt@gem_eio@in-flight-contexts-10ms.html
* igt@gem_exec_balancer@bonded-semaphore:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#4812])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-7/igt@gem_exec_balancer@bonded-semaphore.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#4771]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-4/igt@gem_exec_balancer@bonded-sync.html
- shard-dg1: NOTRUN -> [SKIP][38] ([i915#4771])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-18/igt@gem_exec_balancer@bonded-sync.html
- shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4771])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-7/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@full:
- shard-dg1: [PASS][40] -> [FAIL][41] ([i915#13364])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-dg1-12/igt@gem_exec_balancer@full.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-12/igt@gem_exec_balancer@full.html
- shard-mtlp: [PASS][42] -> [FAIL][43] ([i915#13364])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-mtlp-4/igt@gem_exec_balancer@full.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-6/igt@gem_exec_balancer@full.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: NOTRUN -> [SKIP][44] ([i915#4525]) +3 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-7/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_balancer@parallel-dmabuf-import-out-fence:
- shard-tglu-1: NOTRUN -> [SKIP][45] ([i915#4525])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-1/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html
* igt@gem_exec_capture@capture-invisible:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#6334]) +2 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-10/igt@gem_exec_capture@capture-invisible.html
- shard-rkl: NOTRUN -> [SKIP][47] ([i915#6334]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-1/igt@gem_exec_capture@capture-invisible.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-dg1: NOTRUN -> [SKIP][48] ([i915#3539] / [i915#4852]) +3 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-17/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_flush@basic-uc-set-default:
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#3539])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-7/igt@gem_exec_flush@basic-uc-set-default.html
* igt@gem_exec_reloc@basic-cpu-read:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#3281]) +7 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-7/igt@gem_exec_reloc@basic-cpu-read.html
* igt@gem_exec_reloc@basic-gtt-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][51] ([i915#3281]) +11 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-read-noreloc.html
* igt@gem_exec_reloc@basic-range:
- shard-mtlp: NOTRUN -> [SKIP][52] ([i915#3281]) +3 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-4/igt@gem_exec_reloc@basic-range.html
* igt@gem_exec_reloc@basic-wc-read:
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#3281]) +9 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-17/igt@gem_exec_reloc@basic-wc-read.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#4812]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-18/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#4537] / [i915#4812])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-3/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: NOTRUN -> [SKIP][56] ([i915#7276])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-4/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-rkl: NOTRUN -> [ABORT][57] ([i915#7975] / [i915#8213]) +1 other test abort
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/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]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-17/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_12483/shard-dg2-3/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_huc_copy@huc-copy:
- shard-glk: NOTRUN -> [SKIP][60] ([i915#2190])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-glk3/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-tglu: NOTRUN -> [SKIP][61] ([i915#4613] / [i915#7582])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-5/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#4613]) +4 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-5/igt@gem_lmem_swapping@heavy-verify-random.html
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4613])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-3/igt@gem_lmem_swapping@heavy-verify-random.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-tglu: NOTRUN -> [SKIP][64] ([i915#4613]) +2 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-3/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@random:
- shard-tglu-1: NOTRUN -> [SKIP][65] ([i915#4613])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-1/igt@gem_lmem_swapping@random.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-dg1: NOTRUN -> [SKIP][66] ([i915#12193])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-13/igt@gem_lmem_swapping@verify-random-ccs.html
- shard-glk: NOTRUN -> [SKIP][67] ([i915#4613]) +5 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-glk5/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_lmem_swapping@verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#4565])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-13/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html
* igt@gem_media_fill@media-fill:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#8289])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-2/igt@gem_media_fill@media-fill.html
* igt@gem_mmap_gtt@big-bo-tiledx:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#4077]) +6 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-3/igt@gem_mmap_gtt@big-bo-tiledx.html
* igt@gem_mmap_gtt@cpuset-basic-small-copy-odd:
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#4077]) +13 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-12/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html
* igt@gem_mmap_gtt@cpuset-medium-copy-odd:
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4077]) +5 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-5/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html
* igt@gem_mmap_wc@bad-size:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#4083]) +3 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-10/igt@gem_mmap_wc@bad-size.html
* igt@gem_mmap_wc@close:
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#4083])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-17/igt@gem_mmap_wc@close.html
* igt@gem_mmap_wc@write-gtt-read-wc:
- shard-mtlp: NOTRUN -> [SKIP][75] ([i915#4083]) +2 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-1/igt@gem_mmap_wc@write-gtt-read-wc.html
* igt@gem_partial_pwrite_pread@reads:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#3282]) +3 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-6/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_pwrite@basic-exhaustion:
- shard-rkl: NOTRUN -> [SKIP][77] ([i915#3282]) +6 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-1/igt@gem_pwrite@basic-exhaustion.html
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#3282]) +7 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-14/igt@gem_pwrite@basic-exhaustion.html
- shard-snb: NOTRUN -> [WARN][79] ([i915#2658])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-snb5/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@display-protected-crc:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#4270]) +3 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-7/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-rkl: NOTRUN -> [TIMEOUT][81] ([i915#12964]) +1 other test timeout
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-5/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-rkl: NOTRUN -> [TIMEOUT][82] ([i915#12917] / [i915#12964]) +1 other test timeout
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-7/igt@gem_pxp@hw-rejects-pxp-buffer.html
- shard-tglu: NOTRUN -> [SKIP][83] ([i915#13398])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-4/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_12483/shard-mtlp-7/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-dg1: NOTRUN -> [SKIP][85] ([i915#4270]) +2 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-17/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_readwrite@new-obj:
- shard-mtlp: NOTRUN -> [SKIP][86] ([i915#3282]) +4 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-1/igt@gem_readwrite@new-obj.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][87] ([i915#8428]) +4 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-4/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#5190] / [i915#8428]) +5 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-2/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html
* igt@gem_set_tiling_vs_gtt:
- shard-dg1: NOTRUN -> [SKIP][89] ([i915#4079]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-13/igt@gem_set_tiling_vs_gtt.html
- shard-mtlp: NOTRUN -> [SKIP][90] ([i915#4079])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-8/igt@gem_set_tiling_vs_gtt.html
- shard-dg2: NOTRUN -> [SKIP][91] ([i915#4079])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-7/igt@gem_set_tiling_vs_gtt.html
* igt@gem_tiled_swapping@non-threaded:
- shard-tglu: [PASS][92] -> [FAIL][93] ([i915#13557])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-tglu-3/igt@gem_tiled_swapping@non-threaded.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-8/igt@gem_tiled_swapping@non-threaded.html
* igt@gem_userptr_blits@access-control:
- shard-mtlp: NOTRUN -> [SKIP][94] ([i915#3297])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-4/igt@gem_userptr_blits@access-control.html
- shard-rkl: NOTRUN -> [SKIP][95] ([i915#3297])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-7/igt@gem_userptr_blits@access-control.html
- shard-tglu: NOTRUN -> [SKIP][96] ([i915#3297])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-6/igt@gem_userptr_blits@access-control.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#3297]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-8/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-glk: NOTRUN -> [SKIP][98] ([i915#3323])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-glk8/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-dg2: NOTRUN -> [SKIP][99] ([i915#3282] / [i915#3297])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-5/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-dg1: NOTRUN -> [SKIP][100] ([i915#3297]) +2 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-17/igt@gem_userptr_blits@readonly-unsync.html
* igt@gem_userptr_blits@relocations:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#3281] / [i915#3297])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-5/igt@gem_userptr_blits@relocations.html
- shard-rkl: NOTRUN -> [SKIP][102] ([i915#3281] / [i915#3297])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-5/igt@gem_userptr_blits@relocations.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg1: NOTRUN -> [SKIP][103] ([i915#3297] / [i915#4958])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-13/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-tglu-1: NOTRUN -> [SKIP][104] ([i915#3297])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-1/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_workarounds@suspend-resume-context:
- shard-glk: NOTRUN -> [INCOMPLETE][105] ([i915#13356])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-glk7/igt@gem_workarounds@suspend-resume-context.html
* igt@gen7_exec_parse@chained-batch:
- shard-rkl: NOTRUN -> [SKIP][106] +18 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-7/igt@gen7_exec_parse@chained-batch.html
* igt@gen9_exec_parse@bb-oversize:
- shard-rkl: NOTRUN -> [SKIP][107] ([i915#2527]) +5 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-7/igt@gen9_exec_parse@bb-oversize.html
- shard-mtlp: NOTRUN -> [SKIP][108] ([i915#2856]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-7/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-secure:
- shard-dg1: NOTRUN -> [SKIP][109] ([i915#2527]) +4 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-13/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@bb-start-far:
- shard-dg2: NOTRUN -> [SKIP][110] ([i915#2856]) +2 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-1/igt@gen9_exec_parse@bb-start-far.html
* igt@gen9_exec_parse@unaligned-access:
- shard-tglu-1: NOTRUN -> [SKIP][111] ([i915#2527] / [i915#2856]) +2 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-1/igt@gen9_exec_parse@unaligned-access.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-tglu: NOTRUN -> [SKIP][112] ([i915#2527] / [i915#2856]) +4 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-3/igt@gen9_exec_parse@unaligned-jump.html
* igt@i915_fb_tiling:
- shard-mtlp: NOTRUN -> [SKIP][113] ([i915#4881])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-3/igt@i915_fb_tiling.html
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#4881])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-8/igt@i915_fb_tiling.html
- shard-dg1: NOTRUN -> [SKIP][115] ([i915#4881])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-13/igt@i915_fb_tiling.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu-1: NOTRUN -> [ABORT][116] ([i915#10887] / [i915#12817] / [i915#9820])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-1/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg1: NOTRUN -> [ABORT][117] ([i915#13493] / [i915#9820])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-14/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-reset:
- shard-tglu: NOTRUN -> [SKIP][118] ([i915#8399])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-9/igt@i915_pm_freq_api@freq-reset.html
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#8399])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-5/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-tglu-1: NOTRUN -> [SKIP][120] ([i915#8399])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-1/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-rkl: NOTRUN -> [SKIP][121] ([i915#6590]) +1 other test skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-4/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-rkl: [PASS][122] -> [FAIL][123] ([i915#12942]) +1 other test fail
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-rkl-4/igt@i915_pm_rc6_residency@rc6-accuracy.html
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-3/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- shard-tglu-1: NOTRUN -> [WARN][124] ([i915#2681]) +4 other tests warn
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@i915_pm_rps@basic-api:
- shard-dg1: NOTRUN -> [SKIP][125] ([i915#11681] / [i915#6621])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-17/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-mtlp: NOTRUN -> [SKIP][126] ([i915#11681] / [i915#6621])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-4/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_sseu@full-enable:
- shard-dg1: NOTRUN -> [SKIP][127] ([i915#4387])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-18/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@hwconfig_table:
- shard-rkl: NOTRUN -> [SKIP][128] ([i915#6245])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-1/igt@i915_query@hwconfig_table.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-mtlp: NOTRUN -> [SKIP][129] ([i915#6188])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-4/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_selftest@live:
- shard-rkl: [PASS][130] -> [DMESG-FAIL][131] ([i915#12964] / [i915#13550])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-rkl-1/igt@i915_selftest@live.html
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-3/igt@i915_selftest@live.html
* igt@i915_selftest@live@gt_pm:
- shard-rkl: [PASS][132] -> [DMESG-FAIL][133] ([i915#13550])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-rkl-1/igt@i915_selftest@live@gt_pm.html
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-3/igt@i915_selftest@live@gt_pm.html
* igt@i915_selftest@mock:
- shard-glk: NOTRUN -> [DMESG-WARN][134] ([i915#9311]) +1 other test dmesg-warn
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-glk2/igt@i915_selftest@mock.html
* igt@i915_suspend@sysfs-reader:
- shard-glk: [PASS][135] -> [INCOMPLETE][136] ([i915#4817]) +1 other test incomplete
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-glk4/igt@i915_suspend@sysfs-reader.html
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-glk5/igt@i915_suspend@sysfs-reader.html
* igt@intel_hwmon@hwmon-write:
- shard-rkl: NOTRUN -> [SKIP][137] ([i915#7707])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-1/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-mtlp: NOTRUN -> [SKIP][138] ([i915#4212])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-1/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg1: NOTRUN -> [SKIP][139] ([i915#4212]) +1 other test skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-13/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-2-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][140] ([i915#8709]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-5/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-2-y-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_12483/shard-tglu-9/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-rkl: NOTRUN -> [SKIP][142] ([i915#1769] / [i915#3555])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-tglu: NOTRUN -> [SKIP][143] ([i915#1769] / [i915#3555])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][144] -> [FAIL][145] ([i915#11808]) +1 other test fail
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-tglu-4/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-6/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-180:
- shard-tglu-1: NOTRUN -> [SKIP][146] ([i915#5286]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/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][147] ([i915#5286]) +8 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-4/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][148] ([i915#5286]) +6 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-9/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][149] ([i915#4538] / [i915#5286]) +6 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-13/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][150] ([i915#3638]) +4 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-1/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][151] ([i915#3638]) +7 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-17/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][152] ([i915#4538] / [i915#5190]) +7 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-6/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][153] ([i915#4538]) +3 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-12/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#5190])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-5/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][155] ([i915#6095]) +59 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-5/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#10307] / [i915#6095]) +152 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-5/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][157] ([i915#12313])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][158] ([i915#12313]) +2 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-18/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][159] ([i915#6095]) +59 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-b-dp-4:
- shard-dg2: NOTRUN -> [SKIP][160] ([i915#6095]) +16 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-10/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-b-dp-4.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: [PASS][161] -> [INCOMPLETE][162] ([i915#12796])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-glk7/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-glk4/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][163] ([i915#6095]) +34 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][164] ([i915#12313])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-9/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][165] ([i915#12313]) +2 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/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-rc-ccs@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][166] ([i915#6095]) +121 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-18/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-4.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#6095]) +97 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-5/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#3742])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-7/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#7213]) +3 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-7/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_cdclk@plane-scaling:
- shard-tglu-1: NOTRUN -> [SKIP][171] ([i915#3742])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-1/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-d-dp-4:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#4087]) +3 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-10/igt@kms_cdclk@plane-scaling@pipe-d-dp-4.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-4k:
- shard-dg1: NOTRUN -> [SKIP][173] ([i915#11151] / [i915#7828]) +7 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-18/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
* igt@kms_chamelium_edid@vga-edid-read:
- shard-mtlp: NOTRUN -> [SKIP][174] ([i915#11151] / [i915#7828]) +2 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-8/igt@kms_chamelium_edid@vga-edid-read.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][175] ([i915#11151] / [i915#7828]) +4 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-5/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-tglu: NOTRUN -> [SKIP][176] ([i915#11151] / [i915#7828]) +10 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-6/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@vga-hpd-after-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][177] ([i915#11151] / [i915#7828]) +5 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][178] ([i915#11151] / [i915#7828]) +6 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-4/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_content_protection@atomic-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][179] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-1/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@atomic@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][180] ([i915#7173])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-10/igt@kms_content_protection@atomic@pipe-a-dp-4.html
* igt@kms_content_protection@content-type-change:
- shard-tglu: NOTRUN -> [SKIP][181] ([i915#6944] / [i915#9424]) +1 other test skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-8/igt@kms_content_protection@content-type-change.html
- shard-mtlp: NOTRUN -> [SKIP][182] ([i915#6944] / [i915#9424])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-3/igt@kms_content_protection@content-type-change.html
- shard-dg2: NOTRUN -> [SKIP][183] ([i915#9424])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-5/igt@kms_content_protection@content-type-change.html
- shard-dg1: NOTRUN -> [SKIP][184] ([i915#9424])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-17/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@mei-interface:
- shard-rkl: NOTRUN -> [SKIP][185] ([i915#9424]) +1 other test skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-5/igt@kms_content_protection@mei-interface.html
- shard-dg1: NOTRUN -> [SKIP][186] ([i915#9433])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-12/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@type1:
- shard-rkl: NOTRUN -> [SKIP][187] ([i915#7118] / [i915#9424]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-7/igt@kms_content_protection@type1.html
- shard-tglu: NOTRUN -> [SKIP][188] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-4/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-dg1: NOTRUN -> [SKIP][189] ([i915#7116] / [i915#9424])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-12/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][190] ([i915#13049])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-3/igt@kms_cursor_crc@cursor-offscreen-512x512.html
- shard-rkl: NOTRUN -> [SKIP][191] ([i915#13049])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-5/igt@kms_cursor_crc@cursor-offscreen-512x512.html
- shard-dg1: NOTRUN -> [SKIP][192] ([i915#13049]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-12/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-rkl: NOTRUN -> [DMESG-FAIL][193] ([i915#12964])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-random-256x85:
- shard-rkl: NOTRUN -> [FAIL][194] ([i915#13566]) +2 other tests fail
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-5/igt@kms_cursor_crc@cursor-random-256x85.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-mtlp: NOTRUN -> [SKIP][195] ([i915#3555] / [i915#8814]) +1 other test skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-5/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-rkl: NOTRUN -> [SKIP][196] ([i915#3555]) +6 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-tglu: NOTRUN -> [SKIP][197] ([i915#3555]) +1 other test skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-4/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-tglu-1: NOTRUN -> [SKIP][198] ([i915#13049])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-snb: NOTRUN -> [SKIP][199] +181 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-snb5/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-dg2: NOTRUN -> [SKIP][200] ([i915#3555]) +7 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-6/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-tglu: NOTRUN -> [SKIP][201] ([i915#13049]) +2 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-6/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_crc@cursor-sliding-64x21:
- shard-rkl: [PASS][202] -> [FAIL][203] ([i915#13566]) +2 other tests fail
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-64x21.html
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-64x21.html
* igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [DMESG-WARN][204] ([i915#4423])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-17/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-4.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-tglu-1: NOTRUN -> [SKIP][205] ([i915#4103]) +1 other test skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
- shard-dg2: NOTRUN -> [SKIP][206] ([i915#13046] / [i915#5354]) +3 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-mtlp: NOTRUN -> [SKIP][207] ([i915#9809]) +3 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg1: NOTRUN -> [SKIP][208] ([i915#9067])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-13/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-tglu: NOTRUN -> [SKIP][209] ([i915#4103])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
- shard-mtlp: NOTRUN -> [SKIP][210] ([i915#4213])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#4103] / [i915#4213])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-rkl: NOTRUN -> [SKIP][212] ([i915#4103]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg1: NOTRUN -> [SKIP][213] ([i915#9723])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-14/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-tglu-1: NOTRUN -> [SKIP][214] ([i915#3555]) +2 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-1/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-rkl: NOTRUN -> [SKIP][215] ([i915#8588])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-1/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-dg1: NOTRUN -> [SKIP][216] ([i915#8588])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-17/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dp_aux_dev:
- shard-tglu-1: NOTRUN -> [SKIP][217] ([i915#1257])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-1/igt@kms_dp_aux_dev.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-tglu-1: NOTRUN -> [SKIP][218] ([i915#12402])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-1/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-dg1: NOTRUN -> [SKIP][219] ([i915#12402])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-14/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-mtlp: NOTRUN -> [SKIP][220] ([i915#12402])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-4/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][221] ([i915#8812])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-13/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-basic:
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#3555] / [i915#3840]) +1 other test skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-7/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-tglu: NOTRUN -> [SKIP][223] ([i915#3840])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-9/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-formats:
- shard-tglu: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#3840])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-5/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg1: NOTRUN -> [SKIP][225] ([i915#3840] / [i915#9053])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-17/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr:
- shard-tglu-1: NOTRUN -> [SKIP][226] ([i915#3469])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-1/igt@kms_fbcon_fbt@psr.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#3469])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-5/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-2x:
- shard-mtlp: NOTRUN -> [SKIP][228] ([i915#1839])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-3/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2: NOTRUN -> [SKIP][229] ([i915#1839])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-1/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-rkl: NOTRUN -> [SKIP][230] ([i915#1839])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-4/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-rkl: NOTRUN -> [SKIP][231] ([i915#9337])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-5/igt@kms_feature_discovery@dp-mst.html
- shard-dg1: NOTRUN -> [SKIP][232] ([i915#9337])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-12/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][233] ([i915#3637]) +5 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-7/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-rkl: NOTRUN -> [SKIP][234] ([i915#9934]) +8 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-4/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-dg1: NOTRUN -> [SKIP][235] ([i915#9934]) +4 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-18/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-mtlp: NOTRUN -> [SKIP][236] ([i915#3637]) +2 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-1/igt@kms_flip@2x-flip-vs-suspend.html
- shard-glk: NOTRUN -> [INCOMPLETE][237] ([i915#12745] / [i915#4839]) +1 other test incomplete
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-glk8/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][238] ([i915#4839]) +1 other test incomplete
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-glk5/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][239] ([i915#9934])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-4/igt@kms_flip@2x-flip-vs-wf_vblank.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][240] ([i915#3637]) +1 other test skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-1/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-tglu-1: NOTRUN -> [FAIL][241] ([i915#11989]) +1 other test fail
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-1/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-dg2: [PASS][242] -> [FAIL][243] ([i915#13027])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-dg2-7/igt@kms_flip@flip-vs-expired-vblank.html
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-5/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a3:
- shard-dg2: [PASS][244] -> [FAIL][245] ([i915#13528])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-dg2-7/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a3.html
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-5/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a3.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible:
- shard-tglu: [PASS][246] -> [FAIL][247] ([i915#11989]) +5 other tests fail
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-tglu-9/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-4/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a1:
- shard-dg2: [PASS][248] -> [FAIL][249] ([i915#11989]) +3 other tests fail
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-dg2-8/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a1.html
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-4/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a1.html
* igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1:
- shard-mtlp: [PASS][250] -> [FAIL][251] ([i915#11989])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-mtlp-8/igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1.html
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-1/igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][252] ([i915#2587] / [i915#2672]) +2 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][253] ([i915#3555] / [i915#8810] / [i915#8813])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][254] ([i915#8810])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][255] ([i915#2587] / [i915#2672]) +4 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#2672] / [i915#3555]) +1 other test skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-6/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][257] ([i915#2672]) +1 other test skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-6/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][258] ([i915#2672] / [i915#3555] / [i915#8813]) +3 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][259] ([i915#2587] / [i915#2672] / [i915#3555])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-tglu: NOTRUN -> [SKIP][260] ([i915#2672] / [i915#3555]) +4 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-8/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:
- shard-dg1: NOTRUN -> [SKIP][261] ([i915#2672] / [i915#3555]) +3 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-12/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][262] ([i915#2587] / [i915#2672]) +3 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-12/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][263] ([i915#2672] / [i915#8813]) +1 other test skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][264] ([i915#2672] / [i915#3555]) +1 other test skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][265] ([i915#2672] / [i915#3555]) +3 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-4/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][266] ([i915#2672]) +3 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-tglu-1: NOTRUN -> [SKIP][267] +33 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt:
- shard-snb: [PASS][268] -> [SKIP][269] +3 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][270] ([i915#1825]) +48 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][271] ([i915#8708]) +22 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][272] ([i915#10056] / [i915#13353])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-glk2/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][273] ([i915#3458]) +10 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-7/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][274] +51 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/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][275] ([i915#1825]) +16 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][276] ([i915#3458]) +19 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][277] ([i915#5439])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move:
- shard-tglu: NOTRUN -> [SKIP][278] +67 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-2/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][279] ([i915#5354]) +27 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-modesetfrombusy:
- shard-rkl: NOTRUN -> [SKIP][280] ([i915#3023]) +26 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][281] ([i915#8708]) +13 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][282] ([i915#8708]) +6 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
* igt@kms_hdr@bpc-switch:
- shard-rkl: NOTRUN -> [SKIP][283] ([i915#3555] / [i915#8228])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-4/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@brightness-with-hdr:
- shard-rkl: NOTRUN -> [SKIP][284] ([i915#12713])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-4/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2: NOTRUN -> [SKIP][285] ([i915#3555] / [i915#8228]) +1 other test skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-5/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@static-swap:
- shard-dg1: NOTRUN -> [SKIP][286] ([i915#3555] / [i915#8228]) +1 other test skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-17/igt@kms_hdr@static-swap.html
- shard-dg2: [PASS][287] -> [SKIP][288] ([i915#3555] / [i915#8228])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-dg2-10/igt@kms_hdr@static-swap.html
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-5/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle:
- shard-tglu: NOTRUN -> [SKIP][289] ([i915#3555] / [i915#8228]) +1 other test skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-9/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][290] ([i915#3555] / [i915#8228])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-1/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][291] ([i915#12388])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-1/igt@kms_joiner@basic-force-big-joiner.html
- shard-dg1: NOTRUN -> [SKIP][292] ([i915#12388])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-12/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][293] ([i915#10656])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-2/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][294] ([i915#12388]) +1 other test skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
- shard-rkl: NOTRUN -> [SKIP][295] ([i915#12388])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-3/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_12483/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_12483/shard-rkl-7/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_12483/shard-mtlp-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-rkl: NOTRUN -> [SKIP][299] ([i915#4816])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-dg1: NOTRUN -> [SKIP][300] ([i915#1839]) +1 other test skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-18/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-tglu: NOTRUN -> [SKIP][301] ([i915#1839]) +1 other test skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c:
- shard-mtlp: NOTRUN -> [SKIP][302] +11 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-8/igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c.html
* igt@kms_plane_alpha_blend@constant-alpha-max:
- shard-glk: NOTRUN -> [FAIL][303] ([i915#10647] / [i915#12169])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-glk6/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][304] ([i915#10647]) +1 other test fail
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-glk6/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-none:
- shard-mtlp: NOTRUN -> [SKIP][305] ([i915#11614] / [i915#3582]) +1 other test skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-3/igt@kms_plane_lowres@tiling-none.html
* igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][306] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-3/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d:
- shard-tglu-1: NOTRUN -> [SKIP][307] ([i915#12247]) +4 other tests skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][308] ([i915#12247]) +4 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- shard-dg1: NOTRUN -> [SKIP][309] ([i915#12247]) +17 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-12/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75:
- shard-mtlp: NOTRUN -> [SKIP][310] ([i915#12247] / [i915#3555] / [i915#6953])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-5/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][311] ([i915#12247]) +12 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-5/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][312] ([i915#12247] / [i915#6953])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
- shard-dg2: NOTRUN -> [SKIP][313] ([i915#12247] / [i915#6953] / [i915#9423])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
- shard-rkl: NOTRUN -> [SKIP][314] ([i915#12247] / [i915#6953])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
- shard-dg1: NOTRUN -> [SKIP][315] ([i915#12247] / [i915#6953])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-17/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
- shard-tglu: NOTRUN -> [SKIP][316] ([i915#12247] / [i915#6953])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-8/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][317] ([i915#12247]) +7 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-5/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][318] ([i915#12247]) +8 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-8/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][319] ([i915#12247] / [i915#3555] / [i915#9423])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-dg1: NOTRUN -> [SKIP][320] ([i915#12343])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-18/igt@kms_pm_backlight@brightness-with-dpms.html
- shard-tglu: NOTRUN -> [SKIP][321] ([i915#12343])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-3/igt@kms_pm_backlight@brightness-with-dpms.html
- shard-dg2: NOTRUN -> [SKIP][322] ([i915#12343])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-6/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][323] ([i915#5354]) +1 other test skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-6/igt@kms_pm_backlight@fade-with-dpms.html
- shard-dg1: NOTRUN -> [SKIP][324] ([i915#5354]) +2 other tests skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-17/igt@kms_pm_backlight@fade-with-dpms.html
- shard-tglu: NOTRUN -> [SKIP][325] ([i915#9812])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-8/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][326] ([i915#9812])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-1/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc5-psr:
- shard-rkl: NOTRUN -> [SKIP][327] ([i915#9685]) +1 other test skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-7/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-tglu-1: NOTRUN -> [SKIP][328] ([i915#3828])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-1/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-rkl: NOTRUN -> [SKIP][329] ([i915#3361])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-3/igt@kms_pm_dc@dc6-dpms.html
- shard-tglu: [PASS][330] -> [FAIL][331] ([i915#9295])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-tglu-10/igt@kms_pm_dc@dc6-dpms.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-5/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-tglu: NOTRUN -> [SKIP][332] ([i915#3828])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-2/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@basic-rte:
- shard-dg1: [PASS][333] -> [DMESG-WARN][334] ([i915#4423]) +2 other tests dmesg-warn
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-dg1-18/igt@kms_pm_rpm@basic-rte.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-13/igt@kms_pm_rpm@basic-rte.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: [PASS][335] -> [SKIP][336] ([i915#9519]) +1 other test skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-rkl-7/igt@kms_pm_rpm@dpms-lpsp.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-1/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2: NOTRUN -> [SKIP][337] ([i915#9519]) +1 other test skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-tglu-1: NOTRUN -> [SKIP][338] ([i915#9519])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-1/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@fences:
- shard-rkl: [PASS][339] -> [SKIP][340] ([i915#12916])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-rkl-7/igt@kms_pm_rpm@fences.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-4/igt@kms_pm_rpm@fences.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg1: NOTRUN -> [SKIP][341] ([i915#9519]) +1 other test skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-18/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: NOTRUN -> [SKIP][342] ([i915#9519]) +1 other test skip
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
- shard-tglu: NOTRUN -> [SKIP][343] ([i915#9519]) +1 other test skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-9/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
- shard-mtlp: NOTRUN -> [SKIP][344] ([i915#9519]) +1 other test skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: NOTRUN -> [DMESG-WARN][345] ([i915#12964]) +19 other tests dmesg-warn
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: NOTRUN -> [SKIP][346] ([i915#6524])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-6/igt@kms_prime@basic-modeset-hybrid.html
- shard-dg1: NOTRUN -> [SKIP][347] ([i915#6524]) +1 other test skip
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-17/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
- shard-snb: NOTRUN -> [SKIP][348] ([i915#11520]) +5 other tests skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/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][349] ([i915#11520]) +9 other tests skip
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-5/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][350] ([i915#11520]) +4 other tests skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-17/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
- shard-rkl: NOTRUN -> [SKIP][351] ([i915#11520]) +7 other tests skip
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf:
- shard-mtlp: NOTRUN -> [SKIP][352] ([i915#12316]) +2 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-8/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][353] ([i915#11520]) +13 other tests skip
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-glk2/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb:
- shard-dg2: NOTRUN -> [SKIP][354] ([i915#11520]) +6 other tests skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-3/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html
- shard-tglu-1: NOTRUN -> [SKIP][355] ([i915#11520]) +3 other tests skip
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-1/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-tglu: NOTRUN -> [SKIP][356] ([i915#9683])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-9/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg1: NOTRUN -> [SKIP][357] ([i915#9683]) +1 other test skip
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-14/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr-no-drrs:
- shard-tglu: NOTRUN -> [SKIP][358] ([i915#9732]) +16 other tests skip
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-2/igt@kms_psr@fbc-psr-no-drrs.html
* igt@kms_psr@pr-cursor-blt:
- shard-mtlp: NOTRUN -> [SKIP][359] ([i915#9688]) +9 other tests skip
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-6/igt@kms_psr@pr-cursor-blt.html
* igt@kms_psr@psr-sprite-plane-move:
- shard-tglu-1: NOTRUN -> [SKIP][360] ([i915#9732]) +10 other tests skip
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-1/igt@kms_psr@psr-sprite-plane-move.html
* igt@kms_psr@psr2-cursor-blt:
- shard-dg2: NOTRUN -> [SKIP][361] ([i915#1072] / [i915#9732]) +11 other tests skip
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-6/igt@kms_psr@psr2-cursor-blt.html
* igt@kms_psr@psr2-cursor-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][362] ([i915#1072] / [i915#9732]) +26 other tests skip
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-1/igt@kms_psr@psr2-cursor-mmap-gtt.html
* igt@kms_psr@psr2-primary-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][363] ([i915#1072] / [i915#9732]) +25 other tests skip
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-12/igt@kms_psr@psr2-primary-mmap-cpu.html
* igt@kms_psr@psr2-sprite-plane-onoff:
- shard-glk: NOTRUN -> [SKIP][364] +413 other tests skip
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-glk5/igt@kms_psr@psr2-sprite-plane-onoff.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg1: NOTRUN -> [SKIP][365] ([i915#9685]) +2 other tests skip
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-13/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
- shard-dg2: NOTRUN -> [SKIP][366] ([i915#9685]) +1 other test skip
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-mtlp: NOTRUN -> [SKIP][367] ([i915#12755])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-8/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-tglu: NOTRUN -> [SKIP][368] ([i915#5289])
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg1: NOTRUN -> [SKIP][369] ([i915#5289])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-13/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][370] ([i915#12755] / [i915#5190])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
- shard-rkl: NOTRUN -> [SKIP][371] ([i915#5289])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-dg2: NOTRUN -> [SKIP][372] ([i915#12755]) +1 other test skip
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-1/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_selftest@drm_framebuffer:
- shard-tglu: NOTRUN -> [ABORT][373] ([i915#13179]) +1 other test abort
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-6/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-dg1: NOTRUN -> [SKIP][374] ([i915#3555]) +6 other tests skip
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-17/igt@kms_setmode@clone-exclusive-crtc.html
- shard-mtlp: NOTRUN -> [SKIP][375] ([i915#3555] / [i915#8809])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-8/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-tglu: NOTRUN -> [SKIP][376] ([i915#8623])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-5/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg1: NOTRUN -> [SKIP][377] ([i915#8623])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-12/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][378] ([i915#12276]) +1 other test incomplete
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-glk8/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html
* igt@kms_vrr@lobf:
- shard-rkl: NOTRUN -> [SKIP][379] ([i915#11920])
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-4/igt@kms_vrr@lobf.html
* igt@kms_vrr@max-min:
- shard-tglu-1: NOTRUN -> [SKIP][380] ([i915#9906])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-1/igt@kms_vrr@max-min.html
* igt@kms_vrr@negative-basic:
- shard-dg1: NOTRUN -> [SKIP][381] ([i915#3555] / [i915#9906])
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-18/igt@kms_vrr@negative-basic.html
* igt@kms_writeback@writeback-fb-id:
- shard-tglu: NOTRUN -> [SKIP][382] ([i915#2437])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-9/igt@kms_writeback@writeback-fb-id.html
- shard-dg2: NOTRUN -> [SKIP][383] ([i915#2437])
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-6/igt@kms_writeback@writeback-fb-id.html
- shard-rkl: NOTRUN -> [SKIP][384] ([i915#2437])
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-1/igt@kms_writeback@writeback-fb-id.html
- shard-dg1: NOTRUN -> [SKIP][385] ([i915#2437])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-18/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg1: NOTRUN -> [SKIP][386] ([i915#2437] / [i915#9412])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-18/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-glk: NOTRUN -> [SKIP][387] ([i915#2437])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-glk3/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@perf@global-sseu-config:
- shard-mtlp: NOTRUN -> [SKIP][388] ([i915#7387])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-3/igt@perf@global-sseu-config.html
- shard-dg2: NOTRUN -> [SKIP][389] ([i915#7387])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-1/igt@perf@global-sseu-config.html
* igt@perf@mi-rpc:
- shard-dg1: NOTRUN -> [SKIP][390] ([i915#2434])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-12/igt@perf@mi-rpc.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-dg1: NOTRUN -> [SKIP][391] ([i915#2433])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-17/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@event-wait@rcs0:
- shard-dg2: NOTRUN -> [SKIP][392] +10 other tests skip
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-8/igt@perf_pmu@event-wait@rcs0.html
* igt@perf_pmu@render-node-busy-idle:
- shard-dg2: [PASS][393] -> [FAIL][394] ([i915#4349]) +1 other test fail
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-dg2-2/igt@perf_pmu@render-node-busy-idle.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-1/igt@perf_pmu@render-node-busy-idle.html
* igt@perf_pmu@render-node-busy-idle@vecs0:
- shard-dg1: [PASS][395] -> [FAIL][396] ([i915#4349]) +1 other test fail
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-dg1-13/igt@perf_pmu@render-node-busy-idle@vecs0.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-12/igt@perf_pmu@render-node-busy-idle@vecs0.html
* igt@prime_busy@hang:
- shard-rkl: [PASS][397] -> [DMESG-WARN][398] ([i915#12917] / [i915#12964]) +1 other test dmesg-warn
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-rkl-4/igt@prime_busy@hang.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-7/igt@prime_busy@hang.html
* igt@prime_vgem@basic-fence-read:
- shard-dg2: NOTRUN -> [SKIP][399] ([i915#3291] / [i915#3708])
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-6/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-write:
- shard-dg1: NOTRUN -> [SKIP][400] ([i915#3708])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-13/igt@prime_vgem@basic-write.html
* igt@prime_vgem@fence-flip-hang:
- shard-mtlp: NOTRUN -> [SKIP][401] ([i915#3708])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-6/igt@prime_vgem@fence-flip-hang.html
- shard-dg2: NOTRUN -> [SKIP][402] ([i915#3708]) +1 other test skip
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-5/igt@prime_vgem@fence-flip-hang.html
* igt@prime_vgem@fence-write-hang:
- shard-rkl: NOTRUN -> [SKIP][403] ([i915#3708])
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-7/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-dg1: NOTRUN -> [SKIP][404] ([i915#9917]) +1 other test skip
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-13/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-rkl: NOTRUN -> [SKIP][405] ([i915#9917]) +1 other test skip
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-rkl-1/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-tglu: NOTRUN -> [FAIL][406] ([i915#12910])
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-4/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@tools_test@sysfs_l3_parity:
- shard-dg1: NOTRUN -> [SKIP][407] ([i915#4818])
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-18/igt@tools_test@sysfs_l3_parity.html
- shard-mtlp: NOTRUN -> [SKIP][408] ([i915#4818])
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-5/igt@tools_test@sysfs_l3_parity.html
- shard-dg2: NOTRUN -> [SKIP][409] ([i915#4818])
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg2-6/igt@tools_test@sysfs_l3_parity.html
#### Possible fixes ####
* igt@debugfs_test@read_all_entries:
- shard-mtlp: [ABORT][410] -> [PASS][411]
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-mtlp-2/igt@debugfs_test@read_all_entries.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-3/igt@debugfs_test@read_all_entries.html
* igt@gem_exec_big@single:
- shard-tglu: [ABORT][412] ([i915#11713]) -> [PASS][413]
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-tglu-3/igt@gem_exec_big@single.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-6/igt@gem_exec_big@single.html
* igt@gem_exec_endless@dispatch@vcs1:
- shard-dg1: [TIMEOUT][414] ([i915#3778]) -> [PASS][415] +1 other test pass
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-dg1-18/igt@gem_exec_endless@dispatch@vcs1.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-13/igt@gem_exec_endless@dispatch@vcs1.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-mtlp: [ABORT][416] ([i915#7975]) -> [PASS][417] +1 other test pass
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-mtlp-7/igt@gem_exec_suspend@basic-s4-devices.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-6/igt@gem_exec_suspend@basic-s4-devices.html
* igt@gem_exec_suspend@basic-s4-devices@lmem0:
- shard-dg1: [ABORT][418] ([i915#7975] / [i915#8213]) -> [PASS][419] +1 other test pass
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-dg1-14/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-18/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
* igt@gem_workarounds@reset-fd:
- shard-mtlp: [ABORT][420] ([i915#13193]) -> [PASS][421]
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-mtlp-7/igt@gem_workarounds@reset-fd.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-mtlp-3/igt@gem_workarounds@reset-fd.html
* igt@gem_workarounds@suspend-resume-fd:
- shard-dg1: [ABORT][422] ([i915#8213]) -> [PASS][423]
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-dg1-17/igt@gem_workarounds@suspend-resume-fd.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-13/igt@gem_workarounds@suspend-resume-fd.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-glk: [DMESG-WARN][424] ([i915#118]) -> [PASS][425] +1 other test pass
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-glk7/igt@i915_pm_rc6_residency@rc6-idle.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-glk6/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rpm@system-suspend:
- shard-glk: [INCOMPLETE][426] ([i915#12797]) -> [PASS][427]
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-glk3/igt@i915_pm_rpm@system-suspend.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-glk7/igt@i915_pm_rpm@system-suspend.html
* igt@kms_addfb_basic@bad-pitch-63:
- shard-dg1: [DMESG-WARN][428] ([i915#4391] / [i915#4423]) -> [PASS][429]
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-dg1-12/igt@kms_addfb_basic@bad-pitch-63.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-dg1-17/igt@kms_addfb_basic@bad-pitch-63.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic:
- shard-tglu: [FAIL][430] ([i915#10991] / [i915#13320]) -> [PASS][431] +1 other test pass
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-tglu-6/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/shard-tglu-6/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
* igt@kms_async_flips@test-cursor-atomic@pipe-a-hdmi-a-2:
- shard-rkl: [DMESG-WARN][432] ([i915#12964]) -> [PASS][433] +16 other tests pass
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16005/shard-rkl-3/igt@kms_async_flips@
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12483/index.html
[-- Attachment #2: Type: text/html, Size: 109826 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t] tests/intel/perf_pmu: Drop cpu-hotplug subtest
2025-01-23 17:45 ` [PATCH i-g-t] " Lucas De Marchi
@ 2025-01-25 0:13 ` Umesh Nerlige Ramappa
0 siblings, 0 replies; 11+ messages in thread
From: Umesh Nerlige Ramappa @ 2025-01-25 0:13 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: igt-dev, Tvrtko Ursulin
On Thu, Jan 23, 2025 at 11:45:55AM -0600, Lucas De Marchi wrote:
>On Wed, Jan 22, 2025 at 09:30:39PM -0800, Lucas De Marchi wrote:
>>This test has been skipping since a long time (forever?) in CI. The
>
>s/(forever?)//
>
>looking at the CI repo it was actually tested because it had a kconfig
>set for making CPU0 hotpluggable. That capability went way in the kernel
>by ...
>
>>reason is that cpu0 is not really hot pluggable. There was an initial
>>attempt that got removed with kernel commits 5475abbde77f ("x86/smpboot:
>>Remove the CPU0 hotplug kludge") and e59e74dc48a3 ("x86/topology: Remove
>>CPU0 hotplug option").
>
>^ these commits, so it's dead code since then.
Hmm, at some point I did enable the kconfig setting and was wondering
why it still didn't work!!
LGTM,
Reviewed-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
Umesh
>
>Lucas De Marchi
>
>>
>>With those commits there are no more cpu0_hotplug kernel parameter and
>>no more BOOTPARAM_HOTPLUG_CPU0 build config.
>>
>>The current i915 pmu integration always returns the first cpu in the
>>system, which means that it's always cpu0. The cpu migration is also
>>currently wrong and was never detected by this test: it tries to find a
>>sibling cpu rather than allowing to migrate to any cpu in the system.
>>In order to clean up the i915 side, the hotplug code is being removed in
>>favor of the generic one, provided by perf infra. That too has the same
>>"issue" that there's no easy way to test, but hopefully receives more
>>visibility since it's shared by several drivers.
>>
>>If we ever find a way to instrument the kernel to test the hotplug, this
>>code can be partially restored.
>>
>>References: https://lore.kernel.org/all/20250116222426.77757-1-lucas.demarchi@intel.com/
>>Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
>>---
>>tests/intel/perf_pmu.c | 142 -----------------------------------------
>>1 file changed, 142 deletions(-)
>>
>>diff --git a/tests/intel/perf_pmu.c b/tests/intel/perf_pmu.c
>>index 5d0467c02..084ef9631 100644
>>--- a/tests/intel/perf_pmu.c
>>+++ b/tests/intel/perf_pmu.c
>>@@ -101,9 +101,6 @@
>> * SUBTEST: busy-start
>> * Description: Test to verify gpu busyness through engine business pmu counters
>> *
>>- * SUBTEST: cpu-hotplug
>>- * Description: Test the i915 pmu perf interface
>>- *
>> * SUBTEST: enable-race
>> * Description: Test the i915 pmu perf interface
>> *
>>@@ -1362,139 +1359,6 @@ static void open_invalid(int i915)
>> igt_assert_lt(fd, 0);
>>}
>>
>>-static bool cpu0_hotplug_support(void)
>>-{
>>- return access("/sys/devices/system/cpu/cpu0/online", W_OK) == 0;
>>-}
>>-
>>-static void cpu_hotplug(int gem_fd)
>>-{
>>- igt_spin_t *spin[2];
>>- uint64_t ts[2];
>>- uint64_t val;
>>- int link[2];
>>- int fd, ret;
>>- int cur = 0;
>>- char buf;
>>- uint64_t ahnd = get_reloc_ahnd(gem_fd, 0);
>>-
>>- igt_require(cpu0_hotplug_support());
>>-
>>- fd = open_pmu(gem_fd,
>>- I915_PMU_ENGINE_BUSY(I915_ENGINE_CLASS_RENDER, 0));
>>-
>>- /*
>>- * Create two spinners so test can ensure shorter gaps in engine
>>- * busyness as it is terminating one and re-starting the other.
>>- */
>>- spin[0] = igt_spin_new(gem_fd, .ahnd = ahnd,
>>- .engine = I915_EXEC_DEFAULT);
>>- spin[1] = __igt_spin_new(gem_fd, .ahnd = ahnd,
>>- .engine = I915_EXEC_DEFAULT);
>>-
>>- val = __pmu_read_single(fd, &ts[0]);
>>-
>>- ret = pipe2(link, O_NONBLOCK);
>>- igt_assert_eq(ret, 0);
>>-
>>- /*
>>- * Toggle online status of all the CPUs in a child process and ensure
>>- * this has not affected busyness stats in the parent.
>>- */
>>- igt_fork(child, 1) {
>>- int cpu = 0;
>>-
>>- close(link[0]);
>>-
>>- for (;;) {
>>- char name[128];
>>- int cpufd;
>>-
>>- igt_assert_lt(snprintf(name, sizeof(name),
>>- "/sys/devices/system/cpu/cpu%d/online",
>>- cpu), sizeof(name));
>>- cpufd = open(name, O_WRONLY);
>>- if (cpufd == -1) {
>>- igt_assert_lt(0, cpu);
>>- /*
>>- * Signal parent that we cycled through all
>>- * CPUs and we are done.
>>- */
>>- igt_assert_eq(write(link[1], "*", 1), 1);
>>- break;
>>- }
>>-
>>- /* Offline followed by online a CPU. */
>>-
>>- ret = write(cpufd, "0", 2);
>>- if (ret < 0) {
>>- /*
>>- * If we failed to offline a CPU we don't want
>>- * to proceed.
>>- */
>>- igt_warn("Failed to offline cpu%u! (%d)\n",
>>- cpu, errno);
>>- igt_assert_eq(write(link[1], "s", 1), 1);
>>- break;
>>- }
>>-
>>- usleep(1e6);
>>-
>>- ret = write(cpufd, "1", 2);
>>- if (ret < 0) {
>>- /*
>>- * Failed to bring a CPU back online is fatal
>>- * for the sanity of a test run so stop further
>>- * testing.
>>- */
>>- igt_warn("Failed to online cpu%u! (%d)\n",
>>- cpu, errno);
>>- igt_fatal_error();
>>- }
>>-
>>- close(cpufd);
>>- cpu++;
>>- }
>>- }
>>-
>>- close(link[1]);
>>-
>>- /*
>>- * Very long batches can be declared as GPU hangs so emit shorter ones
>>- * until the CPU core shuffler finishes one loop.
>>- */
>>- for (;;) {
>>- usleep(500e3);
>>- end_spin(gem_fd, spin[cur], 0);
>>-
>>- /* Check if the child is signaling completion. */
>>- ret = read(link[0], &buf, 1);
>>- if ( ret == 1 || (ret < 0 && errno != EAGAIN))
>>- break;
>>-
>>- igt_spin_free(gem_fd, spin[cur]);
>>- spin[cur] = __igt_spin_new(gem_fd, .ahnd = ahnd,
>>- .engine = I915_EXEC_DEFAULT);
>>- cur ^= 1;
>>- }
>>-
>>- val = __pmu_read_single(fd, &ts[1]) - val;
>>-
>>- end_spin(gem_fd, spin[0], FLAG_SYNC);
>>- end_spin(gem_fd, spin[1], FLAG_SYNC);
>>- igt_spin_free(gem_fd, spin[0]);
>>- igt_spin_free(gem_fd, spin[1]);
>>- igt_waitchildren();
>>- close(fd);
>>- close(link[0]);
>>- put_ahnd(ahnd);
>>-
>>- /* Skip if child signals a problem with offlining a CPU. */
>>- igt_skip_on(buf == 's');
>>-
>>- assert_within_epsilon(val, ts[1] - ts[0], tolerance);
>>-}
>>-
>>static int target_num_interrupts(int i915)
>>{
>> const intel_ctx_cfg_t cfg = intel_ctx_cfg_all_physical(i915);
>>@@ -2650,12 +2514,6 @@ igt_main
>> all_busy_check_all(fd, ctx, num_engines,
>> TEST_BUSY | TEST_TRAILING_IDLE);
>>
>>- /**
>>- * Test counters are not affected by CPU offline/online events.
>>- */
>>- igt_subtest("cpu-hotplug")
>>- cpu_hotplug(fd);
>>-
>> /**
>> * Test GPU frequency.
>> */
>>--
>>2.48.0
>>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t] tests/intel/perf_pmu: Drop cpu-hotplug subtest
2025-01-23 5:30 [PATCH i-g-t] tests/intel/perf_pmu: Drop cpu-hotplug subtest Lucas De Marchi
` (6 preceding siblings ...)
2025-01-24 2:02 ` ✗ i915.CI.Full: " Patchwork
@ 2025-01-27 8:53 ` Tvrtko Ursulin
2025-01-27 15:12 ` Lucas De Marchi
7 siblings, 1 reply; 11+ messages in thread
From: Tvrtko Ursulin @ 2025-01-27 8:53 UTC (permalink / raw)
To: Lucas De Marchi, igt-dev
On 23/01/2025 05:30, Lucas De Marchi wrote:
> This test has been skipping since a long time (forever?) in CI. The
> reason is that cpu0 is not really hot pluggable. There was an initial
> attempt that got removed with kernel commits 5475abbde77f ("x86/smpboot:
> Remove the CPU0 hotplug kludge") and e59e74dc48a3 ("x86/topology: Remove
> CPU0 hotplug option").
>
> With those commits there are no more cpu0_hotplug kernel parameter and
> no more BOOTPARAM_HOTPLUG_CPU0 build config.
>
> The current i915 pmu integration always returns the first cpu in the
> system, which means that it's always cpu0. The cpu migration is also
> currently wrong and was never detected by this test: it tries to find a
> sibling cpu rather than allowing to migrate to any cpu in the system.
> In order to clean up the i915 side, the hotplug code is being removed in
> favor of the generic one, provided by perf infra. That too has the same
> "issue" that there's no easy way to test, but hopefully receives more
> visibility since it's shared by several drivers.
>
> If we ever find a way to instrument the kernel to test the hotplug, this
> code can be partially restored.
After your i915 PMU patches to use the common hotplug infrastructure the
test still cannot work? Still strictly requires cpu0 to be hotpluggable?
Or could the test be changed so it skips cpu0 if not hotpluggable?
Regards,
Tvrtklo
>
> References: https://lore.kernel.org/all/20250116222426.77757-1-lucas.demarchi@intel.com/
> Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
> ---
> tests/intel/perf_pmu.c | 142 -----------------------------------------
> 1 file changed, 142 deletions(-)
>
> diff --git a/tests/intel/perf_pmu.c b/tests/intel/perf_pmu.c
> index 5d0467c02..084ef9631 100644
> --- a/tests/intel/perf_pmu.c
> +++ b/tests/intel/perf_pmu.c
> @@ -101,9 +101,6 @@
> * SUBTEST: busy-start
> * Description: Test to verify gpu busyness through engine business pmu counters
> *
> - * SUBTEST: cpu-hotplug
> - * Description: Test the i915 pmu perf interface
> - *
> * SUBTEST: enable-race
> * Description: Test the i915 pmu perf interface
> *
> @@ -1362,139 +1359,6 @@ static void open_invalid(int i915)
> igt_assert_lt(fd, 0);
> }
>
> -static bool cpu0_hotplug_support(void)
> -{
> - return access("/sys/devices/system/cpu/cpu0/online", W_OK) == 0;
> -}
> -
> -static void cpu_hotplug(int gem_fd)
> -{
> - igt_spin_t *spin[2];
> - uint64_t ts[2];
> - uint64_t val;
> - int link[2];
> - int fd, ret;
> - int cur = 0;
> - char buf;
> - uint64_t ahnd = get_reloc_ahnd(gem_fd, 0);
> -
> - igt_require(cpu0_hotplug_support());
> -
> - fd = open_pmu(gem_fd,
> - I915_PMU_ENGINE_BUSY(I915_ENGINE_CLASS_RENDER, 0));
> -
> - /*
> - * Create two spinners so test can ensure shorter gaps in engine
> - * busyness as it is terminating one and re-starting the other.
> - */
> - spin[0] = igt_spin_new(gem_fd, .ahnd = ahnd,
> - .engine = I915_EXEC_DEFAULT);
> - spin[1] = __igt_spin_new(gem_fd, .ahnd = ahnd,
> - .engine = I915_EXEC_DEFAULT);
> -
> - val = __pmu_read_single(fd, &ts[0]);
> -
> - ret = pipe2(link, O_NONBLOCK);
> - igt_assert_eq(ret, 0);
> -
> - /*
> - * Toggle online status of all the CPUs in a child process and ensure
> - * this has not affected busyness stats in the parent.
> - */
> - igt_fork(child, 1) {
> - int cpu = 0;
> -
> - close(link[0]);
> -
> - for (;;) {
> - char name[128];
> - int cpufd;
> -
> - igt_assert_lt(snprintf(name, sizeof(name),
> - "/sys/devices/system/cpu/cpu%d/online",
> - cpu), sizeof(name));
> - cpufd = open(name, O_WRONLY);
> - if (cpufd == -1) {
> - igt_assert_lt(0, cpu);
> - /*
> - * Signal parent that we cycled through all
> - * CPUs and we are done.
> - */
> - igt_assert_eq(write(link[1], "*", 1), 1);
> - break;
> - }
> -
> - /* Offline followed by online a CPU. */
> -
> - ret = write(cpufd, "0", 2);
> - if (ret < 0) {
> - /*
> - * If we failed to offline a CPU we don't want
> - * to proceed.
> - */
> - igt_warn("Failed to offline cpu%u! (%d)\n",
> - cpu, errno);
> - igt_assert_eq(write(link[1], "s", 1), 1);
> - break;
> - }
> -
> - usleep(1e6);
> -
> - ret = write(cpufd, "1", 2);
> - if (ret < 0) {
> - /*
> - * Failed to bring a CPU back online is fatal
> - * for the sanity of a test run so stop further
> - * testing.
> - */
> - igt_warn("Failed to online cpu%u! (%d)\n",
> - cpu, errno);
> - igt_fatal_error();
> - }
> -
> - close(cpufd);
> - cpu++;
> - }
> - }
> -
> - close(link[1]);
> -
> - /*
> - * Very long batches can be declared as GPU hangs so emit shorter ones
> - * until the CPU core shuffler finishes one loop.
> - */
> - for (;;) {
> - usleep(500e3);
> - end_spin(gem_fd, spin[cur], 0);
> -
> - /* Check if the child is signaling completion. */
> - ret = read(link[0], &buf, 1);
> - if ( ret == 1 || (ret < 0 && errno != EAGAIN))
> - break;
> -
> - igt_spin_free(gem_fd, spin[cur]);
> - spin[cur] = __igt_spin_new(gem_fd, .ahnd = ahnd,
> - .engine = I915_EXEC_DEFAULT);
> - cur ^= 1;
> - }
> -
> - val = __pmu_read_single(fd, &ts[1]) - val;
> -
> - end_spin(gem_fd, spin[0], FLAG_SYNC);
> - end_spin(gem_fd, spin[1], FLAG_SYNC);
> - igt_spin_free(gem_fd, spin[0]);
> - igt_spin_free(gem_fd, spin[1]);
> - igt_waitchildren();
> - close(fd);
> - close(link[0]);
> - put_ahnd(ahnd);
> -
> - /* Skip if child signals a problem with offlining a CPU. */
> - igt_skip_on(buf == 's');
> -
> - assert_within_epsilon(val, ts[1] - ts[0], tolerance);
> -}
> -
> static int target_num_interrupts(int i915)
> {
> const intel_ctx_cfg_t cfg = intel_ctx_cfg_all_physical(i915);
> @@ -2650,12 +2514,6 @@ igt_main
> all_busy_check_all(fd, ctx, num_engines,
> TEST_BUSY | TEST_TRAILING_IDLE);
>
> - /**
> - * Test counters are not affected by CPU offline/online events.
> - */
> - igt_subtest("cpu-hotplug")
> - cpu_hotplug(fd);
> -
> /**
> * Test GPU frequency.
> */
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t] tests/intel/perf_pmu: Drop cpu-hotplug subtest
2025-01-27 8:53 ` [PATCH i-g-t] " Tvrtko Ursulin
@ 2025-01-27 15:12 ` Lucas De Marchi
0 siblings, 0 replies; 11+ messages in thread
From: Lucas De Marchi @ 2025-01-27 15:12 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: igt-dev
On Mon, Jan 27, 2025 at 08:53:02AM +0000, Tvrtko Ursulin wrote:
>
>On 23/01/2025 05:30, Lucas De Marchi wrote:
>>This test has been skipping since a long time (forever?) in CI. The
>>reason is that cpu0 is not really hot pluggable. There was an initial
>>attempt that got removed with kernel commits 5475abbde77f ("x86/smpboot:
>>Remove the CPU0 hotplug kludge") and e59e74dc48a3 ("x86/topology: Remove
>>CPU0 hotplug option").
>>
>>With those commits there are no more cpu0_hotplug kernel parameter and
>>no more BOOTPARAM_HOTPLUG_CPU0 build config.
>>
>>The current i915 pmu integration always returns the first cpu in the
>>system, which means that it's always cpu0. The cpu migration is also
>>currently wrong and was never detected by this test: it tries to find a
>>sibling cpu rather than allowing to migrate to any cpu in the system.
>>In order to clean up the i915 side, the hotplug code is being removed in
>>favor of the generic one, provided by perf infra. That too has the same
>>"issue" that there's no easy way to test, but hopefully receives more
>>visibility since it's shared by several drivers.
>>
>>If we ever find a way to instrument the kernel to test the hotplug, this
>>code can be partially restored.
>
>After your i915 PMU patches to use the common hotplug infrastructure
>the test still cannot work? Still strictly requires cpu0 to be
>hotpluggable? Or could the test be changed so it skips cpu0 if not
>hotpluggable?
It still can't be tested. We'd need a hack to make the sys-wide cpumask
to drop cpu0 (or "non-hotplugable" cpus) so it returns something else
for target cpu.
I think this is only relevant for test purposes because for a
system-wide events it's actually good that we never have to migrate the
counter: it's not really related to the CPU and having to handle the
hotplug is only done for compat with other perf event scopes that need
to handle hotplug.
As example, see drivers/iommu/intel/dmar.c that calls
iommu_device_register() and registers the pmu as sys-wide.
LNL:~$ sudo cat /sys/bus/event_source/devices/dmar*/cpumask
0
0
0
Lucas De Marchi
>
>Regards,
>
>Tvrtklo
>
>>
>>References: https://lore.kernel.org/all/20250116222426.77757-1-lucas.demarchi@intel.com/
>>Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
>>---
>> tests/intel/perf_pmu.c | 142 -----------------------------------------
>> 1 file changed, 142 deletions(-)
>>
>>diff --git a/tests/intel/perf_pmu.c b/tests/intel/perf_pmu.c
>>index 5d0467c02..084ef9631 100644
>>--- a/tests/intel/perf_pmu.c
>>+++ b/tests/intel/perf_pmu.c
>>@@ -101,9 +101,6 @@
>> * SUBTEST: busy-start
>> * Description: Test to verify gpu busyness through engine business pmu counters
>> *
>>- * SUBTEST: cpu-hotplug
>>- * Description: Test the i915 pmu perf interface
>>- *
>> * SUBTEST: enable-race
>> * Description: Test the i915 pmu perf interface
>> *
>>@@ -1362,139 +1359,6 @@ static void open_invalid(int i915)
>> igt_assert_lt(fd, 0);
>> }
>>-static bool cpu0_hotplug_support(void)
>>-{
>>- return access("/sys/devices/system/cpu/cpu0/online", W_OK) == 0;
>>-}
>>-
>>-static void cpu_hotplug(int gem_fd)
>>-{
>>- igt_spin_t *spin[2];
>>- uint64_t ts[2];
>>- uint64_t val;
>>- int link[2];
>>- int fd, ret;
>>- int cur = 0;
>>- char buf;
>>- uint64_t ahnd = get_reloc_ahnd(gem_fd, 0);
>>-
>>- igt_require(cpu0_hotplug_support());
>>-
>>- fd = open_pmu(gem_fd,
>>- I915_PMU_ENGINE_BUSY(I915_ENGINE_CLASS_RENDER, 0));
>>-
>>- /*
>>- * Create two spinners so test can ensure shorter gaps in engine
>>- * busyness as it is terminating one and re-starting the other.
>>- */
>>- spin[0] = igt_spin_new(gem_fd, .ahnd = ahnd,
>>- .engine = I915_EXEC_DEFAULT);
>>- spin[1] = __igt_spin_new(gem_fd, .ahnd = ahnd,
>>- .engine = I915_EXEC_DEFAULT);
>>-
>>- val = __pmu_read_single(fd, &ts[0]);
>>-
>>- ret = pipe2(link, O_NONBLOCK);
>>- igt_assert_eq(ret, 0);
>>-
>>- /*
>>- * Toggle online status of all the CPUs in a child process and ensure
>>- * this has not affected busyness stats in the parent.
>>- */
>>- igt_fork(child, 1) {
>>- int cpu = 0;
>>-
>>- close(link[0]);
>>-
>>- for (;;) {
>>- char name[128];
>>- int cpufd;
>>-
>>- igt_assert_lt(snprintf(name, sizeof(name),
>>- "/sys/devices/system/cpu/cpu%d/online",
>>- cpu), sizeof(name));
>>- cpufd = open(name, O_WRONLY);
>>- if (cpufd == -1) {
>>- igt_assert_lt(0, cpu);
>>- /*
>>- * Signal parent that we cycled through all
>>- * CPUs and we are done.
>>- */
>>- igt_assert_eq(write(link[1], "*", 1), 1);
>>- break;
>>- }
>>-
>>- /* Offline followed by online a CPU. */
>>-
>>- ret = write(cpufd, "0", 2);
>>- if (ret < 0) {
>>- /*
>>- * If we failed to offline a CPU we don't want
>>- * to proceed.
>>- */
>>- igt_warn("Failed to offline cpu%u! (%d)\n",
>>- cpu, errno);
>>- igt_assert_eq(write(link[1], "s", 1), 1);
>>- break;
>>- }
>>-
>>- usleep(1e6);
>>-
>>- ret = write(cpufd, "1", 2);
>>- if (ret < 0) {
>>- /*
>>- * Failed to bring a CPU back online is fatal
>>- * for the sanity of a test run so stop further
>>- * testing.
>>- */
>>- igt_warn("Failed to online cpu%u! (%d)\n",
>>- cpu, errno);
>>- igt_fatal_error();
>>- }
>>-
>>- close(cpufd);
>>- cpu++;
>>- }
>>- }
>>-
>>- close(link[1]);
>>-
>>- /*
>>- * Very long batches can be declared as GPU hangs so emit shorter ones
>>- * until the CPU core shuffler finishes one loop.
>>- */
>>- for (;;) {
>>- usleep(500e3);
>>- end_spin(gem_fd, spin[cur], 0);
>>-
>>- /* Check if the child is signaling completion. */
>>- ret = read(link[0], &buf, 1);
>>- if ( ret == 1 || (ret < 0 && errno != EAGAIN))
>>- break;
>>-
>>- igt_spin_free(gem_fd, spin[cur]);
>>- spin[cur] = __igt_spin_new(gem_fd, .ahnd = ahnd,
>>- .engine = I915_EXEC_DEFAULT);
>>- cur ^= 1;
>>- }
>>-
>>- val = __pmu_read_single(fd, &ts[1]) - val;
>>-
>>- end_spin(gem_fd, spin[0], FLAG_SYNC);
>>- end_spin(gem_fd, spin[1], FLAG_SYNC);
>>- igt_spin_free(gem_fd, spin[0]);
>>- igt_spin_free(gem_fd, spin[1]);
>>- igt_waitchildren();
>>- close(fd);
>>- close(link[0]);
>>- put_ahnd(ahnd);
>>-
>>- /* Skip if child signals a problem with offlining a CPU. */
>>- igt_skip_on(buf == 's');
>>-
>>- assert_within_epsilon(val, ts[1] - ts[0], tolerance);
>>-}
>>-
>> static int target_num_interrupts(int i915)
>> {
>> const intel_ctx_cfg_t cfg = intel_ctx_cfg_all_physical(i915);
>>@@ -2650,12 +2514,6 @@ igt_main
>> all_busy_check_all(fd, ctx, num_engines,
>> TEST_BUSY | TEST_TRAILING_IDLE);
>>- /**
>>- * Test counters are not affected by CPU offline/online events.
>>- */
>>- igt_subtest("cpu-hotplug")
>>- cpu_hotplug(fd);
>>-
>> /**
>> * Test GPU frequency.
>> */
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2025-01-27 15:13 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-23 5:30 [PATCH i-g-t] tests/intel/perf_pmu: Drop cpu-hotplug subtest Lucas De Marchi
2025-01-23 8:23 ` ✓ i915.CI.BAT: success for " Patchwork
2025-01-23 8:24 ` Patchwork
2025-01-23 8:24 ` Patchwork
2025-01-23 9:38 ` ✓ Xe.CI.BAT: " Patchwork
2025-01-23 17:45 ` [PATCH i-g-t] " Lucas De Marchi
2025-01-25 0:13 ` Umesh Nerlige Ramappa
2025-01-23 20:15 ` ✗ Xe.CI.Full: failure for " Patchwork
2025-01-24 2:02 ` ✗ i915.CI.Full: " Patchwork
2025-01-27 8:53 ` [PATCH i-g-t] " Tvrtko Ursulin
2025-01-27 15:12 ` Lucas De Marchi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox