* [PATCH i-g-t 0/2] Modify some OA tests for simulation
@ 2025-03-05 0:57 Umesh Nerlige Ramappa
2025-03-05 0:57 ` [PATCH i-g-t 1/2] tests/intel/xe_oa: Do not discard single reports in oa-formats Umesh Nerlige Ramappa
` (4 more replies)
0 siblings, 5 replies; 13+ messages in thread
From: Umesh Nerlige Ramappa @ 2025-03-05 0:57 UTC (permalink / raw)
To: igt-dev, Ashutosh Dixit
Modify some OA tests to account for slow simulation execution.
Most tests just end up using faster OA exponents. Some tests that are
heavily dependent on timing are skipped. For other tests the scope is
reduced to run them in reasonable time.
Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
Umesh Nerlige Ramappa (2):
tests/intel/xe_oa: Do not discard single reports in oa-formats
tests/intel/xe_oa: Enable OA tests for simulation
tests/intel/xe_oa.c | 42 ++++++++++++++++++++++++++++++------------
1 file changed, 30 insertions(+), 12 deletions(-)
--
2.45.2
^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH i-g-t 1/2] tests/intel/xe_oa: Do not discard single reports in oa-formats
2025-03-05 0:57 [PATCH i-g-t 0/2] Modify some OA tests for simulation Umesh Nerlige Ramappa
@ 2025-03-05 0:57 ` Umesh Nerlige Ramappa
2025-03-05 4:56 ` Dixit, Ashutosh
2025-03-05 0:57 ` [PATCH i-g-t 2/2] tests/intel/xe_oa: Enable OA tests for simulation Umesh Nerlige Ramappa
` (3 subsequent siblings)
4 siblings, 1 reply; 13+ messages in thread
From: Umesh Nerlige Ramappa @ 2025-03-05 0:57 UTC (permalink / raw)
To: igt-dev, Ashutosh Dixit
Internally the test is expecting a single read call to return at least
two reports. If two reports are not read, the logic retries from the
beginning. This can easily fail if each read just returns one report. In
essence, many reports are available, but the logic causes test to fail.
Instead, count and use every report read when waiting for two reports to
be available.
Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
---
tests/intel/xe_oa.c | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c
index dd71683928bd..e5744d830d39 100644
--- a/tests/intel/xe_oa.c
+++ b/tests/intel/xe_oa.c
@@ -1314,13 +1314,14 @@ read_2_oa_reports(int format_id,
int max_reports = default_oa_buffer_size / format_size;
int buf_size = format_size * max_reports * 1.5;
uint8_t *buf = malloc(buf_size);
+ ssize_t len = 0;
int n = 0;
for (int i = 0; i < 1000; i++) {
u32 oa_status = 0;
- ssize_t len;
+ int ret;
- while ((len = read(stream_fd, buf, buf_size)) < 0 && errno == EINTR)
+ while ((ret = read(stream_fd, buf + len, buf_size)) < 0 && errno == EINTR)
;
if (errno == EIO) {
oa_status = get_stream_status(stream_fd);
@@ -1328,9 +1329,10 @@ read_2_oa_reports(int format_id,
continue;
}
- igt_assert(len > 0);
- igt_debug("read %d bytes\n", (int)len);
+ igt_assert(ret > 0);
+ igt_debug("read %d bytes\n", (int)ret);
+ len += ret;
/* Need at least 2 reports */
if (len < 2 * format_size)
continue;
--
2.45.2
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH i-g-t 2/2] tests/intel/xe_oa: Enable OA tests for simulation
2025-03-05 0:57 [PATCH i-g-t 0/2] Modify some OA tests for simulation Umesh Nerlige Ramappa
2025-03-05 0:57 ` [PATCH i-g-t 1/2] tests/intel/xe_oa: Do not discard single reports in oa-formats Umesh Nerlige Ramappa
@ 2025-03-05 0:57 ` Umesh Nerlige Ramappa
2025-03-05 5:01 ` Dixit, Ashutosh
2025-03-05 3:23 ` ✗ Xe.CI.BAT: failure for Modify some " Patchwork
` (2 subsequent siblings)
4 siblings, 1 reply; 13+ messages in thread
From: Umesh Nerlige Ramappa @ 2025-03-05 0:57 UTC (permalink / raw)
To: igt-dev, Ashutosh Dixit
Simulation runs are slow, so account for that by modifying the scope of
the tests.
- Set parameters specific to simulation during init.
- Skip tests that are heavily reliant on timing and that only test SW
functionality.
Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
---
tests/intel/xe_oa.c | 32 ++++++++++++++++++++++++--------
1 file changed, 24 insertions(+), 8 deletions(-)
diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c
index e5744d830d39..06d324159211 100644
--- a/tests/intel/xe_oa.c
+++ b/tests/intel/xe_oa.c
@@ -1111,13 +1111,25 @@ init_sys_info(void)
intel_xe_perf_load_perf_configs(intel_xe_perf, drm_fd);
- min_oa_exponent = 5;
- max_oa_exponent = 20;
- rc_width = 1920;
- rc_height = 1080;
- buffer_fill_size = SZ_16M;
- num_buf_sizes = ARRAY_SIZE(buf_sizes);
- oa_exponent_default = max_oa_exponent_for_period_lte(1000000);
+ if (igt_run_in_simulation()) {
+ igt_debug("SIMULATION run\n");
+ min_oa_exponent = 5;
+ max_oa_exponent = 10;
+ rc_width = 64;
+ rc_height = 36;
+ buffer_fill_size = SZ_128K;
+ num_buf_sizes = 3;
+ oa_exponent_default = max_oa_exponent_for_period_lte(1000);
+ } else {
+ igt_debug("HW run\n");
+ min_oa_exponent = 5;
+ max_oa_exponent = 20;
+ rc_width = 1920;
+ rc_height = 1080;
+ buffer_fill_size = SZ_16M;
+ num_buf_sizes = ARRAY_SIZE(buf_sizes);
+ oa_exponent_default = max_oa_exponent_for_period_lte(1000000);
+ }
default_oa_buffer_size = get_default_oa_buffer_size(drm_fd);
igt_debug("default_oa_buffer_size: %zu\n", default_oa_buffer_size);
@@ -4758,6 +4770,7 @@ igt_main
test_enable_disable(hwe);
igt_subtest_with_dynamic("blocking") {
+ igt_require(!igt_run_in_simulation());
__for_one_hwe_in_oag(hwe)
test_blocking(40 * 1000 * 1000 /* 40ms oa period */,
false /* set_kernel_hrtimer */,
@@ -4766,6 +4779,7 @@ igt_main
}
igt_subtest_with_dynamic("polling") {
+ igt_require(!igt_run_in_simulation());
__for_one_hwe_in_oag(hwe)
test_polling(40 * 1000 * 1000 /* 40ms oa period */,
false /* set_kernel_hrtimer */,
@@ -4805,8 +4819,10 @@ igt_main
igt_subtest("oa-unit-exclusive-stream-exec-q")
test_oa_unit_exclusive_stream(false);
- igt_subtest("oa-unit-concurrent-oa-buffer-read")
+ igt_subtest("oa-unit-concurrent-oa-buffer-read") {
+ igt_require(!igt_run_in_simulation());
test_oa_unit_concurrent_oa_buffer_read();
+ }
}
igt_subtest("rc6-disable") {
--
2.45.2
^ permalink raw reply related [flat|nested] 13+ messages in thread
* ✗ Xe.CI.BAT: failure for Modify some OA tests for simulation
2025-03-05 0:57 [PATCH i-g-t 0/2] Modify some OA tests for simulation Umesh Nerlige Ramappa
2025-03-05 0:57 ` [PATCH i-g-t 1/2] tests/intel/xe_oa: Do not discard single reports in oa-formats Umesh Nerlige Ramappa
2025-03-05 0:57 ` [PATCH i-g-t 2/2] tests/intel/xe_oa: Enable OA tests for simulation Umesh Nerlige Ramappa
@ 2025-03-05 3:23 ` Patchwork
2025-03-05 16:17 ` Umesh Nerlige Ramappa
2025-03-05 3:44 ` ✗ i915.CI.BAT: " Patchwork
2025-03-05 4:25 ` ✗ Xe.CI.Full: " Patchwork
4 siblings, 1 reply; 13+ messages in thread
From: Patchwork @ 2025-03-05 3:23 UTC (permalink / raw)
To: Umesh Nerlige Ramappa; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1557 bytes --]
== Series Details ==
Series: Modify some OA tests for simulation
URL : https://patchwork.freedesktop.org/series/145805/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8260_BAT -> XEIGTPW_12701_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12701_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12701_BAT, 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 (8 -> 8)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12701_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@xe_intel_bb@intel-bb-blit-x:
- bat-adlp-vf: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/bat-adlp-vf/igt@xe_intel_bb@intel-bb-blit-x.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/bat-adlp-vf/igt@xe_intel_bb@intel-bb-blit-x.html
Build changes
-------------
* IGT: IGT_8260 -> IGTPW_12701
IGTPW_12701: 12701
IGT_8260: 8260
xe-2754-ff2d693d88726e29a1d87291105135c31c21fa26: ff2d693d88726e29a1d87291105135c31c21fa26
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/index.html
[-- Attachment #2: Type: text/html, Size: 2139 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ i915.CI.BAT: failure for Modify some OA tests for simulation
2025-03-05 0:57 [PATCH i-g-t 0/2] Modify some OA tests for simulation Umesh Nerlige Ramappa
` (2 preceding siblings ...)
2025-03-05 3:23 ` ✗ Xe.CI.BAT: failure for Modify some " Patchwork
@ 2025-03-05 3:44 ` Patchwork
2025-03-05 16:17 ` Umesh Nerlige Ramappa
2025-03-05 4:25 ` ✗ Xe.CI.Full: " Patchwork
4 siblings, 1 reply; 13+ messages in thread
From: Patchwork @ 2025-03-05 3:44 UTC (permalink / raw)
To: Umesh Nerlige Ramappa; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 9152 bytes --]
== Series Details ==
Series: Modify some OA tests for simulation
URL : https://patchwork.freedesktop.org/series/145805/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8260 -> IGTPW_12701
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12701 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12701, 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_12701/index.html
Participating hosts (43 -> 44)
------------------------------
Additional (2): fi-glk-j4005 bat-arlh-2
Missing (1): fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12701:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip@basic-flip-vs-wf_vblank:
- bat-apl-1: [PASS][1] -> [DMESG-WARN][2] +1 other test dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8260/bat-apl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12701/bat-apl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html
Known issues
------------
Here are the changes found in IGTPW_12701 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-arlh-2: NOTRUN -> [SKIP][3] ([i915#11346] / [i915#9318])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12701/bat-arlh-2/igt@debugfs_test@basic-hwmon.html
* igt@fbdev@eof:
- bat-arlh-2: NOTRUN -> [SKIP][4] ([i915#11345] / [i915#11346]) +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12701/bat-arlh-2/igt@fbdev@eof.html
* igt@fbdev@info:
- bat-arlh-2: NOTRUN -> [SKIP][5] ([i915#11346] / [i915#1849])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12701/bat-arlh-2/igt@fbdev@info.html
* igt@gem_huc_copy@huc-copy:
- fi-glk-j4005: NOTRUN -> [SKIP][6] ([i915#2190])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12701/fi-glk-j4005/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- bat-arlh-2: NOTRUN -> [SKIP][7] ([i915#10213] / [i915#11346] / [i915#11671]) +3 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12701/bat-arlh-2/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@parallel-random-engines:
- fi-glk-j4005: NOTRUN -> [SKIP][8] ([i915#4613]) +3 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12701/fi-glk-j4005/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_mmap@basic:
- bat-arlh-2: NOTRUN -> [SKIP][9] ([i915#11343] / [i915#11346])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12701/bat-arlh-2/igt@gem_mmap@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-arlh-2: NOTRUN -> [SKIP][10] ([i915#10197] / [i915#10211] / [i915#11346] / [i915#11725])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12701/bat-arlh-2/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_blits@basic:
- bat-arlh-2: NOTRUN -> [SKIP][11] ([i915#11346] / [i915#12637]) +4 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12701/bat-arlh-2/igt@gem_tiled_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-arlh-2: NOTRUN -> [SKIP][12] ([i915#10206] / [i915#11346] / [i915#11724])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12701/bat-arlh-2/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-arlh-2: NOTRUN -> [SKIP][13] ([i915#10209] / [i915#11346] / [i915#11681])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12701/bat-arlh-2/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@workarounds:
- bat-mtlp-9: [PASS][14] -> [DMESG-FAIL][15] ([i915#12061]) +1 other test dmesg-fail
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8260/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12701/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-arlh-2: NOTRUN -> [SKIP][16] ([i915#10200] / [i915#11346] / [i915#11666] / [i915#12203])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12701/bat-arlh-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- bat-arlh-2: NOTRUN -> [SKIP][17] ([i915#10200] / [i915#11346] / [i915#11666]) +8 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12701/bat-arlh-2/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_psr@psr-primary-page-flip:
- fi-glk-j4005: NOTRUN -> [SKIP][18] +10 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12701/fi-glk-j4005/igt@kms_psr@psr-primary-page-flip.html
- bat-arlh-2: NOTRUN -> [SKIP][19] ([i915#11346]) +32 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12701/bat-arlh-2/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-arlh-2: NOTRUN -> [SKIP][20] ([i915#10208] / [i915#11346] / [i915#8809])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12701/bat-arlh-2/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-read:
- bat-arlh-2: NOTRUN -> [SKIP][21] ([i915#10212] / [i915#11346] / [i915#11726])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12701/bat-arlh-2/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-read:
- bat-arlh-2: NOTRUN -> [SKIP][22] ([i915#10214] / [i915#11346] / [i915#11726])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12701/bat-arlh-2/igt@prime_vgem@basic-read.html
* igt@prime_vgem@basic-write:
- bat-arlh-2: NOTRUN -> [SKIP][23] ([i915#10216] / [i915#11346] / [i915#11723])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12701/bat-arlh-2/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-jsl-1: [DMESG-WARN][24] -> [PASS][25] +1 other test pass
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8260/bat-jsl-1/igt@i915_selftest@live.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12701/bat-jsl-1/igt@i915_selftest@live.html
[i915#10197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10197
[i915#10200]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10200
[i915#10206]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10206
[i915#10208]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10208
[i915#10209]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10209
[i915#10211]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10211
[i915#10212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10212
[i915#10213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10213
[i915#10214]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10214
[i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216
[i915#11343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11343
[i915#11345]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11345
[i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346
[i915#11666]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11666
[i915#11671]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11671
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11723
[i915#11724]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11724
[i915#11725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11725
[i915#11726]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11726
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12203]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12203
[i915#12637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12637
[i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8260 -> IGTPW_12701
CI-20190529: 20190529
CI_DRM_16222: ff2d693d88726e29a1d87291105135c31c21fa26 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12701: 12701
IGT_8260: 8260
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12701/index.html
[-- Attachment #2: Type: text/html, Size: 11585 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ Xe.CI.Full: failure for Modify some OA tests for simulation
2025-03-05 0:57 [PATCH i-g-t 0/2] Modify some OA tests for simulation Umesh Nerlige Ramappa
` (3 preceding siblings ...)
2025-03-05 3:44 ` ✗ i915.CI.BAT: " Patchwork
@ 2025-03-05 4:25 ` Patchwork
2025-03-05 16:16 ` Umesh Nerlige Ramappa
4 siblings, 1 reply; 13+ messages in thread
From: Patchwork @ 2025-03-05 4:25 UTC (permalink / raw)
To: Umesh Nerlige Ramappa; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 94907 bytes --]
== Series Details ==
Series: Modify some OA tests for simulation
URL : https://patchwork.freedesktop.org/series/145805/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8260_full -> XEIGTPW_12701_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12701_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12701_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_12701_full:
### IGT changes ###
#### Possible regressions ####
* igt@xe_eu_stall@blocking-read:
- shard-dg2-set2: NOTRUN -> [SKIP][1] +1 other test skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-464/igt@xe_eu_stall@blocking-read.html
Known issues
------------
Here are the changes found in XEIGTPW_12701_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@hotreplug-lateclose:
- shard-lnl: NOTRUN -> [ABORT][2] ([Intel XE#3914]) +1 other test abort
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-7/igt@core_hotunplug@hotreplug-lateclose.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2-set2: NOTRUN -> [SKIP][3] ([Intel XE#623])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-463/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_async_flips@async-flip-suspend-resume@pipe-d-hdmi-a-6:
- shard-dg2-set2: [PASS][4] -> [DMESG-WARN][5] ([Intel XE#4330]) +49 other tests dmesg-warn
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-463/igt@kms_async_flips@async-flip-suspend-resume@pipe-d-hdmi-a-6.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-464/igt@kms_async_flips@async-flip-suspend-resume@pipe-d-hdmi-a-6.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-2-4-rc-ccs-cc:
- shard-dg2-set2: NOTRUN -> [SKIP][6] ([Intel XE#3767]) +15 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-432/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-2-4-rc-ccs-cc.html
* igt@kms_async_flips@invalid-async-flip:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#873])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-4/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_async_flips@test-cursor-atomic:
- shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#664])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-5/igt@kms_async_flips@test-cursor-atomic.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2327]) +7 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-4/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#3658]) +2 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#316]) +7 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-434/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1407]) +4 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-5/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#607])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-7/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#610])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-4/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
- shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#610])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-464/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1428])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-6/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#1124]) +16 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-463/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1124]) +9 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-3/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#1124]) +14 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#2191]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-5/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#2191]) +3 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-433/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-1-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#367]) +2 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-8/igt@kms_bw@linear-tiling-1-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-2-displays-3840x2160p:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#367]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-464/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#787]) +216 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-433/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#2887]) +15 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-4/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2887]) +21 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-4/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#3432]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#3432]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][30] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) +1 other test incomplete
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#2907]) +2 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2652] / [Intel XE#787]) +18 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-7/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-d-dp-2:
- shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#455] / [Intel XE#787]) +59 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-d-dp-2.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#4418])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-463/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#306])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-6/igt@kms_chamelium_color@ctm-blue-to-red.html
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2325])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-4/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#306]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-432/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2252]) +12 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-2/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#373]) +18 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-436/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#373]) +8 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-5/igt@kms_chamelium_hpd@hdmi-hpd-storm.html
* igt@kms_content_protection@legacy:
- shard-dg2-set2: NOTRUN -> [FAIL][41] ([Intel XE#1178]) +2 other tests fail
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-463/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-0:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#3278])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-3/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@uevent:
- shard-bmg: NOTRUN -> [FAIL][43] ([Intel XE#1188]) +1 other test fail
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-7/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#308]) +4 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#2321]) +2 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2320]) +6 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-8/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#1424]) +7 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-4/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2321]) +4 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-dg2-set2: [PASS][49] -> [SKIP][50] ([Intel XE#309]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-434/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-464/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#309]) +6 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-5/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2286]) +2 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2291]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
- shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#309])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-464/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-bmg: [PASS][55] -> [SKIP][56] ([Intel XE#2291])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#323]) +2 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#323]) +3 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-433/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#1508])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-7/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#4356])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-464/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#2244]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2244]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
- shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#4422]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-436/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#4422])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-7/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#4422])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-5/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#776]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-8/igt@kms_fbcon_fbt@psr-suspend.html
- shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#776])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-432/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#701])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-463/igt@kms_feature_discovery@chamelium.html
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#701])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-3/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-3x:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#703])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-5/igt@kms_feature_discovery@display-3x.html
- shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#703])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-434/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@psr1:
- shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#1135])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-434/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-bmg: [PASS][73] -> [SKIP][74] ([Intel XE#2316]) +5 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-bmg-8/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-4/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][75] -> [FAIL][76] ([Intel XE#301] / [Intel XE#3321])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-dp2-hdmi-a3:
- shard-bmg: [PASS][77] -> [DMESG-FAIL][78] ([Intel XE#4330])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-dp2-hdmi-a3.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][79] -> [DMESG-FAIL][80] ([Intel XE#4330]) +1 other test dmesg-fail
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3:
- shard-bmg: [PASS][81] -> [FAIL][82] ([Intel XE#3321])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-rmfb:
- shard-dg2-set2: [PASS][83] -> [DMESG-WARN][84] ([Intel XE#2955])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-436/igt@kms_flip@2x-flip-vs-rmfb.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-432/igt@kms_flip@2x-flip-vs-rmfb.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#1421]) +5 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-7/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#2316]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-4/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#310]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-464/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4:
- shard-dg2-set2: [PASS][88] -> [FAIL][89] ([Intel XE#301]) +1 other test fail
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [PASS][90] -> [FAIL][91] ([Intel XE#301]) +3 other tests fail
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip@flip-vs-suspend:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][92] ([Intel XE#2955])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-432/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3:
- shard-bmg: NOTRUN -> [DMESG-WARN][93] ([Intel XE#4330]) +11 other tests dmesg-warn
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-7/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#1401] / [Intel XE#1745]) +4 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#1401]) +4 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2293] / [Intel XE#2380]) +6 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2380]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2293]) +6 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2311]) +33 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#651]) +41 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-suspend.html
- shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#651]) +7 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-suspend.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#656]) +13 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#4141]) +21 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt:
- shard-dg2-set2: [PASS][104] -> [SKIP][105] ([Intel XE#656]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2313]) +39 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#658])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#4439])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-434/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#653]) +45 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2312]) +17 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#656]) +45 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_hdmi_inject@inject-audio:
- shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#1470] / [Intel XE#2853])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-8/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@static-toggle-dpms:
- shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#1503])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-1/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_joiner@basic-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#346])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-8/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#4328])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-464/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#2927])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-8/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#2927]) +1 other test skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-464/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#2925])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-464/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_plane_lowres@tiling-none:
- shard-bmg: NOTRUN -> [DMESG-WARN][119] ([Intel XE#4091])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-7/igt@kms_plane_lowres@tiling-none.html
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][120] ([Intel XE#4091] / [Intel XE#4330])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-433/igt@kms_plane_lowres@tiling-none.html
* igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#599]) +3 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-5/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html
* igt@kms_plane_lowres@tiling-y:
- shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#2393])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-8/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@tiling-none:
- shard-dg2-set2: [PASS][123] -> [DMESG-WARN][124] ([Intel XE#4361])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-436/igt@kms_plane_multiple@tiling-none.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-433/igt@kms_plane_multiple@tiling-none.html
* igt@kms_plane_multiple@tiling-y:
- shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#2493])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-1/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
- shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#2763]) +14 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c:
- shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#2763]) +19 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-d:
- shard-bmg: NOTRUN -> [DMESG-WARN][128] ([Intel XE#2566] / [Intel XE#4330]) +1 other test dmesg-warn
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-d.html
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][129] ([Intel XE#2566] / [Intel XE#4330]) +1 other test dmesg-warn
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-432/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-d.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers:
- shard-bmg: [PASS][130] -> [DMESG-WARN][131] ([Intel XE#2566] / [Intel XE#4330]) +2 other tests dmesg-warn
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-bmg-2/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-7/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-d:
- shard-dg2-set2: [PASS][132] -> [DMESG-WARN][133] ([Intel XE#2566] / [Intel XE#4330]) +3 other tests dmesg-warn
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-464/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-d.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-464/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d:
- shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#2763] / [Intel XE#455]) +7 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b:
- shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#2763]) +11 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-464/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html
* igt@kms_pm_backlight@bad-brightness:
- shard-bmg: NOTRUN -> [SKIP][136] ([Intel XE#870])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-4/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#3309])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-432/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#908])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-436/igt@kms_pm_dc@dc6-dpms.html
- shard-lnl: NOTRUN -> [FAIL][139] ([Intel XE#1430])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-7/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#2499])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-7/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-lnl: [PASS][141] -> [DMESG-WARN][142] ([Intel XE#2042] / [Intel XE#2932])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-lnl-8/igt@kms_pm_rpm@system-suspend-modeset.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-1/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][143] ([Intel XE#2893]) +3 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-8/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][144] ([Intel XE#1489]) +13 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-4/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#1489]) +13 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-434/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2-set2: NOTRUN -> [SKIP][146] ([Intel XE#1122]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-433/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-pr-sprite-plane-onoff:
- shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#1406])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-6/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr2-cursor-plane-move:
- shard-bmg: NOTRUN -> [SKIP][148] ([Intel XE#2234] / [Intel XE#2850]) +22 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-7/igt@kms_psr@fbc-psr2-cursor-plane-move.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#2850] / [Intel XE#929]) +25 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-bmg: NOTRUN -> [SKIP][150] ([Intel XE#3414] / [Intel XE#3904]) +2 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-4/igt@kms_rotation_crc@primary-rotation-90.html
- shard-lnl: NOTRUN -> [SKIP][151] ([Intel XE#3414] / [Intel XE#3904])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-1/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#3414])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-464/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@sprite-rotation-180:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][153] ([Intel XE#4330]) +37 other tests dmesg-warn
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-433/igt@kms_rotation_crc@sprite-rotation-180.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#2413])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-7/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-bmg: NOTRUN -> [SKIP][155] ([Intel XE#1435])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-4/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg2-set2: NOTRUN -> [SKIP][156] ([Intel XE#330])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-434/igt@kms_tv_load_detect@load-detect.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1:
- shard-lnl: [PASS][157] -> [FAIL][158] ([Intel XE#899])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-lnl-6/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-1/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [PASS][159] -> [FAIL][160] ([Intel XE#4459]) +1 other test fail
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-lnl-6/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-6/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@kms_vrr@flipline:
- shard-dg2-set2: NOTRUN -> [SKIP][161] ([Intel XE#455]) +29 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-434/igt@kms_vrr@flipline.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-bmg: NOTRUN -> [SKIP][162] ([Intel XE#1499]) +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-4/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-bmg: NOTRUN -> [SKIP][163] ([Intel XE#756])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-4/igt@kms_writeback@writeback-check-output-xrgb2101010.html
- shard-dg2-set2: NOTRUN -> [SKIP][164] ([Intel XE#756])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-436/igt@kms_writeback@writeback-check-output-xrgb2101010.html
- shard-lnl: NOTRUN -> [SKIP][165] ([Intel XE#756])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-1/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-dg2-set2: NOTRUN -> [SKIP][166] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-433/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
- shard-bmg: NOTRUN -> [SKIP][167] ([Intel XE#1091] / [Intel XE#2849])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-7/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_compute_preempt@compute-preempt-many:
- shard-dg2-set2: NOTRUN -> [SKIP][168] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-464/igt@xe_compute_preempt@compute-preempt-many.html
* igt@xe_copy_basic@mem-copy-linear-0xfffe:
- shard-dg2-set2: NOTRUN -> [SKIP][169] ([Intel XE#1123]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-463/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
* igt@xe_copy_basic@mem-set-linear-0x3fff:
- shard-dg2-set2: NOTRUN -> [SKIP][170] ([Intel XE#1126]) +1 other test skip
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-464/igt@xe_copy_basic@mem-set-linear-0x3fff.html
* igt@xe_eudebug@basic-close:
- shard-dg2-set2: NOTRUN -> [SKIP][171] ([Intel XE#2905]) +17 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-464/igt@xe_eudebug@basic-close.html
* igt@xe_eudebug@basic-vm-bind-ufence-delay-ack:
- shard-dg2-set2: NOTRUN -> [SKIP][172] ([Intel XE#3889]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-463/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html
- shard-lnl: NOTRUN -> [SKIP][173] ([Intel XE#3889]) +1 other test skip
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-3/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html
* igt@xe_eudebug@discovery-empty:
- shard-bmg: NOTRUN -> [SKIP][174] ([Intel XE#2905]) +11 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-4/igt@xe_eudebug@discovery-empty.html
* igt@xe_eudebug_online@debugger-reopen:
- shard-lnl: NOTRUN -> [SKIP][175] ([Intel XE#2905]) +8 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-1/igt@xe_eudebug_online@debugger-reopen.html
* igt@xe_evict@evict-beng-small-multi-vm:
- shard-bmg: NOTRUN -> [DMESG-WARN][176] ([Intel XE#1473] / [Intel XE#4330]) +1 other test dmesg-warn
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-7/igt@xe_evict@evict-beng-small-multi-vm.html
* igt@xe_evict@evict-small-multi-vm:
- shard-dg2-set2: [PASS][177] -> [DMESG-WARN][178] ([Intel XE#1473] / [Intel XE#4330])
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-463/igt@xe_evict@evict-small-multi-vm.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-433/igt@xe_evict@evict-small-multi-vm.html
* igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen:
- shard-lnl: NOTRUN -> [SKIP][179] ([Intel XE#688]) +4 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-8/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html
* igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap:
- shard-lnl: NOTRUN -> [SKIP][180] ([Intel XE#1392]) +11 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-5/igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind:
- shard-dg2-set2: [PASS][181] -> [SKIP][182] ([Intel XE#1392]) +4 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-436/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][183] ([Intel XE#2322]) +15 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-2/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_basic@multigpu-once-rebind:
- shard-dg2-set2: NOTRUN -> [SKIP][184] ([Intel XE#1392]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-432/igt@xe_exec_basic@multigpu-once-rebind.html
* igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][185] ([Intel XE#288]) +42 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-436/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
* igt@xe_exec_threads@threads-hang-rebind:
- shard-bmg: [PASS][186] -> [DMESG-WARN][187] ([Intel XE#4330]) +28 other tests dmesg-warn
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-bmg-7/igt@xe_exec_threads@threads-hang-rebind.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-4/igt@xe_exec_threads@threads-hang-rebind.html
* igt@xe_fault_injection@vm-create-fail-xe_pt_create:
- shard-lnl: [PASS][188] -> [DMESG-WARN][189] ([Intel XE#2932])
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-lnl-3/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-1/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html
* igt@xe_mmap@small-bar:
- shard-dg2-set2: NOTRUN -> [SKIP][190] ([Intel XE#512])
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-463/igt@xe_mmap@small-bar.html
* igt@xe_mmap@vram:
- shard-lnl: NOTRUN -> [SKIP][191] ([Intel XE#1416])
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-3/igt@xe_mmap@vram.html
* igt@xe_module_load@force-load:
- shard-dg2-set2: NOTRUN -> [SKIP][192] ([Intel XE#378])
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-434/igt@xe_module_load@force-load.html
* igt@xe_module_load@load:
- shard-lnl: ([PASS][193], [PASS][194], [PASS][195], [PASS][196], [PASS][197], [PASS][198], [PASS][199], [PASS][200], [PASS][201], [PASS][202], [PASS][203], [PASS][204], [PASS][205], [PASS][206], [PASS][207], [PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214], [PASS][215], [PASS][216], [PASS][217]) -> ([PASS][218], [PASS][219], [PASS][220], [PASS][221], [PASS][222], [PASS][223], [SKIP][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]) ([Intel XE#378])
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-lnl-1/igt@xe_module_load@load.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-lnl-1/igt@xe_module_load@load.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-lnl-3/igt@xe_module_load@load.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-lnl-3/igt@xe_module_load@load.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-lnl-4/igt@xe_module_load@load.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-lnl-4/igt@xe_module_load@load.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-lnl-6/igt@xe_module_load@load.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-lnl-6/igt@xe_module_load@load.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-lnl-6/igt@xe_module_load@load.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-lnl-5/igt@xe_module_load@load.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-lnl-7/igt@xe_module_load@load.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-lnl-4/igt@xe_module_load@load.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-lnl-8/igt@xe_module_load@load.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-lnl-4/igt@xe_module_load@load.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-lnl-8/igt@xe_module_load@load.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-lnl-5/igt@xe_module_load@load.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-lnl-5/igt@xe_module_load@load.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-lnl-8/igt@xe_module_load@load.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-lnl-8/igt@xe_module_load@load.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-lnl-7/igt@xe_module_load@load.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-lnl-7/igt@xe_module_load@load.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-lnl-5/igt@xe_module_load@load.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-lnl-3/igt@xe_module_load@load.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-lnl-3/igt@xe_module_load@load.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-lnl-1/igt@xe_module_load@load.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-4/igt@xe_module_load@load.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-3/igt@xe_module_load@load.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-8/igt@xe_module_load@load.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-7/igt@xe_module_load@load.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-4/igt@xe_module_load@load.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-3/igt@xe_module_load@load.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-5/igt@xe_module_load@load.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-4/igt@xe_module_load@load.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-4/igt@xe_module_load@load.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-7/igt@xe_module_load@load.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-6/igt@xe_module_load@load.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-7/igt@xe_module_load@load.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-5/igt@xe_module_load@load.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-5/igt@xe_module_load@load.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-6/igt@xe_module_load@load.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-1/igt@xe_module_load@load.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-5/igt@xe_module_load@load.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-8/igt@xe_module_load@load.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-3/igt@xe_module_load@load.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-1/igt@xe_module_load@load.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-6/igt@xe_module_load@load.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-8/igt@xe_module_load@load.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-6/igt@xe_module_load@load.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-6/igt@xe_module_load@load.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-1/igt@xe_module_load@load.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-8/igt@xe_module_load@load.html
- shard-dg2-set2: ([PASS][244], [PASS][245], [PASS][246], [PASS][247], [PASS][248], [PASS][249], [PASS][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254], [PASS][255], [PASS][256], [PASS][257], [PASS][258], [PASS][259], [PASS][260], [PASS][261], [PASS][262], [PASS][263], [PASS][264], [PASS][265], [PASS][266], [PASS][267]) -> ([PASS][268], [PASS][269], [PASS][270], [PASS][271], [SKIP][272], [PASS][273], [PASS][274], [PASS][275], [PASS][276], [PASS][277], [PASS][278], [PASS][279], [PASS][280], [PASS][281], [PASS][282], [PASS][283], [PASS][284], [PASS][285], [PASS][286], [PASS][287], [PASS][288], [PASS][289], [PASS][290], [PASS][291], [PASS][292], [PASS][293]) ([Intel XE#378])
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-432/igt@xe_module_load@load.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-463/igt@xe_module_load@load.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-432/igt@xe_module_load@load.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-463/igt@xe_module_load@load.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-463/igt@xe_module_load@load.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-463/igt@xe_module_load@load.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-436/igt@xe_module_load@load.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-436/igt@xe_module_load@load.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-436/igt@xe_module_load@load.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-433/igt@xe_module_load@load.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-432/igt@xe_module_load@load.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-436/igt@xe_module_load@load.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-436/igt@xe_module_load@load.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-463/igt@xe_module_load@load.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-434/igt@xe_module_load@load.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-434/igt@xe_module_load@load.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-434/igt@xe_module_load@load.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-464/igt@xe_module_load@load.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-464/igt@xe_module_load@load.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-464/igt@xe_module_load@load.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-434/igt@xe_module_load@load.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-433/igt@xe_module_load@load.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-433/igt@xe_module_load@load.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-433/igt@xe_module_load@load.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-432/igt@xe_module_load@load.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-432/igt@xe_module_load@load.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-463/igt@xe_module_load@load.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-432/igt@xe_module_load@load.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-434/igt@xe_module_load@load.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-463/igt@xe_module_load@load.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-436/igt@xe_module_load@load.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-433/igt@xe_module_load@load.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-436/igt@xe_module_load@load.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-433/igt@xe_module_load@load.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-434/igt@xe_module_load@load.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-463/igt@xe_module_load@load.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-463/igt@xe_module_load@load.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-464/igt@xe_module_load@load.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-434/igt@xe_module_load@load.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-434/igt@xe_module_load@load.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-433/igt@xe_module_load@load.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-434/igt@xe_module_load@load.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-436/igt@xe_module_load@load.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-436/igt@xe_module_load@load.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-464/igt@xe_module_load@load.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-464/igt@xe_module_load@load.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-464/igt@xe_module_load@load.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-436/igt@xe_module_load@load.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-433/igt@xe_module_load@load.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-432/igt@xe_module_load@load.html
* igt@xe_oa@closed-fd-and-unmapped-access:
- shard-dg2-set2: NOTRUN -> [SKIP][294] ([Intel XE#2541] / [Intel XE#3573]) +9 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-433/igt@xe_oa@closed-fd-and-unmapped-access.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-lnl: NOTRUN -> [SKIP][295] ([Intel XE#2248])
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-3/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_pat@display-vs-wb-transient:
- shard-dg2-set2: NOTRUN -> [SKIP][296] ([Intel XE#1337])
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-434/igt@xe_pat@display-vs-wb-transient.html
* igt@xe_pat@pat-index-xelpg:
- shard-bmg: NOTRUN -> [SKIP][297] ([Intel XE#2236])
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-4/igt@xe_pat@pat-index-xelpg.html
- shard-dg2-set2: NOTRUN -> [SKIP][298] ([Intel XE#979])
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-463/igt@xe_pat@pat-index-xelpg.html
- shard-lnl: NOTRUN -> [SKIP][299] ([Intel XE#979])
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-4/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@write:
- shard-bmg: NOTRUN -> [SKIP][300] ([Intel XE#2427])
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-8/igt@xe_peer2peer@write.html
* igt@xe_pm@d3cold-basic-exec:
- shard-dg2-set2: NOTRUN -> [SKIP][301] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-432/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-lnl: NOTRUN -> [SKIP][302] ([Intel XE#2284] / [Intel XE#366])
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-1/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_pm@d3cold-mocs:
- shard-bmg: NOTRUN -> [SKIP][303] ([Intel XE#2284]) +1 other test skip
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-2/igt@xe_pm@d3cold-mocs.html
- shard-dg2-set2: NOTRUN -> [SKIP][304] ([Intel XE#2284])
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-434/igt@xe_pm@d3cold-mocs.html
- shard-lnl: NOTRUN -> [SKIP][305] ([Intel XE#2284])
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-3/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@d3hot-mmap-vram:
- shard-lnl: NOTRUN -> [SKIP][306] ([Intel XE#1948])
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-4/igt@xe_pm@d3hot-mmap-vram.html
* igt@xe_pm@s3-d3hot-basic-exec:
- shard-bmg: [PASS][307] -> [DMESG-WARN][308] ([Intel XE#4330] / [Intel XE#569]) +2 other tests dmesg-warn
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-bmg-2/igt@xe_pm@s3-d3hot-basic-exec.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-7/igt@xe_pm@s3-d3hot-basic-exec.html
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][309] ([Intel XE#4330] / [Intel XE#569])
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-433/igt@xe_pm@s3-d3hot-basic-exec.html
* igt@xe_pm@s3-vm-bind-prefetch:
- shard-dg2-set2: [PASS][310] -> [DMESG-WARN][311] ([Intel XE#4330] / [Intel XE#569]) +1 other test dmesg-warn
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-434/igt@xe_pm@s3-vm-bind-prefetch.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-434/igt@xe_pm@s3-vm-bind-prefetch.html
* igt@xe_pm@s3-vm-bind-userptr:
- shard-bmg: NOTRUN -> [DMESG-WARN][312] ([Intel XE#4330] / [Intel XE#569]) +1 other test dmesg-warn
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-4/igt@xe_pm@s3-vm-bind-userptr.html
* igt@xe_pm@s4-mocs:
- shard-bmg: NOTRUN -> [ABORT][313] ([Intel XE#4268]) +1 other test abort
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-8/igt@xe_pm@s4-mocs.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-dg2-set2: NOTRUN -> [ABORT][314] ([Intel XE#4268])
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-436/igt@xe_pm@s4-vm-bind-userptr.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-dg2-set2: NOTRUN -> [SKIP][315] ([Intel XE#944]) +2 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-432/igt@xe_query@multigpu-query-invalid-extension.html
- shard-lnl: NOTRUN -> [SKIP][316] ([Intel XE#944])
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-1/igt@xe_query@multigpu-query-invalid-extension.html
* igt@xe_query@multigpu-query-mem-usage:
- shard-bmg: NOTRUN -> [SKIP][317] ([Intel XE#944]) +2 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-4/igt@xe_query@multigpu-query-mem-usage.html
* igt@xe_sriov_auto_provisioning@fair-allocation:
- shard-lnl: NOTRUN -> [SKIP][318] ([Intel XE#4130]) +1 other test skip
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-7/igt@xe_sriov_auto_provisioning@fair-allocation.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs:
- shard-bmg: NOTRUN -> [SKIP][319] ([Intel XE#4130]) +1 other test skip
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-2/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html
- shard-dg2-set2: NOTRUN -> [SKIP][320] ([Intel XE#4130]) +2 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-434/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets:
- shard-dg2-set2: NOTRUN -> [SKIP][321] ([Intel XE#4351])
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-434/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
- shard-bmg: NOTRUN -> [SKIP][322] ([Intel XE#4351])
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-7/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
#### Possible fixes ####
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [SKIP][323] ([Intel XE#2291]) -> [PASS][324] +1 other test pass
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-dg2-set2: [SKIP][325] ([Intel XE#455]) -> [PASS][326]
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-464/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-436/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_flip@2x-busy-flip:
- shard-bmg: [SKIP][327] ([Intel XE#2316]) -> [PASS][328]
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-bmg-4/igt@kms_flip@2x-busy-flip.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-8/igt@kms_flip@2x-busy-flip.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3:
- shard-bmg: [FAIL][329] ([Intel XE#3321]) -> [PASS][330] +5 other tests pass
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-dg2-set2: [SKIP][331] ([Intel XE#310]) -> [PASS][332] +1 other test pass
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-464/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-432/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@2x-plain-flip-interruptible@cd-hdmi-a6-dp4:
- shard-dg2-set2: [DMESG-WARN][333] ([Intel XE#4330]) -> [PASS][334] +24 other tests pass
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-463/igt@kms_flip@2x-plain-flip-interruptible@cd-hdmi-a6-dp4.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-433/igt@kms_flip@2x-plain-flip-interruptible@cd-hdmi-a6-dp4.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6:
- shard-dg2-set2: [FAIL][335] ([Intel XE#301]) -> [PASS][336] +1 other test pass
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6.html
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move:
- shard-dg2-set2: [SKIP][337] ([Intel XE#656]) -> [PASS][338] +2 other tests pass
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-dg2-set2: [SKIP][339] ([Intel XE#309]) -> [PASS][340] +1 other test pass
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-464/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-433/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format:
- shard-dg2-set2: [DMESG-WARN][341] ([Intel XE#2566] / [Intel XE#4330]) -> [PASS][342] +1 other test pass
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1:
- shard-lnl: [DMESG-WARN][343] ([Intel XE#324]) -> [PASS][344] +2 other tests pass
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-lnl-4/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1.html
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-lnl-8/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1.html
* igt@kms_vblank@ts-continuation-modeset-rpm:
- shard-bmg: [DMESG-WARN][345] ([Intel XE#4330]) -> [PASS][346] +14 other tests pass
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-bmg-4/igt@kms_vblank@ts-continuation-modeset-rpm.html
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-2/igt@kms_vblank@ts-continuation-modeset-rpm.html
* igt@xe_evict@evict-large-multi-vm:
- shard-dg2-set2: [DMESG-WARN][347] ([Intel XE#1473] / [Intel XE#4330]) -> [PASS][348]
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-433/igt@xe_evict@evict-large-multi-vm.html
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-432/igt@xe_evict@evict-large-multi-vm.html
* igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap:
- shard-dg2-set2: [SKIP][349] ([Intel XE#1392]) -> [PASS][350] +2 other tests pass
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-463/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html
* igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run:
- shard-dg2-set2: [ABORT][351] -> [PASS][352] +1 other test pass
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-432/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-463/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html
* igt@xe_module_load@many-reload:
- shard-bmg: [DMESG-WARN][353] -> [PASS][354]
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-bmg-2/igt@xe_module_load@many-reload.html
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-4/igt@xe_module_load@many-reload.html
* igt@xe_pm@s3-basic-exec:
- shard-dg2-set2: [DMESG-WARN][355] ([Intel XE#4330] / [Intel XE#569]) -> [PASS][356]
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-434/igt@xe_pm@s3-basic-exec.html
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-463/igt@xe_pm@s3-basic-exec.html
* igt@xe_spin_batch@spin-timestamp-check@engine-drm_xe_engine_class_video_decode:
- shard-dg2-set2: [DMESG-WARN][357] -> [PASS][358]
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-433/igt@xe_spin_batch@spin-timestamp-check@engine-drm_xe_engine_class_video_decode.html
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-463/igt@xe_spin_batch@spin-timestamp-check@engine-drm_xe_engine_class_video_decode.html
#### Warnings ####
* igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: [SKIP][359] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][360] ([Intel XE#787]) +2 other tests skip
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-464/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-6.html
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-433/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-6.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [INCOMPLETE][361] ([Intel XE#3862]) -> [DMESG-WARN][362] ([Intel XE#4199])
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-432/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: [SKIP][363] ([Intel XE#787]) -> [SKIP][364] ([Intel XE#455] / [Intel XE#787]) +4 other tests skip
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-434/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-6.html
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-464/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-6.html
* igt@kms_content_protection@atomic:
- shard-bmg: [FAIL][365] ([Intel XE#1178]) -> [DMESG-FAIL][366] ([Intel XE#4330]) +1 other test dmesg-fail
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-bmg-4/igt@kms_content_protection@atomic.html
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-4/igt@kms_content_protection@atomic.html
- shard-dg2-set2: [FAIL][367] ([Intel XE#1178]) -> [SKIP][368] ([Intel XE#455])
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-432/igt@kms_content_protection@atomic.html
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-464/igt@kms_content_protection@atomic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6:
- shard-dg2-set2: [SKIP][369] ([Intel XE#455] / [i915#3804]) -> [SKIP][370] ([i915#3804])
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-464/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-436/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-bmg: [FAIL][371] ([Intel XE#3321]) -> [DMESG-FAIL][372] ([Intel XE#4330])
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-dg2-set2: [FAIL][373] ([Intel XE#301]) -> [DMESG-FAIL][374] ([Intel XE#4330]) +1 other test dmesg-fail
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt:
- shard-bmg: [SKIP][375] ([Intel XE#2311]) -> [SKIP][376] ([Intel XE#2312]) +5 other tests skip
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff:
- shard-dg2-set2: [SKIP][377] ([Intel XE#656]) -> [SKIP][378] ([Intel XE#651]) +3 other tests skip
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff.html
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][379] ([Intel XE#2312]) -> [SKIP][380] ([Intel XE#4141]) +1 other test skip
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-dg2-set2: [SKIP][381] ([Intel XE#656]) -> [DMESG-WARN][382] ([Intel XE#4330])
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][383] ([Intel XE#4141]) -> [SKIP][384] ([Intel XE#2312]) +3 other tests skip
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][385] ([Intel XE#2312]) -> [SKIP][386] ([Intel XE#2311]) +7 other tests skip
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
- shard-dg2-set2: [SKIP][387] ([Intel XE#651]) -> [SKIP][388] ([Intel XE#656]) +6 other tests skip
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render:
- shard-bmg: [SKIP][389] ([Intel XE#2313]) -> [SKIP][390] ([Intel XE#2312]) +7 other tests skip
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt:
- shard-dg2-set2: [INCOMPLETE][391] ([Intel XE#2594]) -> [SKIP][392] ([Intel XE#653])
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][393] ([Intel XE#656]) -> [SKIP][394] ([Intel XE#653]) +2 other tests skip
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][395] ([Intel XE#653]) -> [SKIP][396] ([Intel XE#656]) +4 other tests skip
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][397] ([Intel XE#2312]) -> [SKIP][398] ([Intel XE#2313]) +3 other tests skip
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][399] ([Intel XE#3544]) -> [SKIP][400] ([Intel XE#3374] / [Intel XE#3544])
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-bmg-8/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-set2: [SKIP][401] ([Intel XE#362]) -> [SKIP][402] ([Intel XE#1500])
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/shard-dg2-464/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/shard-dg2-433/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337
[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#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416
[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#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[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#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[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#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948
[Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[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#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493
[Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566
[Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[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#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2932]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2932
[Intel XE#2955]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2955
[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#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#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#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#3914]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3914
[Intel XE#4091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4091
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4199]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4199
[Intel XE#4268]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4268
[Intel XE#4328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4328
[Intel XE#4330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4330
[Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351
[Intel XE#4356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4356
[Intel XE#4361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4361
[Intel XE#4418]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4418
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4439
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[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#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
[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#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
Build changes
-------------
* IGT: IGT_8260 -> IGTPW_12701
IGTPW_12701: 12701
IGT_8260: 8260
xe-2754-ff2d693d88726e29a1d87291105135c31c21fa26: ff2d693d88726e29a1d87291105135c31c21fa26
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/index.html
[-- Attachment #2: Type: text/html, Size: 111599 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t 1/2] tests/intel/xe_oa: Do not discard single reports in oa-formats
2025-03-05 0:57 ` [PATCH i-g-t 1/2] tests/intel/xe_oa: Do not discard single reports in oa-formats Umesh Nerlige Ramappa
@ 2025-03-05 4:56 ` Dixit, Ashutosh
2025-03-05 16:27 ` Umesh Nerlige Ramappa
0 siblings, 1 reply; 13+ messages in thread
From: Dixit, Ashutosh @ 2025-03-05 4:56 UTC (permalink / raw)
To: Umesh Nerlige Ramappa; +Cc: igt-dev
On Tue, 04 Mar 2025 16:57:15 -0800, Umesh Nerlige Ramappa wrote:
>
> Internally the test is expecting a single read call to return at least
> two reports. If two reports are not read, the logic retries from the
> beginning. This can easily fail if each read just returns one report.
OK, you mean 1000 reads each returning just one report.
> In essence, many reports are available, but the logic causes test to
> fail. Instead, count and use every report read when waiting for two
> reports to be available.
>
> Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
> ---
> tests/intel/xe_oa.c | 10 ++++++----
> 1 file changed, 6 insertions(+), 4 deletions(-)
>
> diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c
> index dd71683928bd..e5744d830d39 100644
> --- a/tests/intel/xe_oa.c
> +++ b/tests/intel/xe_oa.c
> @@ -1314,13 +1314,14 @@ read_2_oa_reports(int format_id,
> int max_reports = default_oa_buffer_size / format_size;
> int buf_size = format_size * max_reports * 1.5;
> uint8_t *buf = malloc(buf_size);
> + ssize_t len = 0;
> int n = 0;
>
> for (int i = 0; i < 1000; i++) {
> u32 oa_status = 0;
> - ssize_t len;
> + int ret;
>
> - while ((len = read(stream_fd, buf, buf_size)) < 0 && errno == EINTR)
> + while ((ret = read(stream_fd, buf + len, buf_size)) < 0 && errno == EINTR)
Probably never hit this but maybe 'buf_size - len' ? Otherwise:
Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
> ;
> if (errno == EIO) {
> oa_status = get_stream_status(stream_fd);
> @@ -1328,9 +1329,10 @@ read_2_oa_reports(int format_id,
> continue;
> }
>
> - igt_assert(len > 0);
> - igt_debug("read %d bytes\n", (int)len);
> + igt_assert(ret > 0);
> + igt_debug("read %d bytes\n", (int)ret);
>
> + len += ret;
> /* Need at least 2 reports */
> if (len < 2 * format_size)
> continue;
> --
> 2.45.2
>
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t 2/2] tests/intel/xe_oa: Enable OA tests for simulation
2025-03-05 0:57 ` [PATCH i-g-t 2/2] tests/intel/xe_oa: Enable OA tests for simulation Umesh Nerlige Ramappa
@ 2025-03-05 5:01 ` Dixit, Ashutosh
2025-03-05 16:25 ` Umesh Nerlige Ramappa
0 siblings, 1 reply; 13+ messages in thread
From: Dixit, Ashutosh @ 2025-03-05 5:01 UTC (permalink / raw)
To: Umesh Nerlige Ramappa; +Cc: igt-dev
On Tue, 04 Mar 2025 16:57:16 -0800, Umesh Nerlige Ramappa wrote:
>
> Simulation runs are slow, so account for that by modifying the scope of
> the tests.
>
> - Set parameters specific to simulation during init.
> - Skip tests that are heavily reliant on timing and that only test SW
> functionality.
>
> Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
> ---
> tests/intel/xe_oa.c | 32 ++++++++++++++++++++++++--------
> 1 file changed, 24 insertions(+), 8 deletions(-)
>
> diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c
> index e5744d830d39..06d324159211 100644
> --- a/tests/intel/xe_oa.c
> +++ b/tests/intel/xe_oa.c
> @@ -1111,13 +1111,25 @@ init_sys_info(void)
>
> intel_xe_perf_load_perf_configs(intel_xe_perf, drm_fd);
>
> - min_oa_exponent = 5;
> - max_oa_exponent = 20;
> - rc_width = 1920;
> - rc_height = 1080;
> - buffer_fill_size = SZ_16M;
> - num_buf_sizes = ARRAY_SIZE(buf_sizes);
> - oa_exponent_default = max_oa_exponent_for_period_lte(1000000);
> + if (igt_run_in_simulation()) {
> + igt_debug("SIMULATION run\n");
> + min_oa_exponent = 5;
> + max_oa_exponent = 10;
> + rc_width = 64;
> + rc_height = 36;
> + buffer_fill_size = SZ_128K;
> + num_buf_sizes = 3;
> + oa_exponent_default = max_oa_exponent_for_period_lte(1000);
> + } else {
> + igt_debug("HW run\n");
> + min_oa_exponent = 5;
> + max_oa_exponent = 20;
> + rc_width = 1920;
> + rc_height = 1080;
> + buffer_fill_size = SZ_16M;
> + num_buf_sizes = ARRAY_SIZE(buf_sizes);
> + oa_exponent_default = max_oa_exponent_for_period_lte(1000000);
> + }
Just a question here: what execution time (allowed by CI) are we assuming
for these simulation specific params?
>
> default_oa_buffer_size = get_default_oa_buffer_size(drm_fd);
> igt_debug("default_oa_buffer_size: %zu\n", default_oa_buffer_size);
> @@ -4758,6 +4770,7 @@ igt_main
> test_enable_disable(hwe);
>
> igt_subtest_with_dynamic("blocking") {
> + igt_require(!igt_run_in_simulation());
> __for_one_hwe_in_oag(hwe)
> test_blocking(40 * 1000 * 1000 /* 40ms oa period */,
> false /* set_kernel_hrtimer */,
> @@ -4766,6 +4779,7 @@ igt_main
> }
>
> igt_subtest_with_dynamic("polling") {
> + igt_require(!igt_run_in_simulation());
> __for_one_hwe_in_oag(hwe)
> test_polling(40 * 1000 * 1000 /* 40ms oa period */,
> false /* set_kernel_hrtimer */,
> @@ -4805,8 +4819,10 @@ igt_main
> igt_subtest("oa-unit-exclusive-stream-exec-q")
> test_oa_unit_exclusive_stream(false);
>
> - igt_subtest("oa-unit-concurrent-oa-buffer-read")
> + igt_subtest("oa-unit-concurrent-oa-buffer-read") {
> + igt_require(!igt_run_in_simulation());
> test_oa_unit_concurrent_oa_buffer_read();
> + }
I am assuming all remaining tests either (a) pass in simulation, or, (b)
have legitimate failures there which need fixing. This is great news:
Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
> }
>
> igt_subtest("rc6-disable") {
> --
> 2.45.2
>
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: ✗ Xe.CI.Full: failure for Modify some OA tests for simulation
2025-03-05 4:25 ` ✗ Xe.CI.Full: " Patchwork
@ 2025-03-05 16:16 ` Umesh Nerlige Ramappa
0 siblings, 0 replies; 13+ messages in thread
From: Umesh Nerlige Ramappa @ 2025-03-05 16:16 UTC (permalink / raw)
To: igt-dev
On Wed, Mar 05, 2025 at 04:25:34AM +0000, Patchwork wrote:
> Patch Details
>
> Series: Modify some OA tests for simulation
> URL: [1]https://patchwork.freedesktop.org/series/145805/
> State: failure
> Details: [2]https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/index.html
>
> CI Bug Log - changes from XEIGT_8260_full -> XEIGTPW_12701_full
>
>Summary
>
> FAILURE
>
> Serious unknown changes coming with XEIGTPW_12701_full absolutely need to
> be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in XEIGTPW_12701_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_12701_full:
>
> IGT changes
>
> Possible regressions
>
> * igt@xe_eu_stall@blocking-read:
>
> * shard-dg2-set2: NOTRUN -> [3]SKIP +1 other test skip
Unrelated to this series
Thanks,
Umesh
>
>Known issues
>
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: ✗ i915.CI.BAT: failure for Modify some OA tests for simulation
2025-03-05 3:44 ` ✗ i915.CI.BAT: " Patchwork
@ 2025-03-05 16:17 ` Umesh Nerlige Ramappa
0 siblings, 0 replies; 13+ messages in thread
From: Umesh Nerlige Ramappa @ 2025-03-05 16:17 UTC (permalink / raw)
To: igt-dev
On Wed, Mar 05, 2025 at 03:44:48AM +0000, Patchwork wrote:
> Patch Details
>
> Series: Modify some OA tests for simulation
> URL: [1]https://patchwork.freedesktop.org/series/145805/
> State: failure
> Details: [2]https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12701/index.html
>
> CI Bug Log - changes from IGT_8260 -> IGTPW_12701
>
>Summary
>
> FAILURE
>
> Serious unknown changes coming with IGTPW_12701 absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_12701, 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_12701/index.html
>
>Participating hosts (43 -> 44)
>
> Additional (2): fi-glk-j4005 bat-arlh-2
> Missing (1): fi-snb-2520m
>
>Possible new issues
>
> Here are the unknown changes that may have been introduced in IGTPW_12701:
>
> IGT changes
>
> Possible regressions
>
> * igt@kms_flip@basic-flip-vs-wf_vblank:
>
> * bat-apl-1: [3]PASS -> [4]DMESG-WARN +1 other test dmesg-warn
Unrelated to this series
Thanks,
Umesh
>
>Known issues
>
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: ✗ Xe.CI.BAT: failure for Modify some OA tests for simulation
2025-03-05 3:23 ` ✗ Xe.CI.BAT: failure for Modify some " Patchwork
@ 2025-03-05 16:17 ` Umesh Nerlige Ramappa
0 siblings, 0 replies; 13+ messages in thread
From: Umesh Nerlige Ramappa @ 2025-03-05 16:17 UTC (permalink / raw)
To: igt-dev
On Wed, Mar 05, 2025 at 03:23:11AM +0000, Patchwork wrote:
> Patch Details
>
> Series: Modify some OA tests for simulation
> URL: [1]https://patchwork.freedesktop.org/series/145805/
> State: failure
> Details: [2]https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/index.html
>
> CI Bug Log - changes from XEIGT_8260_BAT -> XEIGTPW_12701_BAT
>
>Summary
>
> FAILURE
>
> Serious unknown changes coming with XEIGTPW_12701_BAT absolutely need to
> be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in XEIGTPW_12701_BAT, 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 (8 -> 8)
>
> No changes in participating hosts
>
>Possible new issues
>
> Here are the unknown changes that may have been introduced in
> XEIGTPW_12701_BAT:
>
> IGT changes
>
> Possible regressions
>
> * igt@xe_intel_bb@intel-bb-blit-x:
>
> * bat-adlp-vf: [3]PASS -> [4]ABORT
Unrelated to this series
Thanks,
Umesh
>
>Build changes
>
> * IGT: IGT_8260 -> IGTPW_12701
>
> IGTPW_12701: 12701
> IGT_8260: 8260
> xe-2754-ff2d693d88726e29a1d87291105135c31c21fa26:
> ff2d693d88726e29a1d87291105135c31c21fa26
>
>References
>
> Visible links
> 1. https://patchwork.freedesktop.org/series/145805/
> 2. https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/index.html
> 3. https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8260/bat-adlp-vf/igt@xe_intel_bb@intel-bb-blit-x.html
> 4. https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12701/bat-adlp-vf/igt@xe_intel_bb@intel-bb-blit-x.html
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t 2/2] tests/intel/xe_oa: Enable OA tests for simulation
2025-03-05 5:01 ` Dixit, Ashutosh
@ 2025-03-05 16:25 ` Umesh Nerlige Ramappa
0 siblings, 0 replies; 13+ messages in thread
From: Umesh Nerlige Ramappa @ 2025-03-05 16:25 UTC (permalink / raw)
To: Dixit, Ashutosh; +Cc: igt-dev
On Tue, Mar 04, 2025 at 09:01:47PM -0800, Dixit, Ashutosh wrote:
>On Tue, 04 Mar 2025 16:57:16 -0800, Umesh Nerlige Ramappa wrote:
>>
>> Simulation runs are slow, so account for that by modifying the scope of
>> the tests.
>>
>> - Set parameters specific to simulation during init.
>> - Skip tests that are heavily reliant on timing and that only test SW
>> functionality.
>>
>> Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
>> ---
>> tests/intel/xe_oa.c | 32 ++++++++++++++++++++++++--------
>> 1 file changed, 24 insertions(+), 8 deletions(-)
>>
>> diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c
>> index e5744d830d39..06d324159211 100644
>> --- a/tests/intel/xe_oa.c
>> +++ b/tests/intel/xe_oa.c
>> @@ -1111,13 +1111,25 @@ init_sys_info(void)
>>
>> intel_xe_perf_load_perf_configs(intel_xe_perf, drm_fd);
>>
>> - min_oa_exponent = 5;
>> - max_oa_exponent = 20;
>> - rc_width = 1920;
>> - rc_height = 1080;
>> - buffer_fill_size = SZ_16M;
>> - num_buf_sizes = ARRAY_SIZE(buf_sizes);
>> - oa_exponent_default = max_oa_exponent_for_period_lte(1000000);
>> + if (igt_run_in_simulation()) {
>> + igt_debug("SIMULATION run\n");
>> + min_oa_exponent = 5;
>> + max_oa_exponent = 10;
>> + rc_width = 64;
>> + rc_height = 36;
>> + buffer_fill_size = SZ_128K;
>> + num_buf_sizes = 3;
>> + oa_exponent_default = max_oa_exponent_for_period_lte(1000);
>> + } else {
>> + igt_debug("HW run\n");
>> + min_oa_exponent = 5;
>> + max_oa_exponent = 20;
>> + rc_width = 1920;
>> + rc_height = 1080;
>> + buffer_fill_size = SZ_16M;
>> + num_buf_sizes = ARRAY_SIZE(buf_sizes);
>> + oa_exponent_default = max_oa_exponent_for_period_lte(1000000);
>> + }
>
>Just a question here: what execution time (allowed by CI) are we assuming
>for these simulation specific params?
Hmm, nothing specific. Most tests run within 10 seconds, with only a few
touching close to 10. The oa-exponents and oa-formats take close to 30
seconds though because they iterate over a few values. If that's long,
we could do random formats and random exponents as an improvement.
>
>>
>> default_oa_buffer_size = get_default_oa_buffer_size(drm_fd);
>> igt_debug("default_oa_buffer_size: %zu\n", default_oa_buffer_size);
>> @@ -4758,6 +4770,7 @@ igt_main
>> test_enable_disable(hwe);
>>
>> igt_subtest_with_dynamic("blocking") {
>> + igt_require(!igt_run_in_simulation());
>> __for_one_hwe_in_oag(hwe)
>> test_blocking(40 * 1000 * 1000 /* 40ms oa period */,
>> false /* set_kernel_hrtimer */,
>> @@ -4766,6 +4779,7 @@ igt_main
>> }
>>
>> igt_subtest_with_dynamic("polling") {
>> + igt_require(!igt_run_in_simulation());
>> __for_one_hwe_in_oag(hwe)
>> test_polling(40 * 1000 * 1000 /* 40ms oa period */,
>> false /* set_kernel_hrtimer */,
>> @@ -4805,8 +4819,10 @@ igt_main
>> igt_subtest("oa-unit-exclusive-stream-exec-q")
>> test_oa_unit_exclusive_stream(false);
>>
>> - igt_subtest("oa-unit-concurrent-oa-buffer-read")
>> + igt_subtest("oa-unit-concurrent-oa-buffer-read") {
>> + igt_require(!igt_run_in_simulation());
>> test_oa_unit_concurrent_oa_buffer_read();
>> + }
>
>I am assuming all remaining tests either (a) pass in simulation, or, (b)
>have legitimate failures there which need fixing. This is great news:
Correct, most pass and some need additional debug/fixes.
>
>Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
Thanks,
Umesh
>
>> }
>>
>> igt_subtest("rc6-disable") {
>> --
>> 2.45.2
>>
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t 1/2] tests/intel/xe_oa: Do not discard single reports in oa-formats
2025-03-05 4:56 ` Dixit, Ashutosh
@ 2025-03-05 16:27 ` Umesh Nerlige Ramappa
0 siblings, 0 replies; 13+ messages in thread
From: Umesh Nerlige Ramappa @ 2025-03-05 16:27 UTC (permalink / raw)
To: Dixit, Ashutosh; +Cc: igt-dev
On Tue, Mar 04, 2025 at 08:56:20PM -0800, Dixit, Ashutosh wrote:
>On Tue, 04 Mar 2025 16:57:15 -0800, Umesh Nerlige Ramappa wrote:
>>
>> Internally the test is expecting a single read call to return at least
>> two reports. If two reports are not read, the logic retries from the
>> beginning. This can easily fail if each read just returns one report.
>
>OK, you mean 1000 reads each returning just one report.
Right, I will add that in the description.
>
>> In essence, many reports are available, but the logic causes test to
>> fail. Instead, count and use every report read when waiting for two
>> reports to be available.
>>
>> Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
>> ---
>> tests/intel/xe_oa.c | 10 ++++++----
>> 1 file changed, 6 insertions(+), 4 deletions(-)
>>
>> diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c
>> index dd71683928bd..e5744d830d39 100644
>> --- a/tests/intel/xe_oa.c
>> +++ b/tests/intel/xe_oa.c
>> @@ -1314,13 +1314,14 @@ read_2_oa_reports(int format_id,
>> int max_reports = default_oa_buffer_size / format_size;
>> int buf_size = format_size * max_reports * 1.5;
>> uint8_t *buf = malloc(buf_size);
>> + ssize_t len = 0;
>> int n = 0;
>>
>> for (int i = 0; i < 1000; i++) {
>> u32 oa_status = 0;
>> - ssize_t len;
>> + int ret;
>>
>> - while ((len = read(stream_fd, buf, buf_size)) < 0 && errno == EINTR)
>> + while ((ret = read(stream_fd, buf + len, buf_size)) < 0 && errno == EINTR)
>
>Probably never hit this but maybe 'buf_size - len' ? Otherwise:
Yeah, but I think I will still change that to 'buf_size - len'.
>
>Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
Thanks,
Umesh
>
>> ;
>> if (errno == EIO) {
>> oa_status = get_stream_status(stream_fd);
>> @@ -1328,9 +1329,10 @@ read_2_oa_reports(int format_id,
>> continue;
>> }
>>
>> - igt_assert(len > 0);
>> - igt_debug("read %d bytes\n", (int)len);
>> + igt_assert(ret > 0);
>> + igt_debug("read %d bytes\n", (int)ret);
>>
>> + len += ret;
>> /* Need at least 2 reports */
>> if (len < 2 * format_size)
>> continue;
>> --
>> 2.45.2
>>
^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2025-03-05 16:27 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-05 0:57 [PATCH i-g-t 0/2] Modify some OA tests for simulation Umesh Nerlige Ramappa
2025-03-05 0:57 ` [PATCH i-g-t 1/2] tests/intel/xe_oa: Do not discard single reports in oa-formats Umesh Nerlige Ramappa
2025-03-05 4:56 ` Dixit, Ashutosh
2025-03-05 16:27 ` Umesh Nerlige Ramappa
2025-03-05 0:57 ` [PATCH i-g-t 2/2] tests/intel/xe_oa: Enable OA tests for simulation Umesh Nerlige Ramappa
2025-03-05 5:01 ` Dixit, Ashutosh
2025-03-05 16:25 ` Umesh Nerlige Ramappa
2025-03-05 3:23 ` ✗ Xe.CI.BAT: failure for Modify some " Patchwork
2025-03-05 16:17 ` Umesh Nerlige Ramappa
2025-03-05 3:44 ` ✗ i915.CI.BAT: " Patchwork
2025-03-05 16:17 ` Umesh Nerlige Ramappa
2025-03-05 4:25 ` ✗ Xe.CI.Full: " Patchwork
2025-03-05 16:16 ` Umesh Nerlige Ramappa
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox