* [igt-dev] [CI i-g-t] tests/perf_pmu: Try to understand GL #6806
@ 2022-12-15 2:54 Ashutosh Dixit
2022-12-15 3:41 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2022-12-16 10:51 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
0 siblings, 2 replies; 3+ messages in thread
From: Ashutosh Dixit @ 2022-12-15 2:54 UTC (permalink / raw)
To: igt-dev
CI ONLY, PLEASE DON'T REVIEW
Try to repro GL #6806 and see what is really happening there since it could
not be reproduced locally.
The only machine this is reproducing on is bat-dg2-11 which it appears has
been moved from trybot to drm-tip CI. So, sorry, not sending this patch to
trybot.
v2: See freq's (especially min) without setting min/max but after a spinner
has been started
Bug: https://gitlab.freedesktop.org/drm/intel/-/issues/6806
Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
---
tests/i915/perf_pmu.c | 48 +++++++++++++++++++++++++++
tests/intel-ci/fast-feedback.testlist | 1 +
2 files changed, 49 insertions(+)
diff --git a/tests/i915/perf_pmu.c b/tests/i915/perf_pmu.c
index f363db2ba13..265cba24616 100644
--- a/tests/i915/perf_pmu.c
+++ b/tests/i915/perf_pmu.c
@@ -1543,6 +1543,19 @@ test_interrupts_sync(int gem_fd)
igt_assert_lte(target, busy);
}
+static void print_freq(int sysfs)
+{
+ igt_info("--------------- Freq ------------- \n");
+ igt_info("RP0 %u\n", igt_sysfs_get_u32(sysfs, "gt_RP0_freq_mhz"));
+ igt_info("RP1 %u\n", igt_sysfs_get_u32(sysfs, "gt_RP1_freq_mhz"));
+ igt_info("RPn %u\n", igt_sysfs_get_u32(sysfs, "gt_RPn_freq_mhz"));
+ igt_info("boost %u\n", igt_sysfs_get_u32(sysfs, "gt_boost_freq_mhz"));
+ igt_info("act %u\n", igt_sysfs_get_u32(sysfs, "gt_act_freq_mhz"));
+ igt_info("cur %u\n", igt_sysfs_get_u32(sysfs, "gt_cur_freq_mhz"));
+ igt_info("max %u\n", igt_sysfs_get_u32(sysfs, "gt_max_freq_mhz"));
+ igt_info("min %u\n", igt_sysfs_get_u32(sysfs, "gt_min_freq_mhz"));
+}
+
static void
test_frequency(int gem_fd)
{
@@ -1568,6 +1581,27 @@ test_frequency(int gem_fd)
fd[0] = open_group(gem_fd, I915_PMU_REQUESTED_FREQUENCY, -1);
fd[1] = open_group(gem_fd, I915_PMU_ACTUAL_FREQUENCY, fd[0]);
+ print_freq(sysfs);
+
+ gem_quiescent_gpu(gem_fd); /* Idle to be sure the change takes effect */
+ spin = spin_sync_flags(gem_fd, ahnd, 0, I915_EXEC_DEFAULT);
+
+ slept = pmu_read_multi(fd[0], 2, start);
+ measured_usleep(batch_duration_ns / 1000);
+ slept = pmu_read_multi(fd[0], 2, val) - slept;
+
+ min[0] = 1e9*(val[0] - start[0]) / slept;
+ min[1] = 1e9*(val[1] - start[1]) / slept;
+
+ print_freq(sysfs);
+
+ igt_spin_free(gem_fd, spin);
+ gem_quiescent_gpu(gem_fd); /* Don't leak busy bo into the next phase */
+
+ usleep(1e6);
+
+ print_freq(sysfs);
+
/*
* Set GPU to min frequency and read PMU counters.
*/
@@ -1578,6 +1612,8 @@ test_frequency(int gem_fd)
igt_require(igt_sysfs_set_u32(sysfs, "gt_boost_freq_mhz", min_freq));
igt_require(igt_sysfs_get_u32(sysfs, "gt_boost_freq_mhz") == min_freq);
+ print_freq(sysfs);
+
gem_quiescent_gpu(gem_fd); /* Idle to be sure the change takes effect */
spin = spin_sync_flags(gem_fd, ahnd, 0, I915_EXEC_DEFAULT);
@@ -1588,11 +1624,15 @@ test_frequency(int gem_fd)
min[0] = 1e9*(val[0] - start[0]) / slept;
min[1] = 1e9*(val[1] - start[1]) / slept;
+ print_freq(sysfs);
+
igt_spin_free(gem_fd, spin);
gem_quiescent_gpu(gem_fd); /* Don't leak busy bo into the next phase */
usleep(1e6);
+ print_freq(sysfs);
+
/*
* Set GPU to max frequency and read PMU counters.
*/
@@ -1604,6 +1644,8 @@ test_frequency(int gem_fd)
igt_require(igt_sysfs_set_u32(sysfs, "gt_min_freq_mhz", max_freq));
igt_require(igt_sysfs_get_u32(sysfs, "gt_min_freq_mhz") == max_freq);
+ print_freq(sysfs);
+
gem_quiescent_gpu(gem_fd);
spin = spin_sync_flags(gem_fd, ahnd, 0, I915_EXEC_DEFAULT);
@@ -1614,9 +1656,13 @@ test_frequency(int gem_fd)
max[0] = 1e9*(val[0] - start[0]) / slept;
max[1] = 1e9*(val[1] - start[1]) / slept;
+ print_freq(sysfs);
+
igt_spin_free(gem_fd, spin);
gem_quiescent_gpu(gem_fd);
+ print_freq(sysfs);
+
/*
* Restore min/max.
*/
@@ -1633,6 +1679,8 @@ test_frequency(int gem_fd)
igt_info("Max frequency: requested %.1f, actual %.1f\n",
max[0], max[1]);
+ print_freq(sysfs);
+
assert_within_epsilon(min[0], min_freq, tolerance);
/*
* On thermally throttled devices we cannot be sure maximum frequency
diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist
index 88c90221e5a..28e1b16849c 100644
--- a/tests/intel-ci/fast-feedback.testlist
+++ b/tests/intel-ci/fast-feedback.testlist
@@ -128,6 +128,7 @@ igt@i915_pm_backlight@basic-brightness
igt@i915_pm_rpm@basic-pci-d3-state
igt@i915_pm_rpm@basic-rte
igt@i915_pm_rps@basic-api
+igt@perf_pmu@frequency
igt@prime_self_import@basic-llseek-bad
igt@prime_self_import@basic-llseek-size
igt@prime_self_import@basic-with_fd_dup
--
2.38.0
^ permalink raw reply related [flat|nested] 3+ messages in thread* [igt-dev] ✓ Fi.CI.BAT: success for tests/perf_pmu: Try to understand GL #6806
2022-12-15 2:54 [igt-dev] [CI i-g-t] tests/perf_pmu: Try to understand GL #6806 Ashutosh Dixit
@ 2022-12-15 3:41 ` Patchwork
2022-12-16 10:51 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
1 sibling, 0 replies; 3+ messages in thread
From: Patchwork @ 2022-12-15 3:41 UTC (permalink / raw)
To: Ashutosh Dixit; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5934 bytes --]
== Series Details ==
Series: tests/perf_pmu: Try to understand GL #6806
URL : https://patchwork.freedesktop.org/series/111953/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_12506 -> IGTPW_8236
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/index.html
Participating hosts (40 -> 40)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in IGTPW_8236 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live@gt_heartbeat:
- fi-kbl-soraka: [PASS][1] -> [DMESG-FAIL][2] ([i915#5334])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12506/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html
- fi-glk-j4005: [PASS][3] -> [DMESG-FAIL][4] ([i915#5334])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12506/fi-glk-j4005/igt@i915_selftest@live@gt_heartbeat.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/fi-glk-j4005/igt@i915_selftest@live@gt_heartbeat.html
* igt@i915_selftest@live@guc_multi_lrc:
- fi-kbl-soraka: [PASS][5] -> [INCOMPLETE][6] ([i915#5334])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12506/fi-kbl-soraka/igt@i915_selftest@live@guc_multi_lrc.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/fi-kbl-soraka/igt@i915_selftest@live@guc_multi_lrc.html
* igt@i915_selftest@live@hangcheck:
- fi-hsw-4770: [PASS][7] -> [INCOMPLETE][8] ([i915#4785])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12506/fi-hsw-4770/igt@i915_selftest@live@hangcheck.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/fi-hsw-4770/igt@i915_selftest@live@hangcheck.html
* igt@kms_chamelium@common-hpd-after-suspend:
- fi-rkl-guc: NOTRUN -> [SKIP][9] ([fdo#111827])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/fi-rkl-guc/igt@kms_chamelium@common-hpd-after-suspend.html
* igt@kms_setmode@basic-clone-single-crtc:
- fi-snb-2600: NOTRUN -> [SKIP][10] ([fdo#109271])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/fi-snb-2600/igt@kms_setmode@basic-clone-single-crtc.html
* igt@perf_pmu@frequency:
- fi-bsw-nick: NOTRUN -> [SKIP][11] ([fdo#109271])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/fi-bsw-nick/igt@perf_pmu@frequency.html
- fi-bsw-kefka: NOTRUN -> [SKIP][12] ([fdo#109271])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/fi-bsw-kefka/igt@perf_pmu@frequency.html
- fi-elk-e7500: NOTRUN -> [SKIP][13] ([fdo#109271])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/fi-elk-e7500/igt@perf_pmu@frequency.html
- fi-bsw-n3050: NOTRUN -> [SKIP][14] ([fdo#109271])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/fi-bsw-n3050/igt@perf_pmu@frequency.html
- fi-pnv-d510: NOTRUN -> [SKIP][15] ([fdo#109271])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/fi-pnv-d510/igt@perf_pmu@frequency.html
* igt@runner@aborted:
- fi-hsw-4770: NOTRUN -> [FAIL][16] ([fdo#109271] / [i915#4312] / [i915#5594])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/fi-hsw-4770/igt@runner@aborted.html
#### Possible fixes ####
* igt@i915_selftest@live@hangcheck:
- fi-adl-ddr5: [DMESG-WARN][17] ([i915#5591]) -> [PASS][18]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12506/fi-adl-ddr5/igt@i915_selftest@live@hangcheck.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/fi-adl-ddr5/igt@i915_selftest@live@hangcheck.html
* igt@i915_selftest@live@migrate:
- bat-adlp-4: [DMESG-FAIL][19] ([i915#7699]) -> [PASS][20]
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12506/bat-adlp-4/igt@i915_selftest@live@migrate.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/bat-adlp-4/igt@i915_selftest@live@migrate.html
* igt@i915_selftest@live@workarounds:
- fi-rkl-guc: [INCOMPLETE][21] ([i915#4983]) -> [PASS][22]
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12506/fi-rkl-guc/igt@i915_selftest@live@workarounds.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/fi-rkl-guc/igt@i915_selftest@live@workarounds.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
[i915#4785]: https://gitlab.freedesktop.org/drm/intel/issues/4785
[i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
[i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
[i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591
[i915#5594]: https://gitlab.freedesktop.org/drm/intel/issues/5594
[i915#6806]: https://gitlab.freedesktop.org/drm/intel/issues/6806
[i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7094 -> IGTPW_8236
CI-20190529: 20190529
CI_DRM_12506: d58c07107cf979eebf3538b0b1b0539b345c66a1 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_8236: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/index.html
IGT_7094: 1763071e9d50c5e992257c9197cb26f166de6fae @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Testlist changes
----------------
-igt@i915_hwmon@hwmon-read
-igt@i915_hwmon@hwmon-write
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/index.html
[-- Attachment #2: Type: text/html, Size: 7324 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread* [igt-dev] ✓ Fi.CI.IGT: success for tests/perf_pmu: Try to understand GL #6806
2022-12-15 2:54 [igt-dev] [CI i-g-t] tests/perf_pmu: Try to understand GL #6806 Ashutosh Dixit
2022-12-15 3:41 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
@ 2022-12-16 10:51 ` Patchwork
1 sibling, 0 replies; 3+ messages in thread
From: Patchwork @ 2022-12-16 10:51 UTC (permalink / raw)
To: Dixit, Ashutosh; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 33329 bytes --]
== Series Details ==
Series: tests/perf_pmu: Try to understand GL #6806
URL : https://patchwork.freedesktop.org/series/111953/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_12506_full -> IGTPW_8236_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/index.html
Participating hosts (14 -> 6)
------------------------------
Missing (8): pig-kbl-iris shard-tglu-9 shard-tglu-10 shard-tglu pig-glk-j5005 pig-skl-6260u shard-rkl shard-dg1
Known issues
------------
Here are the changes found in IGTPW_8236_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_ctx_param@set-priority-not-supported:
- shard-tglb: NOTRUN -> [SKIP][1] ([fdo#109314])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-tglb1/igt@gem_ctx_param@set-priority-not-supported.html
- shard-iclb: NOTRUN -> [SKIP][2] ([fdo#109314])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-iclb5/igt@gem_ctx_param@set-priority-not-supported.html
* igt@gem_ctx_persistence@process:
- shard-snb: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#1099]) +1 similar issue
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-snb4/igt@gem_ctx_persistence@process.html
* igt@gem_eio@in-flight-contexts-10ms:
- shard-snb: NOTRUN -> [FAIL][4] ([i915#4409])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-snb7/igt@gem_eio@in-flight-contexts-10ms.html
* igt@gem_eio@unwedge-stress:
- shard-snb: NOTRUN -> [FAIL][5] ([i915#3354])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-snb5/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@parallel-keep-in-fence:
- shard-iclb: [PASS][6] -> [SKIP][7] ([i915#4525]) +1 similar issue
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12506/shard-iclb2/igt@gem_exec_balancer@parallel-keep-in-fence.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-iclb5/igt@gem_exec_balancer@parallel-keep-in-fence.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-tglb: NOTRUN -> [FAIL][8] ([i915#6117])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-tglb6/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-tglb: [PASS][9] -> [FAIL][10] ([i915#2842])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12506/shard-tglb1/igt@gem_exec_fair@basic-pace-share@rcs0.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-tglb6/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-iclb: [PASS][11] -> [FAIL][12] ([i915#2842])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12506/shard-iclb1/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-iclb3/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_huc_copy@huc-copy:
- shard-tglb: [PASS][13] -> [SKIP][14] ([i915#2190])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12506/shard-tglb1/igt@gem_huc_copy@huc-copy.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-tglb7/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@massive:
- shard-iclb: NOTRUN -> [SKIP][15] ([i915#4613])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-iclb2/igt@gem_lmem_swapping@massive.html
- shard-tglb: NOTRUN -> [SKIP][16] ([i915#4613]) +1 similar issue
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-tglb2/igt@gem_lmem_swapping@massive.html
* igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
- shard-iclb: NOTRUN -> [SKIP][17] ([i915#4270])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-iclb8/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
- shard-tglb: NOTRUN -> [SKIP][18] ([i915#4270])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-tglb2/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
* igt@gem_render_copy@yf-tiled-to-vebox-x-tiled:
- shard-iclb: NOTRUN -> [SKIP][19] ([i915#768])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-iclb2/igt@gem_render_copy@yf-tiled-to-vebox-x-tiled.html
* igt@gem_softpin@evict-single-offset:
- shard-apl: NOTRUN -> [FAIL][20] ([i915#4171])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-apl6/igt@gem_softpin@evict-single-offset.html
- shard-iclb: NOTRUN -> [FAIL][21] ([i915#4171])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-iclb8/igt@gem_softpin@evict-single-offset.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-tglb: NOTRUN -> [SKIP][22] ([i915#3297])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-tglb2/igt@gem_userptr_blits@create-destroy-unsync.html
- shard-iclb: NOTRUN -> [SKIP][23] ([i915#3297])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-iclb1/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_vm_create@invalid-create:
- shard-snb: NOTRUN -> [SKIP][24] ([fdo#109271]) +156 similar issues
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-snb5/igt@gem_vm_create@invalid-create.html
* igt@gen3_render_linear_blits:
- shard-iclb: NOTRUN -> [SKIP][25] ([fdo#109289]) +1 similar issue
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-iclb1/igt@gen3_render_linear_blits.html
* igt@gen7_exec_parse@basic-allowed:
- shard-tglb: NOTRUN -> [SKIP][26] ([fdo#109289]) +2 similar issues
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-tglb5/igt@gen7_exec_parse@basic-allowed.html
* igt@gen9_exec_parse@basic-rejected:
- shard-tglb: NOTRUN -> [SKIP][27] ([i915#2527] / [i915#2856]) +1 similar issue
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-tglb1/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-iclb: NOTRUN -> [SKIP][28] ([i915#2856])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-iclb3/igt@gen9_exec_parse@batch-invalid-length.html
* igt@i915_pm_dc@dc6-dpms:
- shard-iclb: [PASS][29] -> [FAIL][30] ([i915#3989] / [i915#454])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12506/shard-iclb7/igt@i915_pm_dc@dc6-dpms.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html
* igt@i915_pm_dc@dc9-dpms:
- shard-tglb: NOTRUN -> [SKIP][31] ([i915#4281])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-tglb6/igt@i915_pm_dc@dc9-dpms.html
* igt@i915_pm_rc6_residency@rc6-idle@rcs0:
- shard-tglb: NOTRUN -> [WARN][32] ([i915#2681]) +3 similar issues
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-tglb7/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
* igt@i915_pm_rc6_residency@rc6-idle@vcs0:
- shard-iclb: NOTRUN -> [WARN][33] ([i915#2684]) +3 similar issues
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-iclb8/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
* igt@i915_pm_rpm@pc8-residency:
- shard-iclb: NOTRUN -> [SKIP][34] ([fdo#109293] / [fdo#109506])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-iclb6/igt@i915_pm_rpm@pc8-residency.html
- shard-tglb: NOTRUN -> [SKIP][35] ([fdo#109506] / [i915#2411])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-tglb5/igt@i915_pm_rpm@pc8-residency.html
* igt@i915_pm_sseu@full-enable:
- shard-tglb: NOTRUN -> [SKIP][36] ([i915#4387])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-tglb1/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@test-query-geometry-subslices:
- shard-iclb: NOTRUN -> [SKIP][37] ([i915#5723])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-iclb1/igt@i915_query@test-query-geometry-subslices.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-iclb: NOTRUN -> [SKIP][38] ([i915#404])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-iclb2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-tglb: NOTRUN -> [SKIP][39] ([i915#404])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-tglb7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-iclb: NOTRUN -> [SKIP][40] ([i915#5286])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-iclb8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
- shard-tglb: NOTRUN -> [SKIP][41] ([i915#5286])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-tglb1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-tglb: NOTRUN -> [SKIP][42] ([fdo#111614]) +1 similar issue
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-tglb2/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
- shard-iclb: NOTRUN -> [SKIP][43] ([fdo#110725] / [fdo#111614]) +1 similar issue
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-iclb2/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-tglb: NOTRUN -> [SKIP][44] ([fdo#111615]) +2 similar issues
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-tglb2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_joiner@invalid-modeset:
- shard-tglb: NOTRUN -> [SKIP][45] ([i915#2705])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-tglb5/igt@kms_big_joiner@invalid-modeset.html
- shard-iclb: NOTRUN -> [SKIP][46] ([i915#2705])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-iclb3/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs:
- shard-iclb: NOTRUN -> [SKIP][47] ([fdo#109278] / [i915#3886]) +2 similar issues
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-iclb8/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
- shard-apl: NOTRUN -> [SKIP][48] ([fdo#109271] / [i915#3886]) +2 similar issues
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-apl8/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
- shard-tglb: NOTRUN -> [SKIP][49] ([i915#3689] / [i915#3886]) +1 similar issue
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-tglb7/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf_tiled_ccs:
- shard-tglb: NOTRUN -> [SKIP][50] ([fdo#111615] / [i915#3689]) +3 similar issues
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-tglb1/igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf_tiled_ccs.html
* igt@kms_ccs@pipe-a-random-ccs-data-4_tiled_dg2_mc_ccs:
- shard-tglb: NOTRUN -> [SKIP][51] ([i915#6095]) +2 similar issues
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-tglb6/igt@kms_ccs@pipe-a-random-ccs-data-4_tiled_dg2_mc_ccs.html
* igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_dg2_rc_ccs:
- shard-tglb: NOTRUN -> [SKIP][52] ([i915#3689] / [i915#6095]) +2 similar issues
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-tglb1/igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_dg2_rc_ccs.html
* igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_ccs:
- shard-tglb: NOTRUN -> [SKIP][53] ([i915#3689]) +2 similar issues
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-tglb2/igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_ccs.html
* igt@kms_cdclk@mode-transition:
- shard-iclb: NOTRUN -> [SKIP][54] ([i915#3742])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-iclb8/igt@kms_cdclk@mode-transition.html
- shard-tglb: NOTRUN -> [SKIP][55] ([i915#3742])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-tglb2/igt@kms_cdclk@mode-transition.html
* igt@kms_chamelium@hdmi-edid-stress-resolution-4k:
- shard-tglb: NOTRUN -> [SKIP][56] ([fdo#109284] / [fdo#111827]) +3 similar issues
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-tglb7/igt@kms_chamelium@hdmi-edid-stress-resolution-4k.html
* igt@kms_chamelium@hdmi-hpd:
- shard-iclb: NOTRUN -> [SKIP][57] ([fdo#109284] / [fdo#111827]) +2 similar issues
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-iclb2/igt@kms_chamelium@hdmi-hpd.html
- shard-apl: NOTRUN -> [SKIP][58] ([fdo#109271] / [fdo#111827]) +2 similar issues
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-apl8/igt@kms_chamelium@hdmi-hpd.html
* igt@kms_chamelium@vga-hpd-with-enabled-mode:
- shard-snb: NOTRUN -> [SKIP][59] ([fdo#109271] / [fdo#111827]) +6 similar issues
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-snb5/igt@kms_chamelium@vga-hpd-with-enabled-mode.html
* igt@kms_color@deep-color:
- shard-iclb: NOTRUN -> [SKIP][60] ([i915#3555]) +3 similar issues
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-iclb7/igt@kms_color@deep-color.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-tglb: NOTRUN -> [SKIP][61] ([i915#3116] / [i915#3299])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-tglb2/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-iclb: NOTRUN -> [SKIP][62] ([i915#3116])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-iclb2/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-tglb: NOTRUN -> [SKIP][63] ([fdo#109274] / [fdo#111825])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-tglb1/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-iclb: NOTRUN -> [SKIP][64] ([i915#3840])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-iclb3/igt@kms_dsc@dsc-with-bpc-formats.html
- shard-apl: NOTRUN -> [SKIP][65] ([fdo#109271] / [i915#7205])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-apl8/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-iclb: NOTRUN -> [SKIP][66] ([fdo#109274]) +2 similar issues
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-iclb3/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-tglb: NOTRUN -> [SKIP][67] ([fdo#109274] / [fdo#111825] / [i915#3637]) +3 similar issues
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-tglb1/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@c-dp1:
- shard-apl: [PASS][68] -> [DMESG-WARN][69] ([i915#180])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12506/shard-apl8/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-apl2/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode:
- shard-iclb: NOTRUN -> [SKIP][70] ([i915#2672]) +3 similar issues
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-iclb3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-iclb: NOTRUN -> [SKIP][71] ([i915#2587] / [i915#2672]) +3 similar issues
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-iclb6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-iclb: NOTRUN -> [SKIP][72] ([i915#2672] / [i915#3555]) +1 similar issue
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-iclb7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt:
- shard-tglb: NOTRUN -> [SKIP][73] ([i915#6497]) +5 similar issues
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-tglb1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-msflip-blt:
- shard-iclb: NOTRUN -> [SKIP][74] ([fdo#109280]) +13 similar issues
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-iclb1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-tglb: NOTRUN -> [SKIP][75] ([fdo#109280] / [fdo#111825]) +14 similar issues
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-tglb2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-tglb: NOTRUN -> [SKIP][76] ([i915#3555]) +3 similar issues
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-tglb7/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-edp-1:
- shard-iclb: NOTRUN -> [SKIP][77] ([i915#5235]) +2 similar issues
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-iclb3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-edp-1.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1:
- shard-tglb: NOTRUN -> [SKIP][78] ([i915#5235]) +3 similar issues
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-tglb5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-iclb: NOTRUN -> [SKIP][79] ([fdo#109642] / [fdo#111068] / [i915#658])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-iclb7/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-apl: NOTRUN -> [SKIP][80] ([fdo#109271] / [i915#658])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-apl6/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-tglb: NOTRUN -> [SKIP][81] ([i915#7037])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-tglb5/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-nv12@pipe-b-edp-1:
- shard-iclb: NOTRUN -> [FAIL][82] ([i915#5939]) +2 similar issues
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-iclb2/igt@kms_psr2_su@page_flip-nv12@pipe-b-edp-1.html
* igt@kms_psr@psr2_cursor_plane_onoff:
- shard-iclb: [PASS][83] -> [SKIP][84] ([fdo#109441]) +2 similar issues
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12506/shard-iclb2/igt@kms_psr@psr2_cursor_plane_onoff.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-iclb7/igt@kms_psr@psr2_cursor_plane_onoff.html
* igt@kms_psr@psr2_sprite_blt:
- shard-iclb: NOTRUN -> [SKIP][85] ([fdo#109441]) +1 similar issue
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-iclb1/igt@kms_psr@psr2_sprite_blt.html
* igt@kms_psr@psr2_sprite_plane_onoff:
- shard-apl: NOTRUN -> [SKIP][86] ([fdo#109271]) +70 similar issues
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-apl8/igt@kms_psr@psr2_sprite_plane_onoff.html
- shard-tglb: NOTRUN -> [FAIL][87] ([i915#132] / [i915#3467]) +2 similar issues
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-tglb7/igt@kms_psr@psr2_sprite_plane_onoff.html
* igt@kms_vblank@pipe-d-wait-idle:
- shard-iclb: NOTRUN -> [SKIP][88] ([fdo#109278]) +7 similar issues
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-iclb7/igt@kms_vblank@pipe-d-wait-idle.html
- shard-apl: NOTRUN -> [SKIP][89] ([fdo#109271] / [i915#533])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-apl6/igt@kms_vblank@pipe-d-wait-idle.html
* igt@perf_pmu@event-wait@rcs0:
- shard-iclb: NOTRUN -> [SKIP][90] ([fdo#112283])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-iclb1/igt@perf_pmu@event-wait@rcs0.html
- shard-tglb: NOTRUN -> [SKIP][91] ([fdo#112283])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-tglb5/igt@perf_pmu@event-wait@rcs0.html
* igt@prime_vgem@basic-userptr:
- shard-tglb: NOTRUN -> [SKIP][92] ([fdo#109295] / [i915#3301])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-tglb1/igt@prime_vgem@basic-userptr.html
- shard-iclb: NOTRUN -> [SKIP][93] ([fdo#109295] / [i915#3301])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-iclb1/igt@prime_vgem@basic-userptr.html
* igt@v3d/v3d_create_bo@create-bo-4096:
- shard-iclb: NOTRUN -> [SKIP][94] ([fdo#109315]) +1 similar issue
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-iclb5/igt@v3d/v3d_create_bo@create-bo-4096.html
* igt@v3d/v3d_perfmon@get-values-invalid-pointer:
- shard-tglb: NOTRUN -> [SKIP][95] ([fdo#109315] / [i915#2575]) +2 similar issues
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-tglb5/igt@v3d/v3d_perfmon@get-values-invalid-pointer.html
#### Possible fixes ####
* igt@gem_exec_balancer@parallel-bb-first:
- shard-iclb: [SKIP][96] ([i915#4525]) -> [PASS][97]
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12506/shard-iclb6/igt@gem_exec_balancer@parallel-bb-first.html
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-iclb1/igt@gem_exec_balancer@parallel-bb-first.html
* igt@gem_exec_fair@basic-flow@rcs0:
- shard-tglb: [FAIL][98] ([i915#2842]) -> [PASS][99]
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12506/shard-tglb6/igt@gem_exec_fair@basic-flow@rcs0.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-tglb6/igt@gem_exec_fair@basic-flow@rcs0.html
* igt@gen9_exec_parse@allowed-single:
- shard-apl: [DMESG-WARN][100] ([i915#5566] / [i915#716]) -> [PASS][101]
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12506/shard-apl8/igt@gen9_exec_parse@allowed-single.html
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-apl2/igt@gen9_exec_parse@allowed-single.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1:
- shard-iclb: [SKIP][102] ([i915#5235]) -> [PASS][103] +2 similar issues
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12506/shard-iclb2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1.html
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-iclb5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1.html
* igt@kms_psr@psr2_sprite_plane_move:
- shard-iclb: [SKIP][104] ([fdo#109441]) -> [PASS][105] +1 similar issue
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12506/shard-iclb7/igt@kms_psr@psr2_sprite_plane_move.html
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-iclb: [SKIP][106] ([i915#5519]) -> [PASS][107] +1 similar issue
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12506/shard-iclb5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-iclb8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-tglb: [SKIP][108] ([i915#5519]) -> [PASS][109]
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12506/shard-tglb7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-tglb6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
#### Warnings ####
* igt@gem_exec_balancer@parallel-ordering:
- shard-iclb: [SKIP][110] ([i915#4525]) -> [FAIL][111] ([i915#6117])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12506/shard-iclb6/igt@gem_exec_balancer@parallel-ordering.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-iclb1/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-tglb: [SKIP][112] ([i915#2848]) -> [FAIL][113] ([i915#2842])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12506/shard-tglb6/igt@gem_exec_fair@basic-none-share@rcs0.html
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-tglb5/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
- shard-iclb: [SKIP][114] ([i915#2920]) -> [SKIP][115] ([i915#658])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12506/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-iclb1/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf:
- shard-iclb: [SKIP][116] ([i915#658]) -> [SKIP][117] ([i915#2920])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12506/shard-iclb3/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html
* igt@runner@aborted:
- shard-apl: ([FAIL][118], [FAIL][119], [FAIL][120]) ([fdo#109271] / [i915#3002] / [i915#4312]) -> ([FAIL][121], [FAIL][122], [FAIL][123]) ([i915#180] / [i915#3002] / [i915#4312])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12506/shard-apl8/igt@runner@aborted.html
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12506/shard-apl3/igt@runner@aborted.html
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12506/shard-apl2/igt@runner@aborted.html
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-apl8/igt@runner@aborted.html
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-apl6/igt@runner@aborted.html
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/shard-apl2/igt@runner@aborted.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725
[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#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#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411
[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#2684]: https://gitlab.freedesktop.org/drm/intel/issues/2684
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2848]: https://gitlab.freedesktop.org/drm/intel/issues/2848
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
[i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002
[i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
[i915#3354]: https://gitlab.freedesktop.org/drm/intel/issues/3354
[i915#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989
[i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404
[i915#4171]: https://gitlab.freedesktop.org/drm/intel/issues/4171
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
[i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
[i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
[i915#4409]: https://gitlab.freedesktop.org/drm/intel/issues/4409
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519
[i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
[i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723
[i915#5939]: https://gitlab.freedesktop.org/drm/intel/issues/5939
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117
[i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#7037]: https://gitlab.freedesktop.org/drm/intel/issues/7037
[i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716
[i915#7205]: https://gitlab.freedesktop.org/drm/intel/issues/7205
[i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7094 -> IGTPW_8236
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_12506: d58c07107cf979eebf3538b0b1b0539b345c66a1 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_8236: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/index.html
IGT_7094: 1763071e9d50c5e992257c9197cb26f166de6fae @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8236/index.html
[-- Attachment #2: Type: text/html, Size: 41230 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-12-16 10:51 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-12-15 2:54 [igt-dev] [CI i-g-t] tests/perf_pmu: Try to understand GL #6806 Ashutosh Dixit
2022-12-15 3:41 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2022-12-16 10:51 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox