* [igt-dev] [PATCH] tests: save GPU engine information more properly
@ 2023-10-13 4:20 Lee Shawn C
2023-10-13 4:55 ` [igt-dev] ✓ CI.xeBAT: success for " Patchwork
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Lee Shawn C @ 2023-10-13 4:20 UTC (permalink / raw)
To: intel-gfx, igt-dev; +Cc: Lee Shawn C
We encounter a unexpected error on chrome book device while
running kms_busy test. It will restore GPU engine's timeout
value but open incorrect file name (XR24 in below).
openat(AT_FDCWD, "/sys/dev/char/226:0", O_RDONLY) = 12
openat(12, "dev", O_RDONLY) = 13
read(13, "226:0\n", 1023) = 6
close(13) = 0
openat(12, "engine", O_RDONLY) = 13
close(12) = 0
openat(13, "XR24", O_RDONLY) = -1 ENOENT (No such file or directory)
Test code did not save engine data properly to cause this problem.
So modify the code to save GPU engine information into a globla variable
to avoid test deamon to open incorrect file again.
Issue: https://gitlab.freedesktop.org/drm/igt-gpu-tools/-/issues/147
Fixes: 9e635a1c5029 ("tests/kms_busy: Ensure GPU reset when waiting
for a new FB during modeset")
Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
Cc: Imre Deak <imre.deak@intel.com>
Cc: Vidya Srinivas <vidya.srinivas@intel.com>
Signed-off-by: Lee Shawn C <shawn.c.lee@intel.com>
---
lib/i915/gem_engine_topology.c | 12 ++++++------
lib/i915/gem_engine_topology.h | 2 +-
tests/intel/gem_exec_capture.c | 2 +-
tests/intel/gem_reset_stats.c | 2 +-
tests/intel/i915_hangman.c | 2 +-
tests/intel/kms_busy.c | 2 +-
6 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/lib/i915/gem_engine_topology.c b/lib/i915/gem_engine_topology.c
index 7c6cd9ba97db..afb576afb2dc 100644
--- a/lib/i915/gem_engine_topology.c
+++ b/lib/i915/gem_engine_topology.c
@@ -571,23 +571,23 @@ void gem_engine_properties_configure(int fd, struct gem_engine_properties *param
int ret;
struct gem_engine_properties write = *params;
- ret = gem_engine_property_scanf(fd, write.engine->name,
+ ret = gem_engine_property_scanf(fd, write.engine.name,
"heartbeat_interval_ms",
"%d", ¶ms->heartbeat_interval);
igt_assert_eq(ret, 1);
- ret = gem_engine_property_printf(fd, write.engine->name,
+ ret = gem_engine_property_printf(fd, write.engine.name,
"heartbeat_interval_ms", "%d",
write.heartbeat_interval);
igt_assert_lt(0, ret);
if (gem_scheduler_has_preemption(fd)) {
- ret = gem_engine_property_scanf(fd, write.engine->name,
+ ret = gem_engine_property_scanf(fd, write.engine.name,
"preempt_timeout_ms",
"%d", ¶ms->preempt_timeout);
igt_assert_eq(ret, 1);
- ret = gem_engine_property_printf(fd, write.engine->name,
+ ret = gem_engine_property_printf(fd, write.engine.name,
"preempt_timeout_ms", "%d",
write.preempt_timeout);
igt_assert_lt(0, ret);
@@ -598,13 +598,13 @@ void gem_engine_properties_restore(int fd, const struct gem_engine_properties *s
{
int ret;
- ret = gem_engine_property_printf(fd, saved->engine->name,
+ ret = gem_engine_property_printf(fd, saved->engine.name,
"heartbeat_interval_ms", "%d",
saved->heartbeat_interval);
igt_assert_lt(0, ret);
if (gem_scheduler_has_preemption(fd)) {
- ret = gem_engine_property_printf(fd, saved->engine->name,
+ ret = gem_engine_property_printf(fd, saved->engine.name,
"preempt_timeout_ms", "%d",
saved->preempt_timeout);
igt_assert_lt(0, ret);
diff --git a/lib/i915/gem_engine_topology.h b/lib/i915/gem_engine_topology.h
index 89642c31721c..9eb9d5ddc888 100644
--- a/lib/i915/gem_engine_topology.h
+++ b/lib/i915/gem_engine_topology.h
@@ -122,7 +122,7 @@ struct intel_execution_engine2 gem_eb_flags_to_engine(unsigned int flags);
intel_next_engine(&i__##e__))
struct gem_engine_properties {
- const struct intel_execution_engine2 *engine;
+ struct intel_execution_engine2 engine;
int preempt_timeout;
int heartbeat_interval;
};
diff --git a/tests/intel/gem_exec_capture.c b/tests/intel/gem_exec_capture.c
index ab8305e4dfaf..d231c53b98e1 100644
--- a/tests/intel/gem_exec_capture.c
+++ b/tests/intel/gem_exec_capture.c
@@ -258,7 +258,7 @@ configure_hangs(int fd, const struct intel_execution_engine2 *e, int ctxt_id)
struct gem_engine_properties props;
/* Ensure fast hang detection */
- props.engine = e;
+ props.engine = *e;
props.preempt_timeout = 250;
props.heartbeat_interval = 500;
gem_engine_properties_configure(fd, &props);
diff --git a/tests/intel/gem_reset_stats.c b/tests/intel/gem_reset_stats.c
index 6939722c7001..5dfc1fc677ec 100644
--- a/tests/intel/gem_reset_stats.c
+++ b/tests/intel/gem_reset_stats.c
@@ -1004,7 +1004,7 @@ static void test_shared_reset_domain(const intel_ctx_cfg_t *base_cfg,
sync_gpu();
- params.engine = e;
+ params.engine = *e;
params.preempt_timeout = 1;
params.heartbeat_interval = 250;
gem_engine_properties_configure(device, ¶ms);
diff --git a/tests/intel/i915_hangman.c b/tests/intel/i915_hangman.c
index dcd34cd0ebfe..8a7de562609c 100644
--- a/tests/intel/i915_hangman.c
+++ b/tests/intel/i915_hangman.c
@@ -600,7 +600,7 @@ igt_main
gem_require_mmap_device_coherent(device);
for_each_physical_engine(device, e) {
- saved_params[num_engines].engine = e;
+ saved_params[num_engines].engine = *e;
saved_params[num_engines].preempt_timeout = 500;
saved_params[num_engines].heartbeat_interval = 1000;
gem_engine_properties_configure(device, saved_params + num_engines++);
diff --git a/tests/intel/kms_busy.c b/tests/intel/kms_busy.c
index 5b620658fb18..50616513c5ba 100644
--- a/tests/intel/kms_busy.c
+++ b/tests/intel/kms_busy.c
@@ -404,7 +404,7 @@ static void gpu_engines_init_timeouts(int fd, int max_engines,
for_each_physical_engine(fd, e) {
igt_assert(*num_engines < max_engines);
- props[*num_engines].engine = e;
+ props[*num_engines].engine = *e;
props[*num_engines].preempt_timeout = 0;
props[*num_engines].heartbeat_interval = 250;
--
2.34.1
^ permalink raw reply related [flat|nested] 6+ messages in thread* [igt-dev] ✓ CI.xeBAT: success for tests: save GPU engine information more properly 2023-10-13 4:20 [igt-dev] [PATCH] tests: save GPU engine information more properly Lee Shawn C @ 2023-10-13 4:55 ` Patchwork 2023-10-13 5:15 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork ` (3 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-10-13 4:55 UTC (permalink / raw) To: Lee Shawn C; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4848 bytes --] == Series Details == Series: tests: save GPU engine information more properly URL : https://patchwork.freedesktop.org/series/125089/ State : success == Summary == CI Bug Log - changes from XEIGT_7533_BAT -> XEIGTPW_9995_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_9995_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-dg2-oem2: NOTRUN -> [SKIP][1] ([Intel XE#623]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9995/bat-dg2-oem2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - bat-dg2-oem2: NOTRUN -> [SKIP][2] ([Intel XE#624]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9995/bat-dg2-oem2/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@tile-pitch-mismatch: - bat-dg2-oem2: NOTRUN -> [FAIL][3] ([Intel XE#609]) +1 other test fail [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9995/bat-dg2-oem2/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_dsc@dsc-basic: - bat-dg2-oem2: NOTRUN -> [SKIP][4] ([Intel XE#423]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9995/bat-dg2-oem2/igt@kms_dsc@dsc-basic.html * igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1: - bat-adlp-7: [PASS][5] -> [FAIL][6] ([Intel XE#480]) +1 other test fail [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7533/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9995/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1.html * igt@kms_flip@basic-flip-vs-wf_vblank@c-dp3: - bat-dg2-oem2: NOTRUN -> [FAIL][7] ([Intel XE#480]) +1 other test fail [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9995/bat-dg2-oem2/igt@kms_flip@basic-flip-vs-wf_vblank@c-dp3.html * igt@kms_force_connector_basic@prune-stale-modes: - bat-dg2-oem2: NOTRUN -> [SKIP][8] ([i915#5274]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9995/bat-dg2-oem2/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@basic: - bat-dg2-oem2: NOTRUN -> [FAIL][9] ([Intel XE#608]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9995/bat-dg2-oem2/igt@kms_frontbuffer_tracking@basic.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-b-dp-3: - bat-dg2-oem2: NOTRUN -> [FAIL][10] ([Intel XE#400]) +2 other tests fail [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9995/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-b-dp-3.html * igt@kms_psr@primary_page_flip: - bat-dg2-oem2: NOTRUN -> [SKIP][11] ([Intel XE#535]) +2 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9995/bat-dg2-oem2/igt@kms_psr@primary_page_flip.html * igt@xe_huc_copy@huc_copy: - bat-dg2-oem2: NOTRUN -> [SKIP][12] ([Intel XE#255]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9995/bat-dg2-oem2/igt@xe_huc_copy@huc_copy.html #### Possible fixes #### * igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size: - bat-adlp-7: [FAIL][13] ([i915#2346]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7533/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9995/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/400 [Intel XE#423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/423 [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480 [Intel XE#535]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/535 [Intel XE#608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/608 [Intel XE#609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/609 [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623 [Intel XE#624]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/624 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 Build changes ------------- * IGT: IGT_7533 -> IGTPW_9995 IGTPW_9995: 9995 IGT_7533: 7533 xe-432-6c0d1e36f310682297a5b07336b0883afc77f66e: 6c0d1e36f310682297a5b07336b0883afc77f66e == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9995/index.html [-- Attachment #2: Type: text/html, Size: 5762 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests: save GPU engine information more properly 2023-10-13 4:20 [igt-dev] [PATCH] tests: save GPU engine information more properly Lee Shawn C 2023-10-13 4:55 ` [igt-dev] ✓ CI.xeBAT: success for " Patchwork @ 2023-10-13 5:15 ` Patchwork 2023-10-13 7:47 ` [igt-dev] [PATCH] " Tvrtko Ursulin ` (2 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-10-13 5:15 UTC (permalink / raw) To: Lee Shawn C; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4308 bytes --] == Series Details == Series: tests: save GPU engine information more properly URL : https://patchwork.freedesktop.org/series/125089/ State : success == Summary == CI Bug Log - changes from CI_DRM_13751 -> IGTPW_9995 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/index.html Participating hosts (37 -> 35) ------------------------------ Missing (2): fi-hsw-4770 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_9995 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_suspend@basic-s3-without-i915: - bat-mtlp-8: NOTRUN -> [SKIP][1] ([i915#6645]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/bat-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_hdmi_inject@inject-audio: - fi-kbl-guc: [PASS][2] -> [FAIL][3] ([IGT#3]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html * igt@kms_pipe_crc_basic@nonblocking-crc: - bat-dg2-11: NOTRUN -> [SKIP][4] ([i915#1845]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s0@smem: - bat-jsl-3: [INCOMPLETE][5] ([i915#9275]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/bat-jsl-3/igt@gem_exec_suspend@basic-s0@smem.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/bat-jsl-3/igt@gem_exec_suspend@basic-s0@smem.html * igt@i915_selftest@live@gt_heartbeat: - fi-glk-j4005: [DMESG-FAIL][7] ([i915#5334]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/fi-glk-j4005/igt@i915_selftest@live@gt_heartbeat.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/fi-glk-j4005/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@requests: - bat-mtlp-8: [ABORT][9] ([i915#9414]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/bat-mtlp-8/igt@i915_selftest@live@requests.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/bat-mtlp-8/igt@i915_selftest@live@requests.html * igt@i915_suspend@basic-s3-without-i915: - bat-jsl-3: [FAIL][11] ([fdo#103375]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/bat-jsl-3/igt@i915_suspend@basic-s3-without-i915.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/bat-jsl-3/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_frontbuffer_tracking@basic: - fi-bsw-nick: [FAIL][13] ([i915#9276]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/fi-bsw-nick/igt@kms_frontbuffer_tracking@basic.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/fi-bsw-nick/igt@kms_frontbuffer_tracking@basic.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#3]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/3 [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#7359]: https://gitlab.freedesktop.org/drm/intel/issues/7359 [i915#8981]: https://gitlab.freedesktop.org/drm/intel/issues/8981 [i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275 [i915#9276]: https://gitlab.freedesktop.org/drm/intel/issues/9276 [i915#9414]: https://gitlab.freedesktop.org/drm/intel/issues/9414 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7533 -> IGTPW_9995 CI-20190529: 20190529 CI_DRM_13751: 3bfa85ac32f1466e2faedcaea45693922386315f @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9995: 9995 IGT_7533: 7533 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/index.html [-- Attachment #2: Type: text/html, Size: 4977 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [igt-dev] [PATCH] tests: save GPU engine information more properly 2023-10-13 4:20 [igt-dev] [PATCH] tests: save GPU engine information more properly Lee Shawn C 2023-10-13 4:55 ` [igt-dev] ✓ CI.xeBAT: success for " Patchwork 2023-10-13 5:15 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork @ 2023-10-13 7:47 ` Tvrtko Ursulin 2023-10-13 18:41 ` [igt-dev] [Intel-gfx] " Andi Shyti 2023-10-14 4:23 ` [igt-dev] ✗ Fi.CI.IGT: failure for " Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Tvrtko Ursulin @ 2023-10-13 7:47 UTC (permalink / raw) To: Lee Shawn C, intel-gfx, igt-dev On 13/10/2023 05:20, Lee Shawn C wrote: > We encounter a unexpected error on chrome book device while > running kms_busy test. It will restore GPU engine's timeout > value but open incorrect file name (XR24 in below). > > openat(AT_FDCWD, "/sys/dev/char/226:0", O_RDONLY) = 12 > openat(12, "dev", O_RDONLY) = 13 > read(13, "226:0\n", 1023) = 6 > close(13) = 0 > openat(12, "engine", O_RDONLY) = 13 > close(12) = 0 > openat(13, "XR24", O_RDONLY) = -1 ENOENT (No such file or directory) > > Test code did not save engine data properly to cause this problem. > So modify the code to save GPU engine information into a globla variable > to avoid test deamon to open incorrect file again. > > Issue: https://gitlab.freedesktop.org/drm/igt-gpu-tools/-/issues/147 > Fixes: 9e635a1c5029 ("tests/kms_busy: Ensure GPU reset when waiting > for a new FB during modeset") I guess if we are having one Fixes: could add some more for i915_hangman and gem_exec_capture but it is not that important for igt so meh. Changes look good to me. Presumably it fixes things for you and if CI ends up green: Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com> Regards, Tvrtko > Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com> > Cc: Imre Deak <imre.deak@intel.com> > Cc: Vidya Srinivas <vidya.srinivas@intel.com> > Signed-off-by: Lee Shawn C <shawn.c.lee@intel.com> > --- > lib/i915/gem_engine_topology.c | 12 ++++++------ > lib/i915/gem_engine_topology.h | 2 +- > tests/intel/gem_exec_capture.c | 2 +- > tests/intel/gem_reset_stats.c | 2 +- > tests/intel/i915_hangman.c | 2 +- > tests/intel/kms_busy.c | 2 +- > 6 files changed, 11 insertions(+), 11 deletions(-) > > diff --git a/lib/i915/gem_engine_topology.c b/lib/i915/gem_engine_topology.c > index 7c6cd9ba97db..afb576afb2dc 100644 > --- a/lib/i915/gem_engine_topology.c > +++ b/lib/i915/gem_engine_topology.c > @@ -571,23 +571,23 @@ void gem_engine_properties_configure(int fd, struct gem_engine_properties *param > int ret; > struct gem_engine_properties write = *params; > > - ret = gem_engine_property_scanf(fd, write.engine->name, > + ret = gem_engine_property_scanf(fd, write.engine.name, > "heartbeat_interval_ms", > "%d", ¶ms->heartbeat_interval); > igt_assert_eq(ret, 1); > > - ret = gem_engine_property_printf(fd, write.engine->name, > + ret = gem_engine_property_printf(fd, write.engine.name, > "heartbeat_interval_ms", "%d", > write.heartbeat_interval); > igt_assert_lt(0, ret); > > if (gem_scheduler_has_preemption(fd)) { > - ret = gem_engine_property_scanf(fd, write.engine->name, > + ret = gem_engine_property_scanf(fd, write.engine.name, > "preempt_timeout_ms", > "%d", ¶ms->preempt_timeout); > igt_assert_eq(ret, 1); > > - ret = gem_engine_property_printf(fd, write.engine->name, > + ret = gem_engine_property_printf(fd, write.engine.name, > "preempt_timeout_ms", "%d", > write.preempt_timeout); > igt_assert_lt(0, ret); > @@ -598,13 +598,13 @@ void gem_engine_properties_restore(int fd, const struct gem_engine_properties *s > { > int ret; > > - ret = gem_engine_property_printf(fd, saved->engine->name, > + ret = gem_engine_property_printf(fd, saved->engine.name, > "heartbeat_interval_ms", "%d", > saved->heartbeat_interval); > igt_assert_lt(0, ret); > > if (gem_scheduler_has_preemption(fd)) { > - ret = gem_engine_property_printf(fd, saved->engine->name, > + ret = gem_engine_property_printf(fd, saved->engine.name, > "preempt_timeout_ms", "%d", > saved->preempt_timeout); > igt_assert_lt(0, ret); > diff --git a/lib/i915/gem_engine_topology.h b/lib/i915/gem_engine_topology.h > index 89642c31721c..9eb9d5ddc888 100644 > --- a/lib/i915/gem_engine_topology.h > +++ b/lib/i915/gem_engine_topology.h > @@ -122,7 +122,7 @@ struct intel_execution_engine2 gem_eb_flags_to_engine(unsigned int flags); > intel_next_engine(&i__##e__)) > > struct gem_engine_properties { > - const struct intel_execution_engine2 *engine; > + struct intel_execution_engine2 engine; > int preempt_timeout; > int heartbeat_interval; > }; > diff --git a/tests/intel/gem_exec_capture.c b/tests/intel/gem_exec_capture.c > index ab8305e4dfaf..d231c53b98e1 100644 > --- a/tests/intel/gem_exec_capture.c > +++ b/tests/intel/gem_exec_capture.c > @@ -258,7 +258,7 @@ configure_hangs(int fd, const struct intel_execution_engine2 *e, int ctxt_id) > struct gem_engine_properties props; > > /* Ensure fast hang detection */ > - props.engine = e; > + props.engine = *e; > props.preempt_timeout = 250; > props.heartbeat_interval = 500; > gem_engine_properties_configure(fd, &props); > diff --git a/tests/intel/gem_reset_stats.c b/tests/intel/gem_reset_stats.c > index 6939722c7001..5dfc1fc677ec 100644 > --- a/tests/intel/gem_reset_stats.c > +++ b/tests/intel/gem_reset_stats.c > @@ -1004,7 +1004,7 @@ static void test_shared_reset_domain(const intel_ctx_cfg_t *base_cfg, > > sync_gpu(); > > - params.engine = e; > + params.engine = *e; > params.preempt_timeout = 1; > params.heartbeat_interval = 250; > gem_engine_properties_configure(device, ¶ms); > diff --git a/tests/intel/i915_hangman.c b/tests/intel/i915_hangman.c > index dcd34cd0ebfe..8a7de562609c 100644 > --- a/tests/intel/i915_hangman.c > +++ b/tests/intel/i915_hangman.c > @@ -600,7 +600,7 @@ igt_main > gem_require_mmap_device_coherent(device); > > for_each_physical_engine(device, e) { > - saved_params[num_engines].engine = e; > + saved_params[num_engines].engine = *e; > saved_params[num_engines].preempt_timeout = 500; > saved_params[num_engines].heartbeat_interval = 1000; > gem_engine_properties_configure(device, saved_params + num_engines++); > diff --git a/tests/intel/kms_busy.c b/tests/intel/kms_busy.c > index 5b620658fb18..50616513c5ba 100644 > --- a/tests/intel/kms_busy.c > +++ b/tests/intel/kms_busy.c > @@ -404,7 +404,7 @@ static void gpu_engines_init_timeouts(int fd, int max_engines, > for_each_physical_engine(fd, e) { > igt_assert(*num_engines < max_engines); > > - props[*num_engines].engine = e; > + props[*num_engines].engine = *e; > props[*num_engines].preempt_timeout = 0; > props[*num_engines].heartbeat_interval = 250; > ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [igt-dev] [Intel-gfx] [PATCH] tests: save GPU engine information more properly 2023-10-13 4:20 [igt-dev] [PATCH] tests: save GPU engine information more properly Lee Shawn C ` (2 preceding siblings ...) 2023-10-13 7:47 ` [igt-dev] [PATCH] " Tvrtko Ursulin @ 2023-10-13 18:41 ` Andi Shyti 2023-10-14 4:23 ` [igt-dev] ✗ Fi.CI.IGT: failure for " Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Andi Shyti @ 2023-10-13 18:41 UTC (permalink / raw) To: Lee Shawn C; +Cc: igt-dev, intel-gfx Hi Shawn, without the i-g-t tag in the title this path was picked up by the kernel's patchwork. Can you please use the [PATCH i-g-t] tag? On Fri, Oct 13, 2023 at 12:20:12PM +0800, Lee Shawn C wrote: > We encounter a unexpected error on chrome book device while > running kms_busy test. It will restore GPU engine's timeout > value but open incorrect file name (XR24 in below). > > openat(AT_FDCWD, "/sys/dev/char/226:0", O_RDONLY) = 12 > openat(12, "dev", O_RDONLY) = 13 > read(13, "226:0\n", 1023) = 6 > close(13) = 0 > openat(12, "engine", O_RDONLY) = 13 > close(12) = 0 > openat(13, "XR24", O_RDONLY) = -1 ENOENT (No such file or directory) > > Test code did not save engine data properly to cause this problem. > So modify the code to save GPU engine information into a globla variable > to avoid test deamon to open incorrect file again. > > Issue: https://gitlab.freedesktop.org/drm/igt-gpu-tools/-/issues/147 > Fixes: 9e635a1c5029 ("tests/kms_busy: Ensure GPU reset when waiting > for a new FB during modeset") please don't break the Fixes: line. Andi ^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests: save GPU engine information more properly 2023-10-13 4:20 [igt-dev] [PATCH] tests: save GPU engine information more properly Lee Shawn C ` (3 preceding siblings ...) 2023-10-13 18:41 ` [igt-dev] [Intel-gfx] " Andi Shyti @ 2023-10-14 4:23 ` Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-10-14 4:23 UTC (permalink / raw) To: Lee Shawn C; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 83760 bytes --] == Series Details == Series: tests: save GPU engine information more properly URL : https://patchwork.freedesktop.org/series/125089/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13751_full -> IGTPW_9995_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9995_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9995_full, please notify your bug team (lgci.bug.filing@intel.com) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/index.html Participating hosts (10 -> 9) ------------------------------ Missing (1): shard-rkl0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9995_full: ### IGT changes ### #### Possible regressions #### * igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-1: - shard-glk: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-glk8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-1.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-glk7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-1.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@kms_pm_rpm@i2c}: - shard-dg2: NOTRUN -> [FAIL][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-2/igt@kms_pm_rpm@i2c.html Known issues ------------ Here are the changes found in IGTPW_9995_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][4] ([i915#8411]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-2/igt@api_intel_bb@object-reloc-purge-cache.html * igt@debugfs_test@basic-hwmon: - shard-tglu: NOTRUN -> [SKIP][5] ([i915#9318]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-tglu-6/igt@debugfs_test@basic-hwmon.html * igt@device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][6] ([i915#7701]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-rkl-7/igt@device_reset@unbind-cold-reset-rebind.html - shard-dg2: NOTRUN -> [SKIP][7] ([i915#7701]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-6/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@busy@ccs0: - shard-dg2: NOTRUN -> [SKIP][8] ([i915#8414]) +10 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-11/igt@drm_fdinfo@busy@ccs0.html * igt@drm_fdinfo@virtual-busy: - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#8414]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-4/igt@drm_fdinfo@virtual-busy.html * igt@gem_ccs@block-copy-compressed: - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#3555]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-6/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][11] ([i915#3555]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-tglu-9/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: NOTRUN -> [SKIP][12] ([i915#4098] / [i915#9323]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-rkl-2/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][13] ([i915#7297]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-5/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [PASS][14] -> [FAIL][15] ([i915#6268]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-rkl-3/igt@gem_ctx_exec@basic-nohangcheck.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-rkl-1/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#8555]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-7/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_persistence@legacy-engines-hostile@vebox: - shard-mtlp: [PASS][17] -> [FAIL][18] ([i915#2410]) +3 other tests fail [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-mtlp-1/igt@gem_ctx_persistence@legacy-engines-hostile@vebox.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-2/igt@gem_ctx_persistence@legacy-engines-hostile@vebox.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#5882]) +9 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-1/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0.html * igt@gem_ctx_sseu@invalid-args: - shard-tglu: NOTRUN -> [SKIP][20] ([i915#280]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-tglu-2/igt@gem_ctx_sseu@invalid-args.html * igt@gem_eio@kms: - shard-dg2: [PASS][21] -> [FAIL][22] ([i915#5784]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-dg2-5/igt@gem_eio@kms.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-10/igt@gem_eio@kms.html * igt@gem_exec_balancer@bonded-dual: - shard-mtlp: NOTRUN -> [SKIP][23] ([i915#4771]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-3/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#4812]) +3 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-3/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@noheartbeat: - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#8555]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-4/igt@gem_exec_balancer@noheartbeat.html * igt@gem_exec_capture@capture-invisible@lmem0: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#6334]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-6/igt@gem_exec_capture@capture-invisible@lmem0.html * igt@gem_exec_capture@pi@vcs0: - shard-mtlp: [PASS][27] -> [FAIL][28] ([i915#4475]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-mtlp-2/igt@gem_exec_capture@pi@vcs0.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-7/igt@gem_exec_capture@pi@vcs0.html * igt@gem_exec_fair@basic-none@rcs0: - shard-rkl: NOTRUN -> [FAIL][29] ([i915#2842]) +2 other tests fail [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-rkl-1/igt@gem_exec_fair@basic-none@rcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-rkl: [PASS][30] -> [FAIL][31] ([i915#2842]) +1 other test fail [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-rkl-7/igt@gem_exec_fair@basic-pace@rcs0.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-rkl-1/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_fence@submit67: - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#4812]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-7/igt@gem_exec_fence@submit67.html * igt@gem_exec_flush@basic-uc-prw-default: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#3539]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-11/igt@gem_exec_flush@basic-uc-prw-default.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#3539] / [i915#4852]) +4 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-7/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_flush@basic-wb-ro-before-default: - shard-mtlp: [PASS][35] -> [DMESG-FAIL][36] ([i915#8962]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-mtlp-4/igt@gem_exec_flush@basic-wb-ro-before-default.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-4/igt@gem_exec_flush@basic-wb-ro-before-default.html * igt@gem_exec_params@secure-non-master: - shard-dg1: NOTRUN -> [SKIP][37] ([fdo#112283]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg1-17/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_reloc@basic-cpu-wc-active: - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#3281]) +9 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-6/igt@gem_exec_reloc@basic-cpu-wc-active.html * igt@gem_exec_reloc@basic-gtt-wc-active: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#3281]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg1-19/igt@gem_exec_reloc@basic-gtt-wc-active.html * igt@gem_exec_reloc@basic-write-read: - shard-rkl: NOTRUN -> [SKIP][40] ([i915#3281]) +3 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-rkl-7/igt@gem_exec_reloc@basic-write-read.html * igt@gem_exec_reloc@basic-write-wc-noreloc: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#3281]) +11 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-2/igt@gem_exec_reloc@basic-write-wc-noreloc.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4537] / [i915#4812]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-6/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_schedule@preemptive-hang@vcs0: - shard-mtlp: [PASS][43] -> [FAIL][44] ([i915#9051]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-mtlp-8/igt@gem_exec_schedule@preemptive-hang@vcs0.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-5/igt@gem_exec_schedule@preemptive-hang@vcs0.html * igt@gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#4537] / [i915#4812]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-2/igt@gem_exec_schedule@reorder-wide.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg2: NOTRUN -> [ABORT][46] ([i915#7975] / [i915#8213]) +1 other test abort [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-10/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-rkl: NOTRUN -> [ABORT][47] ([i915#7975] / [i915#8213]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-rkl-1/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@gem_fence_thrash@bo-write-verify-threaded-none: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4860]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-7/igt@gem_fence_thrash@bo-write-verify-threaded-none.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4860]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-3/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-glk: NOTRUN -> [SKIP][50] ([fdo#109271] / [i915#4613]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-glk2/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-apl: NOTRUN -> [SKIP][51] ([fdo#109271] / [i915#4613]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-apl7/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: NOTRUN -> [DMESG-WARN][52] ([i915#4936] / [i915#5493]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-5/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_media_fill@media-fill: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#8289]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-8/igt@gem_media_fill@media-fill.html * igt@gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#284]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-7/igt@gem_media_vme.html * igt@gem_mmap_gtt@big-bo-tiledy: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4077]) +4 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-8/igt@gem_mmap_gtt@big-bo-tiledy.html * igt@gem_mmap_gtt@medium-copy-xy: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4077]) +10 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-7/igt@gem_mmap_gtt@medium-copy-xy.html * igt@gem_mmap_offset@clear@smem0: - shard-dg1: [PASS][57] -> [FAIL][58] ([i915#7962]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-dg1-14/igt@gem_mmap_offset@clear@smem0.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg1-14/igt@gem_mmap_offset@clear@smem0.html * igt@gem_mmap_wc@bad-size: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#4083]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg1-14/igt@gem_mmap_wc@bad-size.html * igt@gem_mmap_wc@coherency: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4083]) +4 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-11/igt@gem_mmap_wc@coherency.html * igt@gem_mmap_wc@write: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4083]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-5/igt@gem_mmap_wc@write.html * igt@gem_partial_pwrite_pread@writes-after-reads-snoop: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#3282]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-1/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html - shard-rkl: NOTRUN -> [SKIP][63] ([i915#3282]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html * igt@gem_pread@bench: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#3282]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-6/igt@gem_pread@bench.html * igt@gem_pxp@create-regular-context-1: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#4270]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg1-13/igt@gem_pxp@create-regular-context-1.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-rkl: NOTRUN -> [SKIP][66] ([i915#4270]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-rkl-2/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4270]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-10/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4270]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-4/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_render_copy@y-tiled-to-vebox-linear: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#8428]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-7/igt@gem_render_copy@y-tiled-to-vebox-linear.html * igt@gem_softpin@evict-prime-sanity-check@vcs0: - shard-mtlp: NOTRUN -> [ABORT][70] ([i915#9262]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-4/igt@gem_softpin@evict-prime-sanity-check@vcs0.html * igt@gem_tiled_pread_pwrite: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4079]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-6/igt@gem_tiled_pread_pwrite.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#3297] / [i915#4880]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-2/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@mmap-offset-banned@gtt: - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#3297]) +4 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-7/igt@gem_userptr_blits@mmap-offset-banned@gtt.html * igt@gem_userptr_blits@nohangcheck: - shard-mtlp: [PASS][74] -> [FAIL][75] ([i915#9353]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-mtlp-3/igt@gem_userptr_blits@nohangcheck.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-1/igt@gem_userptr_blits@nohangcheck.html * igt@gem_userptr_blits@unsync-overlap: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#3297]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-3/igt@gem_userptr_blits@unsync-overlap.html - shard-rkl: NOTRUN -> [SKIP][77] ([i915#3297]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-rkl-1/igt@gem_userptr_blits@unsync-overlap.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-tglu: NOTRUN -> [SKIP][78] ([i915#3297]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-tglu-3/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gen7_exec_parse@batch-without-end: - shard-dg2: NOTRUN -> [SKIP][79] ([fdo#109289]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-11/igt@gen7_exec_parse@batch-without-end.html * igt@gen7_exec_parse@chained-batch: - shard-mtlp: NOTRUN -> [SKIP][80] ([fdo#109289]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-8/igt@gen7_exec_parse@chained-batch.html * igt@gen9_exec_parse@allowed-all: - shard-dg1: NOTRUN -> [SKIP][81] ([i915#2527]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg1-17/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@bb-start-param: - shard-tglu: NOTRUN -> [SKIP][82] ([i915#2527] / [i915#2856]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-tglu-7/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@valid-registers: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#2856]) +3 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-5/igt@gen9_exec_parse@valid-registers.html * igt@i915_hangman@detector@vcs0: - shard-mtlp: [PASS][84] -> [FAIL][85] ([i915#8456]) +2 other tests fail [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-mtlp-1/igt@i915_hangman@detector@vcs0.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-5/igt@i915_hangman@detector@vcs0.html * igt@i915_hangman@engine-error-state-capture@vecs0: - shard-mtlp: [PASS][86] -> [ABORT][87] ([i915#9414]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-mtlp-8/igt@i915_hangman@engine-error-state-capture@vecs0.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-3/igt@i915_hangman@engine-error-state-capture@vecs0.html * igt@i915_pipe_stress@stress-xrgb8888-untiled: - shard-apl: NOTRUN -> [FAIL][88] ([i915#7036]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-apl7/igt@i915_pipe_stress@stress-xrgb8888-untiled.html * igt@i915_pm_rc6_residency@rc6-idle@vcs0: - shard-dg1: [PASS][89] -> [FAIL][90] ([i915#3591]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#6621]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-10/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@thresholds-park@gt0: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#8925]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-2/igt@i915_pm_rps@thresholds-park@gt0.html * igt@i915_pm_rps@thresholds@gt0: - shard-mtlp: NOTRUN -> [SKIP][93] ([i915#8925]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-6/igt@i915_pm_rps@thresholds@gt0.html * igt@i915_pm_rps@thresholds@gt1: - shard-mtlp: NOTRUN -> [SKIP][94] ([i915#3555] / [i915#8925]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-6/igt@i915_pm_rps@thresholds@gt1.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#6188]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-11/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_selftest@live@gt_heartbeat: - shard-apl: [PASS][96] -> [DMESG-FAIL][97] ([i915#5334]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-apl3/igt@i915_selftest@live@gt_heartbeat.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-apl6/igt@i915_selftest@live@gt_heartbeat.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-mtlp: NOTRUN -> [SKIP][98] ([i915#4212]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-5/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#4212]) +2 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-7/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][100] ([i915#8247]) +3 other tests fail [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-6/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html * igt@kms_async_flips@crc@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][101] ([i915#8247]) +3 other tests fail [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg1-14/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html * igt@kms_async_flips@test-cursor: - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#6229]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-5/igt@kms_async_flips@test-cursor.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-tglu: NOTRUN -> [SKIP][103] ([i915#1769] / [i915#3555]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-tglu-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][104] ([i915#5286]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-rkl-1/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-mtlp: [PASS][105] -> [FAIL][106] ([i915#5138]) +1 other test fail [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-mtlp-4/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-4/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-tglu: NOTRUN -> [SKIP][107] ([fdo#111615] / [i915#5286]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-tglu-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][108] ([fdo#111614]) +6 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-7/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][109] ([fdo#111614] / [i915#3638]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-rkl-4/igt@kms_big_fb@linear-64bpp-rotate-90.html - shard-mtlp: NOTRUN -> [SKIP][110] ([fdo#111614]) +4 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-8/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#5190]) +17 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-1/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][112] ([fdo#111614]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-tglu-9/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][113] ([i915#6187]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-1/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-mtlp: NOTRUN -> [SKIP][114] ([fdo#111615]) +3 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][115] ([fdo#110723]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-rkl-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#4538] / [i915#5190]) +7 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-3/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-rkl: NOTRUN -> [SKIP][117] ([fdo#111615]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-rkl-7/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-tglu: NOTRUN -> [SKIP][118] ([fdo#111615]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-tglu-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#4538]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg1-14/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_joiner@basic: - shard-tglu: NOTRUN -> [SKIP][120] ([i915#2705]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-tglu-2/igt@kms_big_joiner@basic.html * igt@kms_big_joiner@invalid-modeset: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#2705]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-7/igt@kms_big_joiner@invalid-modeset.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-tglu: NOTRUN -> [SKIP][122] ([i915#3742]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-tglu-10/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#4087]) +3 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-2/igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2.html * igt@kms_chamelium_audio@dp-audio: - shard-mtlp: NOTRUN -> [SKIP][124] ([i915#7828]) +8 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-2/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_color@gamma: - shard-dg2: NOTRUN -> [SKIP][125] ([fdo#111827]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-5/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_edid@vga-edid-read: - shard-rkl: NOTRUN -> [SKIP][126] ([i915#7828]) +3 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-rkl-2/igt@kms_chamelium_edid@vga-edid-read.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#7828]) +9 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-7/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-tglu: NOTRUN -> [SKIP][128] ([i915#7828]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-tglu-7/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@dp-hpd-storm: - shard-dg1: NOTRUN -> [SKIP][129] ([i915#7828]) +1 other test skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg1-17/igt@kms_chamelium_hpd@dp-hpd-storm.html * igt@kms_color@deep-color: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#3555]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-rkl-1/igt@kms_color@deep-color.html * igt@kms_color@degamma@pipe-a: - shard-mtlp: NOTRUN -> [FAIL][131] ([i915#9257]) +3 other tests fail [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-8/igt@kms_color@degamma@pipe-a.html * igt@kms_content_protection@dp-mst-type-1: - shard-tglu: NOTRUN -> [SKIP][132] ([i915#3116] / [i915#3299]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-tglu-5/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#7118]) +1 other test skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-7/igt@kms_content_protection@legacy.html * igt@kms_content_protection@srm: - shard-mtlp: NOTRUN -> [SKIP][134] ([i915#6944]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-2/igt@kms_content_protection@srm.html * igt@kms_content_protection@srm@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][135] ([i915#7173]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-11/igt@kms_content_protection@srm@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][136] ([i915#3359]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html - shard-rkl: NOTRUN -> [SKIP][137] ([fdo#109279] / [i915#3359]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-rkl-1/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-mtlp: NOTRUN -> [SKIP][138] ([i915#3555] / [i915#8814]) +3 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-4/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#3359]) +4 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-3/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#3555]) +6 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-7/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-tglu: NOTRUN -> [SKIP][141] ([i915#3359]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][142] ([fdo#109274] / [fdo#111767] / [i915#5354]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#4103] / [i915#4213] / [i915#5608]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-tglu: NOTRUN -> [SKIP][144] ([i915#4103]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-tglu-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][145] ([i915#3546]) +2 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg1: NOTRUN -> [SKIP][146] ([fdo#111825]) +5 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg1-15/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-mtlp: NOTRUN -> [SKIP][147] ([fdo#111767] / [i915#3546]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-dg2: NOTRUN -> [SKIP][148] ([fdo#109274] / [i915#5354]) +6 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html - shard-rkl: NOTRUN -> [SKIP][149] ([fdo#111825]) +2 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-rkl-2/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [PASS][150] -> [FAIL][151] ([i915#2346]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html - shard-apl: [PASS][152] -> [FAIL][153] ([i915#2346]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: NOTRUN -> [FAIL][154] ([i915#2346]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][155] ([i915#4213]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@single-move@all-pipes: - shard-mtlp: NOTRUN -> [DMESG-WARN][156] ([i915#2017]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-4/igt@kms_cursor_legacy@single-move@all-pipes.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][157] ([i915#9227]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg1-16/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4.html * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][158] ([i915#9226] / [i915#9261]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg1-16/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4.html * igt@kms_display_modes@extended-mode-basic: - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#3555] / [i915#8827]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-7/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dsc@dsc-basic: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#3555] / [i915#3840]) +3 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-7/igt@kms_dsc@dsc-basic.html - shard-rkl: NOTRUN -> [SKIP][161] ([i915#3555] / [i915#3840]) +1 other test skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-rkl-2/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-output-formats: - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#3555] / [i915#3840]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-8/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#3469]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-2/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_fence_pin_leak: - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#4881]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-6/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-tglu: NOTRUN -> [SKIP][165] ([fdo#109274] / [fdo#111767] / [i915#3637]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-tglu-10/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#3637]) +3 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][167] ([fdo#109274]) +3 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-11/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-tglu: NOTRUN -> [SKIP][168] ([fdo#109274] / [i915#3637]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-tglu-5/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][169] ([i915#2587] / [i915#2672]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#2672]) +7 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html - shard-rkl: NOTRUN -> [SKIP][171] ([i915#2672]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html - shard-tglu: NOTRUN -> [SKIP][172] ([i915#2587] / [i915#2672]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#2672]) +3 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#8708]) +29 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][175] ([fdo#111825] / [i915#1825]) +11 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][176] ([i915#1825]) +23 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#5354]) +27 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#5460]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#3458]) +23 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html - shard-rkl: NOTRUN -> [SKIP][180] ([i915#3023]) +8 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][181] ([i915#8708]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][182] ([fdo#110189]) +11 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][183] ([i915#8708]) +9 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][184] ([fdo#109280]) +8 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary: - shard-dg1: NOTRUN -> [SKIP][185] ([i915#3458]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html * igt@kms_hdr@bpc-switch-dpms: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#3555] / [i915#8228]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-5/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_invalid_mode@clock-too-high@edp-1-pipe-d: - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#6403]) +3 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-3/igt@kms_invalid_mode@clock-too-high@edp-1-pipe-d.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-1: - shard-apl: [PASS][188] -> [INCOMPLETE][189] ([i915#180] / [i915#9392]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-apl1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-1.html [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-apl1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-1.html * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][190] ([i915#4573]) +1 other test fail [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-glk7/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][191] ([i915#3582]) +3 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-8/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html * igt@kms_plane_multiple@tiling-y: - shard-mtlp: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#8806]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-1/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#6953]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-5/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][194] ([i915#8292]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg1-14/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][195] ([i915#5235]) +2 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#5235]) +19 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-dp-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][197] ([i915#3555] / [i915#5235]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1: - shard-snb: NOTRUN -> [SKIP][198] ([fdo#109271]) +19 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-snb6/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][199] ([i915#5235]) +7 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-rkl-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][200] ([i915#5235]) +15 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg1-15/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf: - shard-glk: NOTRUN -> [SKIP][201] ([fdo#109271] / [i915#658]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-glk3/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][202] ([fdo#111068] / [i915#658]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-tglu-4/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb: - shard-rkl: NOTRUN -> [SKIP][203] ([i915#658]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-rkl-6/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html - shard-tglu: NOTRUN -> [SKIP][204] ([i915#658]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-tglu-10/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@page_flip-p010: - shard-apl: NOTRUN -> [SKIP][205] ([fdo#109271] / [i915#658]) +1 other test skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-apl3/igt@kms_psr2_su@page_flip-p010.html - shard-rkl: NOTRUN -> [SKIP][206] ([fdo#111068] / [i915#658]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-rkl-4/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#658]) +3 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-3/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@primary_page_flip: - shard-apl: NOTRUN -> [SKIP][208] ([fdo#109271]) +74 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-apl7/igt@kms_psr@primary_page_flip.html - shard-rkl: NOTRUN -> [SKIP][209] ([i915#1072]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-rkl-1/igt@kms_psr@primary_page_flip.html * igt@kms_psr@psr2_cursor_mmap_gtt: - shard-dg2: NOTRUN -> [SKIP][210] ([i915#1072]) +8 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-6/igt@kms_psr@psr2_cursor_mmap_gtt.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#5461] / [i915#658]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#4235]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][213] ([fdo#111615] / [i915#5289]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-mtlp: NOTRUN -> [SKIP][214] ([i915#5289]) +1 other test skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#4235]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-7/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_setmode@basic-clone-single-crtc: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#4098]) +2 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-2/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_sysfs_edid_timing: - shard-dg2: [PASS][217] -> [FAIL][218] ([IGT#2]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-dg2-11/igt@kms_sysfs_edid_timing.html [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-3/igt@kms_sysfs_edid_timing.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1: - shard-tglu: [PASS][219] -> [FAIL][220] ([i915#9196]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-vga-1: - shard-snb: [PASS][221] -> [FAIL][222] ([i915#9196]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-snb2/igt@kms_universal_plane@cursor-fb-leak@pipe-b-vga-1.html [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-snb4/igt@kms_universal_plane@cursor-fb-leak@pipe-b-vga-1.html * igt@kms_vblank@pipe-c-query-forked-busy: - shard-rkl: NOTRUN -> [SKIP][223] ([i915#4070] / [i915#6768]) +1 other test skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-rkl-7/igt@kms_vblank@pipe-c-query-forked-busy.html * igt@kms_vblank@pipe-d-ts-continuation-modeset-hang: - shard-rkl: NOTRUN -> [SKIP][224] ([i915#4070] / [i915#533] / [i915#6768]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-rkl-6/igt@kms_vblank@pipe-d-ts-continuation-modeset-hang.html * igt@kms_vrr@flip-dpms: - shard-mtlp: NOTRUN -> [SKIP][225] ([i915#3555] / [i915#8808]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-1/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@flipline: - shard-dg1: NOTRUN -> [SKIP][226] ([i915#3555]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg1-15/igt@kms_vrr@flipline.html * igt@kms_writeback@writeback-fb-id: - shard-glk: NOTRUN -> [SKIP][227] ([fdo#109271] / [i915#2437]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-glk8/igt@kms_writeback@writeback-fb-id.html - shard-dg2: NOTRUN -> [SKIP][228] ([i915#2437]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-7/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-invalid-parameters: - shard-apl: NOTRUN -> [SKIP][229] ([fdo#109271] / [i915#2437]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-apl1/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#2436]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-3/igt@perf@gen8-unprivileged-single-ctx-counters.html - shard-rkl: NOTRUN -> [SKIP][231] ([i915#2436]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-rkl-7/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#2434]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-3/igt@perf@mi-rpc.html * igt@perf_pmu@busy-double-start@bcs0: - shard-mtlp: [PASS][233] -> [FAIL][234] ([i915#4349]) +1 other test fail [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-mtlp-6/igt@perf_pmu@busy-double-start@bcs0.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-2/igt@perf_pmu@busy-double-start@bcs0.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [PASS][235] -> [FAIL][236] ([i915#4349]) +3 other tests fail [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-5/igt@perf_pmu@busy-double-start@vecs1.html * igt@tools_test@sysfs_l3_parity: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#4818]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-5/igt@tools_test@sysfs_l3_parity.html - shard-rkl: NOTRUN -> [SKIP][238] ([fdo#109307]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-rkl-6/igt@tools_test@sysfs_l3_parity.html - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#4818]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-2/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_get_param@get-bad-flags: - shard-rkl: NOTRUN -> [SKIP][240] ([fdo#109315]) +4 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-rkl-6/igt@v3d/v3d_get_param@get-bad-flags.html - shard-tglu: NOTRUN -> [SKIP][241] ([fdo#109315] / [i915#2575]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-tglu-10/igt@v3d/v3d_get_param@get-bad-flags.html * igt@v3d/v3d_perfmon@create-perfmon-exceed: - shard-glk: NOTRUN -> [SKIP][242] ([fdo#109271]) +76 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-glk5/igt@v3d/v3d_perfmon@create-perfmon-exceed.html * igt@v3d/v3d_submit_cl@bad-multisync-out-sync: - shard-dg1: NOTRUN -> [SKIP][243] ([i915#2575]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg1-15/igt@v3d/v3d_submit_cl@bad-multisync-out-sync.html * igt@v3d/v3d_submit_csd@bad-bo: - shard-mtlp: NOTRUN -> [SKIP][244] ([i915#2575]) +9 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-1/igt@v3d/v3d_submit_csd@bad-bo.html * igt@v3d/v3d_submit_csd@job-perfmon: - shard-dg2: NOTRUN -> [SKIP][245] ([i915#2575]) +14 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-6/igt@v3d/v3d_submit_csd@job-perfmon.html * igt@vc4/vc4_dmabuf_poll@poll-read-waits-until-write-done: - shard-dg1: NOTRUN -> [SKIP][246] ([i915#7711]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg1-17/igt@vc4/vc4_dmabuf_poll@poll-read-waits-until-write-done.html * igt@vc4/vc4_label_bo@set-bad-name: - shard-tglu: NOTRUN -> [SKIP][247] ([i915#2575]) +2 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-tglu-10/igt@vc4/vc4_label_bo@set-bad-name.html * igt@vc4/vc4_purgeable_bo@access-purged-bo-mem: - shard-mtlp: NOTRUN -> [SKIP][248] ([i915#7711]) +6 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-4/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html - shard-rkl: NOTRUN -> [SKIP][249] ([i915#7711]) +2 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-rkl-2/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html * igt@vc4/vc4_tiling@get-bad-handle: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#7711]) +8 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg2-11/igt@vc4/vc4_tiling@get-bad-handle.html #### Possible fixes #### * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [FAIL][251] ([i915#7742]) -> [PASS][252] [251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-rkl-1/igt@drm_fdinfo@most-busy-check-all@rcs0.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglu: [FAIL][253] ([i915#6268]) -> [PASS][254] [253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-tglu-4/igt@gem_ctx_exec@basic-nohangcheck.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-tglu-9/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@legacy-engines-hang@blt: - shard-mtlp: [ABORT][255] ([i915#9414]) -> [PASS][256] [255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-mtlp-6/igt@gem_ctx_persistence@legacy-engines-hang@blt.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-1/igt@gem_ctx_persistence@legacy-engines-hang@blt.html * igt@gem_eio@hibernate: - shard-tglu: [ABORT][257] ([i915#7975] / [i915#8213] / [i915#8398]) -> [PASS][258] [257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-tglu-10/igt@gem_eio@hibernate.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-tglu-7/igt@gem_eio@hibernate.html * igt@gem_exec_balancer@hang: - shard-mtlp: [ABORT][259] ([i915#8104] / [i915#8865]) -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-mtlp-3/igt@gem_exec_balancer@hang.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-1/igt@gem_exec_balancer@hang.html * igt@gem_exec_balancer@parallel-bb-first: - shard-mtlp: [ABORT][261] ([i915#9262]) -> [PASS][262] [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-mtlp-4/igt@gem_exec_balancer@parallel-bb-first.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-6/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_endless@dispatch@rcs0: - shard-rkl: [TIMEOUT][263] ([i915#3778]) -> [PASS][264] [263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-rkl-6/igt@gem_exec_endless@dispatch@rcs0.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-rkl-2/igt@gem_exec_endless@dispatch@rcs0.html * igt@gem_exec_fair@basic-deadline: - shard-rkl: [FAIL][265] ([i915#2846]) -> [PASS][266] [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-rkl-7/igt@gem_exec_fair@basic-deadline.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-rkl-6/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][267] ([i915#2842]) -> [PASS][268] [267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-glk7/igt@gem_exec_fair@basic-pace-share@rcs0.html - shard-rkl: [FAIL][269] ([i915#2842]) -> [PASS][270] [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-rkl-4/igt@gem_exec_fair@basic-pace-share@rcs0.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-rkl-4/igt@gem_exec_fair@basic-pace-share@rcs0.html - shard-tglu: [FAIL][271] ([i915#2842]) -> [PASS][272] [271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-tglu-4/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_schedule@noreorder-corked@vcs0: - shard-mtlp: [FAIL][273] ([i915#8758]) -> [PASS][274] [273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-mtlp-4/igt@gem_exec_schedule@noreorder-corked@vcs0.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-4/igt@gem_exec_schedule@noreorder-corked@vcs0.html * igt@gem_exec_schedule@preempt-engines@ccs0: - shard-mtlp: [FAIL][275] ([i915#9119]) -> [PASS][276] +4 other tests pass [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-mtlp-4/igt@gem_exec_schedule@preempt-engines@ccs0.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-2/igt@gem_exec_schedule@preempt-engines@ccs0.html * igt@gem_exec_schedule@preempt-engines@rcs0: - shard-mtlp: [DMESG-FAIL][277] ([i915#8962]) -> [PASS][278] [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-mtlp-4/igt@gem_exec_schedule@preempt-engines@rcs0.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-2/igt@gem_exec_schedule@preempt-engines@rcs0.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [TIMEOUT][279] ([i915#5493]) -> [PASS][280] [279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@i915_hangman@engine-engine-error@vcs0: - shard-mtlp: [FAIL][281] ([i915#7069]) -> [PASS][282] [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-mtlp-4/igt@i915_hangman@engine-engine-error@vcs0.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-5/igt@i915_hangman@engine-engine-error@vcs0.html * igt@i915_module_load@reload-with-fault-injection: - shard-mtlp: [ABORT][283] ([i915#8489] / [i915#8668]) -> [PASS][284] [283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-mtlp-7/igt@i915_module_load@reload-with-fault-injection.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@bcs0: - shard-dg1: [FAIL][285] ([i915#3591]) -> [PASS][286] [285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html * igt@i915_selftest@live@late_gt_pm: - shard-glk: [INCOMPLETE][287] -> [PASS][288] [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-glk5/igt@i915_selftest@live@late_gt_pm.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-glk9/igt@i915_selftest@live@late_gt_pm.html * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: [FAIL][289] ([fdo#103375]) -> [PASS][290] [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-rkl-7/igt@i915_suspend@basic-s3-without-i915.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-rkl-2/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu: [FAIL][291] ([i915#3743]) -> [PASS][292] +1 other test pass [291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-tglu-9/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-tglu-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [FAIL][293] ([i915#2346]) -> [PASS][294] [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-a-edp-1: - shard-mtlp: [DMESG-WARN][295] ([i915#2017] / [i915#9157]) -> [PASS][296] [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-mtlp-2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-a-edp-1.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-a-edp-1.html * {igt@kms_pm_dc@dc6-dpms}: - shard-tglu: [FAIL][297] ([i915#9295]) -> [PASS][298] [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-tglu-3/igt@kms_pm_dc@dc6-dpms.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-tglu-2/igt@kms_pm_dc@dc6-dpms.html * {igt@kms_pm_dc@dc9-dpms}: - shard-apl: [SKIP][299] ([fdo#109271]) -> [PASS][300] [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-apl7/igt@kms_pm_dc@dc9-dpms.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-apl4/igt@kms_pm_dc@dc9-dpms.html * {igt@kms_pm_rpm@modeset-non-lpsp}: - shard-rkl: [SKIP][301] ([i915#9519]) -> [PASS][302] [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1: - shard-mtlp: [FAIL][303] ([i915#9196]) -> [PASS][304] +1 other test pass [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-mtlp-4/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html * igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend: - shard-apl: [INCOMPLETE][305] ([i915#180] / [i915#9392]) -> [PASS][306] [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-apl2/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-apl6/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html * igt@kms_vblank@pipe-d-ts-continuation-suspend: - shard-mtlp: [FAIL][307] ([fdo#103375]) -> [PASS][308] [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-mtlp-6/igt@kms_vblank@pipe-d-ts-continuation-suspend.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-3/igt@kms_vblank@pipe-d-ts-continuation-suspend.html * igt@prime_vgem@sync@vecs0: - shard-mtlp: [ABORT][309] ([i915#8875]) -> [PASS][310] [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-mtlp-2/igt@prime_vgem@sync@vecs0.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-1/igt@prime_vgem@sync@vecs0.html #### Warnings #### * igt@gem_exec_schedule@noreorder-corked@ccs0: - shard-mtlp: [DMESG-FAIL][311] ([i915#8962]) -> [DMESG-WARN][312] ([i915#8962]) +1 other test dmesg-warn [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-mtlp-4/igt@gem_exec_schedule@noreorder-corked@ccs0.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-mtlp-4/igt@gem_exec_schedule@noreorder-corked@ccs0.html * igt@i915_pm_rc6_residency@rc6-idle@vcs0: - shard-tglu: [FAIL][313] ([i915#2681] / [i915#3591]) -> [WARN][314] ([i915#2681]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html * igt@kms_fbcon_fbt@psr: - shard-rkl: [SKIP][315] ([i915#3955]) -> [SKIP][316] ([fdo#110189] / [i915#3955]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13751/shard-rkl-3/igt@kms_fbcon_fbt@psr.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/shard-rkl-2/igt@kms_fbcon_fbt@psr.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3778]: https://gitlab.freedesktop.org/drm/intel/issues/3778 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4475]: https://gitlab.freedesktop.org/drm/intel/issues/4475 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188 [i915#6229]: https://gitlab.freedesktop.org/drm/intel/issues/6229 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6403]: https://gitlab.freedesktop.org/drm/intel/issues/6403 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7036]: https://gitlab.freedesktop.org/drm/intel/issues/7036 [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7962]: https://gitlab.freedesktop.org/drm/intel/issues/7962 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8104]: https://gitlab.freedesktop.org/drm/intel/issues/8104 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8398]: https://gitlab.freedesktop.org/drm/intel/issues/8398 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8456]: https://gitlab.freedesktop.org/drm/intel/issues/8456 [i915#8489]: https://gitlab.freedesktop.org/drm/intel/issues/8489 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8758]: https://gitlab.freedesktop.org/drm/intel/issues/8758 [i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8827]: https://gitlab.freedesktop.org/drm/intel/issues/8827 [i915#8865]: https://gitlab.freedesktop.org/drm/intel/issues/8865 [i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#8962]: https://gitlab.freedesktop.org/drm/intel/issues/8962 [i915#9051]: https://gitlab.freedesktop.org/drm/intel/issues/9051 [i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053 [i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067 [i915#9119]: https://gitlab.freedesktop.org/drm/intel/issues/9119 [i915#9157]: https://gitlab.freedesktop.org/drm/intel/issues/9157 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9226]: https://gitlab.freedesktop.org/drm/intel/issues/9226 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9257]: https://gitlab.freedesktop.org/drm/intel/issues/9257 [i915#9261]: https://gitlab.freedesktop.org/drm/intel/issues/9261 [i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262 [i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295 [i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [i915#9353]: https://gitlab.freedesktop.org/drm/intel/issues/9353 [i915#9392]: https://gitlab.freedesktop.org/drm/intel/issues/9392 [i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412 [i915#9414]: https://gitlab.freedesktop.org/drm/intel/issues/9414 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424 [i915#9433]: https://gitlab.freedesktop.org/drm/intel/issues/9433 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7533 -> IGTPW_9995 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13751: 3bfa85ac32f1466e2faedcaea45693922386315f @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9995: 9995 IGT_7533: 7533 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9995/index.html [-- Attachment #2: Type: text/html, Size: 100538 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-10-14 4:23 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-10-13 4:20 [igt-dev] [PATCH] tests: save GPU engine information more properly Lee Shawn C 2023-10-13 4:55 ` [igt-dev] ✓ CI.xeBAT: success for " Patchwork 2023-10-13 5:15 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork 2023-10-13 7:47 ` [igt-dev] [PATCH] " Tvrtko Ursulin 2023-10-13 18:41 ` [igt-dev] [Intel-gfx] " Andi Shyti 2023-10-14 4:23 ` [igt-dev] ✗ Fi.CI.IGT: failure for " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox