* [igt-dev] [PATCH i-g-t 0/2] Basic tests for fdinfo client memory
@ 2023-09-21 11:45 Tvrtko Ursulin
2023-09-21 11:45 ` [igt-dev] [PATCH i-g-t 1/2] tests/i915/drm_fdinfo: Stress test context close versus fdinfo reads Tvrtko Ursulin
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Tvrtko Ursulin @ 2023-09-21 11:45 UTC (permalink / raw)
To: igt-dev, Intel-gfx; +Cc: Tvrtko Ursulin
From: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Just some basic tests to check reported values look correct.
Tvrtko Ursulin (2):
tests/i915/drm_fdinfo: Stress test context close versus fdinfo reads
tests/i915/drm_fdinfo: Add some memory info tests
tests/intel/drm_fdinfo.c | 269 +++++++++++++++++++++++++++++++++++++++
1 file changed, 269 insertions(+)
--
2.39.2
^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] [PATCH i-g-t 1/2] tests/i915/drm_fdinfo: Stress test context close versus fdinfo reads
2023-09-21 11:45 [igt-dev] [PATCH i-g-t 0/2] Basic tests for fdinfo client memory Tvrtko Ursulin
@ 2023-09-21 11:45 ` Tvrtko Ursulin
2023-09-21 11:45 ` [igt-dev] [PATCH i-g-t 2/2] tests/i915/drm_fdinfo: Add some memory info tests Tvrtko Ursulin
` (3 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Tvrtko Ursulin @ 2023-09-21 11:45 UTC (permalink / raw)
To: igt-dev, Intel-gfx; +Cc: Tvrtko Ursulin
From: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
A short smoke tests to exercise fdinfo reads in parallel to contexts
getting created and destroyed.
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
---
tests/intel/drm_fdinfo.c | 68 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 68 insertions(+)
diff --git a/tests/intel/drm_fdinfo.c b/tests/intel/drm_fdinfo.c
index aca19db50680..a9910900358d 100644
--- a/tests/intel/drm_fdinfo.c
+++ b/tests/intel/drm_fdinfo.c
@@ -22,11 +22,14 @@
*
*/
+#include <fcntl.h>
+
#include "igt.h"
#include "igt_core.h"
#include "igt_device.h"
#include "igt_drm_fdinfo.h"
#include "i915/gem.h"
+#include "i915/gem_create.h"
#include "i915/gem_vm.h"
#include "intel_ctx.h"
/**
@@ -72,6 +75,8 @@
* SUBTEST: virtual-busy-idle-all
*
* SUBTEST: virtual-idle
+ *
+ * SUBTEST: context-close-stress
*/
IGT_TEST_DESCRIPTION("Test the i915 drm fdinfo data");
@@ -717,6 +722,56 @@ virtual_all(int i915, const intel_ctx_cfg_t *base_cfg, unsigned int flags)
}
}
+static void stress_context_close(int i915)
+{
+ const uint32_t bbe = MI_BATCH_BUFFER_END;
+ struct igt_helper_process reader = { };
+ struct drm_client_fdinfo info;
+ uint32_t batch;
+ int dir, ret;
+ char buf[64];
+
+ ret = snprintf(buf, sizeof(buf), "%u", i915);
+ igt_assert(ret > 0 && ret < sizeof(buf));
+
+ dir = open("/proc/self/fdinfo", O_DIRECTORY | O_RDONLY);
+ igt_assert_fd(dir);
+
+ memset(&info, 0, sizeof(info));
+ ret = __igt_parse_drm_fdinfo(dir, buf, &info, NULL, 0, NULL, 0);
+ igt_assert(ret > 0);
+ igt_require(info.num_regions);
+
+ batch = gem_create(i915, 4096);
+ gem_write(i915, batch, 0, &bbe, sizeof(bbe));
+
+ igt_fork_helper(&reader) {
+ for (;;) {
+ memset(&info, 0, sizeof(info));
+ ret = __igt_parse_drm_fdinfo(dir, buf, &info,
+ NULL, 0, NULL, 0);
+ igt_assert(ret > 0);
+ }
+ }
+
+ igt_until_timeout(10) {
+ struct drm_i915_gem_exec_object2 obj = {
+ .handle = batch,
+ };
+ struct drm_i915_gem_execbuffer2 eb = {
+ .buffers_ptr = to_user_pointer(&obj),
+ .buffer_count = 1,
+ };
+
+ eb.rsvd1 = gem_context_create(i915);
+ igt_assert(eb.rsvd1);
+ gem_execbuf(i915, &eb);
+ gem_context_destroy(i915, eb.rsvd1);
+ }
+
+ igt_stop_helper(&reader);
+}
+
#define test_each_engine(T, i915, ctx, e) \
igt_subtest_with_dynamic(T) for_each_ctx_engine(i915, ctx, e) \
igt_dynamic_f("%s", e->name)
@@ -847,6 +902,19 @@ igt_main
test_each_engine("isolation", i915, ctx, e)
single(i915, ctx, e, TEST_BUSY | TEST_ISOLATION);
+ igt_subtest_group {
+ int newfd;
+
+ igt_fixture
+ newfd = drm_reopen_driver(i915);
+
+ igt_subtest("context-close-stress")
+ stress_context_close(newfd);
+
+ igt_fixture
+ drm_close_driver(newfd);
+ }
+
igt_fixture {
intel_ctx_destroy(i915, ctx);
drm_close_driver(i915);
--
2.39.2
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [igt-dev] [PATCH i-g-t 2/2] tests/i915/drm_fdinfo: Add some memory info tests
2023-09-21 11:45 [igt-dev] [PATCH i-g-t 0/2] Basic tests for fdinfo client memory Tvrtko Ursulin
2023-09-21 11:45 ` [igt-dev] [PATCH i-g-t 1/2] tests/i915/drm_fdinfo: Stress test context close versus fdinfo reads Tvrtko Ursulin
@ 2023-09-21 11:45 ` Tvrtko Ursulin
2023-09-21 14:30 ` [igt-dev] ✓ CI.xeBAT: success for Basic tests for fdinfo client memory Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Tvrtko Ursulin @ 2023-09-21 11:45 UTC (permalink / raw)
To: igt-dev, Intel-gfx; +Cc: Tvrtko Ursulin
From: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
A few basic smoke tests to check per client memory info looks legit.
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
---
tests/intel/drm_fdinfo.c | 201 +++++++++++++++++++++++++++++++++++++++
1 file changed, 201 insertions(+)
diff --git a/tests/intel/drm_fdinfo.c b/tests/intel/drm_fdinfo.c
index a9910900358d..b5f1010d2fd4 100644
--- a/tests/intel/drm_fdinfo.c
+++ b/tests/intel/drm_fdinfo.c
@@ -23,6 +23,7 @@
*/
#include <fcntl.h>
+#include <sys/ioctl.h>
#include "igt.h"
#include "igt_core.h"
@@ -76,6 +77,16 @@
*
* SUBTEST: virtual-idle
*
+ * SUBTEST: memory-info-idle
+ *
+ * SUBTEST: memory-info-active
+ *
+ * SUBTEST: memory-info-resident
+ *
+ * SUBTEST: memory-info-purgeable
+ *
+ * SUBTEST: memory-info-shared
+ *
* SUBTEST: context-close-stress
*/
@@ -143,6 +154,11 @@ static unsigned int measured_usleep(unsigned int usec)
#define FLAG_HANG (8)
#define TEST_ISOLATION (16)
+#define TEST_ACTIVE TEST_BUSY
+#define TEST_RESIDENT (32)
+#define TEST_PURGEABLE (64)
+#define TEST_SHARED (128)
+
static void end_spin(int fd, igt_spin_t *spin, unsigned int flags)
{
if (!spin)
@@ -772,6 +788,156 @@ static void stress_context_close(int i915)
igt_stop_helper(&reader);
}
+static size_t read_fdinfo(char *buf, const size_t sz, int at, const char *name)
+{
+ size_t count;
+ int fd;
+
+ fd = openat(at, name, O_RDONLY);
+ if (fd < 0)
+ return 0;
+
+ count = read(fd, buf, sz - 1);
+ if (count > 0)
+ buf[count - 1] = 0;
+ close(fd);
+
+ return count > 0 ? count : 0;
+}
+
+#define fdinfo_assert(cond, d, sz, total) \
+ igt_assert_f(cond, "\ndelta=%"PRIu64" sz=%"PRIu64" total=%"PRIu64"\n%s\n", d, sz, total, fdinfo_buf)
+
+static void
+test_memory(int i915, struct gem_memory_region *r, unsigned int flags)
+{
+ struct drm_client_fdinfo prev_info = { };
+ struct drm_client_fdinfo info = { };
+ const uint64_t max_mem = 512ull * 1024 * 1024;
+ const uint64_t max_bo = 16ull * 1024 * 1024;
+ uint64_t total = 0, sz, d;
+ char buf[64], fdinfo_buf[4096];
+ igt_spin_t *spin = NULL;
+ int ret, dir;
+
+ i915 = drm_reopen_driver(i915);
+
+ ret = snprintf(buf, sizeof(buf), "%u", i915);
+ igt_assert(ret > 0 && ret < sizeof(buf));
+
+ dir = open("/proc/self/fdinfo", O_DIRECTORY | O_RDONLY);
+ igt_assert_fd(dir);
+
+ gem_quiescent_gpu(i915);
+ ret = __igt_parse_drm_fdinfo(dir, buf, &info, NULL, 0, NULL, 0);
+ igt_assert(ret > 0);
+ igt_require(info.num_regions);
+ memcpy(&prev_info, &info, sizeof(info));
+
+ while (total < max_mem) {
+ static const char *region_map[] = {
+ "system",
+ "lmem0",
+ };
+ uint32_t bo;
+ int j;
+
+ /* Align to 1MiB to work around drm_print_memory_stats */
+ sz = 1ull * 1024 * 1024 + random() % (max_bo - 1ull * 1024 * 1024);
+ sz &= ~((1ull * 1024 * 1024) - 1);
+ ret = __gem_create_in_memory_region_list(i915, &bo, &sz, 0, &r->ci, 1);
+ igt_assert_eq(ret, 0);
+ total += sz;
+
+ if (flags & (TEST_RESIDENT | TEST_PURGEABLE)) {
+ struct drm_i915_gem_exec_object2 obj[2];
+ struct drm_i915_gem_execbuffer2 eb = {
+ .buffers_ptr = to_user_pointer(obj),
+ .buffer_count = 2,
+ };
+ const uint32_t bbe = MI_BATCH_BUFFER_END;
+
+ obj[0].handle = bo;
+ obj[1].handle = gem_create(i915, 4096);
+ gem_write(i915, obj[1].handle, 0, &bbe, sizeof(bbe));
+ gem_execbuf(i915, &eb);
+ gem_sync(i915, obj[1].handle);
+ gem_close(i915, obj[1].handle);
+ }
+
+ if (flags & TEST_PURGEABLE)
+ gem_madvise(i915, bo, I915_MADV_DONTNEED);
+
+ if (flags & TEST_SHARED) {
+ struct drm_gem_open open_struct;
+ struct drm_gem_flink flink;
+
+ flink.handle = bo;
+ ret = ioctl(i915, DRM_IOCTL_GEM_FLINK, &flink);
+ igt_assert_eq(ret, 0);
+
+ open_struct.name = flink.name;
+ ret = ioctl(i915, DRM_IOCTL_GEM_OPEN, &open_struct);
+ igt_assert_eq(ret, 0);
+ igt_assert(open_struct.handle != 0);
+ }
+
+ if (flags & TEST_ACTIVE)
+ spin = igt_spin_new(i915, .dependency = bo);
+
+ memset(&info, 0, sizeof(info));
+ ret = __igt_parse_drm_fdinfo(dir, buf, &info,
+ NULL, 0,
+ region_map, ARRAY_SIZE(region_map));
+ igt_assert(ret > 0);
+ igt_assert(info.num_regions);
+
+ read_fdinfo(fdinfo_buf, sizeof(fdinfo_buf), dir, buf);
+
+ /* See region map */
+ j = r->ci.memory_class == I915_MEMORY_CLASS_SYSTEM ? 0 : 1;
+
+ fdinfo_assert(info.region_mem[j].total > prev_info.region_mem[j].total, d, sz, total);
+
+ d = info.region_mem[j].total - prev_info.region_mem[j].total;
+ /* >= to account for objects out of our control */
+ fdinfo_assert(d >= sz, d, sz, total);
+
+ d = info.region_mem[j].resident - prev_info.region_mem[j].resident;
+ if (flags & (TEST_RESIDENT | TEST_PURGEABLE | TEST_ACTIVE))
+ fdinfo_assert(d >= sz, d, sz, total);
+ else
+ fdinfo_assert(d < sz, d, sz, total);
+
+ d = info.region_mem[j].shared - prev_info.region_mem[j].shared;
+ if (flags & TEST_SHARED)
+ fdinfo_assert(d >= sz, d, sz, total);
+ else
+ fdinfo_assert(d == 0, d, sz, total);
+
+ d = info.region_mem[j].purgeable - prev_info.region_mem[j].purgeable;
+ if (flags & TEST_PURGEABLE)
+ fdinfo_assert(d >= sz, d, sz, total);
+ else
+ fdinfo_assert(d < sz, d, sz, total);
+
+ /* Active is one at a time so can't use delta */
+ if (flags & TEST_ACTIVE)
+ fdinfo_assert(info.region_mem[j].active >= sz, d, sz, total);
+ else
+ fdinfo_assert(info.region_mem[j].active < sz, d, sz, total);
+
+ memcpy(&prev_info, &info, sizeof(info));
+
+ if (flags & TEST_ACTIVE) {
+ igt_spin_free(i915, spin);
+ gem_quiescent_gpu(i915);
+ }
+ }
+
+ close(i915);
+}
+
#define test_each_engine(T, i915, ctx, e) \
igt_subtest_with_dynamic(T) for_each_ctx_engine(i915, ctx, e) \
igt_dynamic_f("%s", e->name)
@@ -902,6 +1068,41 @@ igt_main
test_each_engine("isolation", i915, ctx, e)
single(i915, ctx, e, TEST_BUSY | TEST_ISOLATION);
+ igt_subtest_with_dynamic("memory-info-idle") {
+ for_each_memory_region(r, i915) {
+ igt_dynamic_f("%s", r->name)
+ test_memory(i915, r, 0);
+ }
+ }
+
+ igt_subtest_with_dynamic("memory-info-resident") {
+ for_each_memory_region(r, i915) {
+ igt_dynamic_f("%s", r->name)
+ test_memory(i915, r, TEST_RESIDENT);
+ }
+ }
+
+ igt_subtest_with_dynamic("memory-info-purgeable") {
+ for_each_memory_region(r, i915) {
+ igt_dynamic_f("%s", r->name)
+ test_memory(i915, r, TEST_PURGEABLE);
+ }
+ }
+
+ igt_subtest_with_dynamic("memory-info-active") {
+ for_each_memory_region(r, i915) {
+ igt_dynamic_f("%s", r->name)
+ test_memory(i915, r, TEST_ACTIVE);
+ }
+ }
+
+ igt_subtest_with_dynamic("memory-info-shared") {
+ for_each_memory_region(r, i915) {
+ igt_dynamic_f("%s", r->name)
+ test_memory(i915, r, TEST_SHARED);
+ }
+ }
+
igt_subtest_group {
int newfd;
--
2.39.2
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for Basic tests for fdinfo client memory
2023-09-21 11:45 [igt-dev] [PATCH i-g-t 0/2] Basic tests for fdinfo client memory Tvrtko Ursulin
2023-09-21 11:45 ` [igt-dev] [PATCH i-g-t 1/2] tests/i915/drm_fdinfo: Stress test context close versus fdinfo reads Tvrtko Ursulin
2023-09-21 11:45 ` [igt-dev] [PATCH i-g-t 2/2] tests/i915/drm_fdinfo: Add some memory info tests Tvrtko Ursulin
@ 2023-09-21 14:30 ` Patchwork
2023-09-21 14:31 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork
2023-09-22 4:01 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2023-09-21 14:30 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3754 bytes --]
== Series Details ==
Series: Basic tests for fdinfo client memory
URL : https://patchwork.freedesktop.org/series/124052/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7495_BAT -> XEIGTPW_9838_BAT
====================================================
Summary
-------
**WARNING**
Minor unknown changes coming with XEIGTPW_9838_BAT need to be verified
manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_9838_BAT, 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.
Participating hosts (4 -> 2)
------------------------------
Missing (2): bat-pvc-2 bat-atsm-2
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_9838_BAT:
### IGT changes ###
#### Warnings ####
* igt@kms_dsc@dsc-basic:
- bat-dg2-oem2: [SKIP][1] ([Intel XE#423]) -> [SKIP][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7495/bat-dg2-oem2/igt@kms_dsc@dsc-basic.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9838/bat-dg2-oem2/igt@kms_dsc@dsc-basic.html
- bat-adlp-7: [SKIP][3] ([Intel XE#423]) -> [SKIP][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7495/bat-adlp-7/igt@kms_dsc@dsc-basic.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9838/bat-adlp-7/igt@kms_dsc@dsc-basic.html
Known issues
------------
Here are the changes found in XEIGTPW_9838_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1:
- bat-adlp-7: [PASS][5] -> [FAIL][6] ([Intel XE#480])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7495/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9838/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1.html
#### Possible fixes ####
* igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1:
- bat-adlp-7: [FAIL][7] ([Intel XE#480]) -> [PASS][8] +1 other test pass
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7495/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9838/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
* {igt@xe_live_ktest@dmabuf@xe_dma_buf-xe_dma_buf_kunit}:
- bat-dg2-oem2: [FAIL][9] ([Intel XE#722]) -> [PASS][10] +1 other test pass
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7495/bat-dg2-oem2/igt@xe_live_ktest@dmabuf@xe_dma_buf-xe_dma_buf_kunit.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9838/bat-dg2-oem2/igt@xe_live_ktest@dmabuf@xe_dma_buf-xe_dma_buf_kunit.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[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#722]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/722
Build changes
-------------
* IGT: IGT_7495 -> IGTPW_9838
* Linux: xe-387-6e4a4aa0279d8de30726606ccf74de109af20e6c -> xe-389-7e0d40e7aa56f19a9b3e9bc492003085f9be01c3
IGTPW_9838: 9838
IGT_7495: 7ed6190bc4f8a3ebc3f0b8b334e8ae6abae03031 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-387-6e4a4aa0279d8de30726606ccf74de109af20e6c: 6e4a4aa0279d8de30726606ccf74de109af20e6c
xe-389-7e0d40e7aa56f19a9b3e9bc492003085f9be01c3: 7e0d40e7aa56f19a9b3e9bc492003085f9be01c3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9838/index.html
[-- Attachment #2: Type: text/html, Size: 4608 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Basic tests for fdinfo client memory
2023-09-21 11:45 [igt-dev] [PATCH i-g-t 0/2] Basic tests for fdinfo client memory Tvrtko Ursulin
` (2 preceding siblings ...)
2023-09-21 14:30 ` [igt-dev] ✓ CI.xeBAT: success for Basic tests for fdinfo client memory Patchwork
@ 2023-09-21 14:31 ` Patchwork
2023-09-22 4:01 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2023-09-21 14:31 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 4169 bytes --]
== Series Details ==
Series: Basic tests for fdinfo client memory
URL : https://patchwork.freedesktop.org/series/124052/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13663 -> IGTPW_9838
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/index.html
Participating hosts (40 -> 38)
------------------------------
Additional (1): fi-kbl-soraka
Missing (3): bat-dg2-8 fi-snb-2520m fi-hsw-4770
Known issues
------------
Here are the changes found in IGTPW_9838 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_huc_copy@huc-copy:
- fi-kbl-soraka: NOTRUN -> [SKIP][1] ([fdo#109271] / [i915#2190])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- fi-kbl-soraka: NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#4613]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html
* igt@i915_selftest@live@gt_pm:
- fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][3] ([i915#1886] / [i915#7913])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html
* igt@kms_dsc@dsc-basic:
- fi-kbl-soraka: NOTRUN -> [SKIP][4] ([fdo#109271]) +9 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/fi-kbl-soraka/igt@kms_dsc@dsc-basic.html
#### Possible fixes ####
* igt@i915_selftest@live@execlists:
- fi-bsw-n3050: [ABORT][5] ([i915#7913]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13663/fi-bsw-n3050/igt@i915_selftest@live@execlists.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/fi-bsw-n3050/igt@i915_selftest@live@execlists.html
* igt@i915_selftest@live@hugepages:
- bat-mtlp-8: [DMESG-WARN][7] -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13663/bat-mtlp-8/igt@i915_selftest@live@hugepages.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/bat-mtlp-8/igt@i915_selftest@live@hugepages.html
* igt@i915_selftest@live@mman:
- bat-rpls-1: [TIMEOUT][9] ([i915#6794] / [i915#7392]) -> [PASS][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13663/bat-rpls-1/igt@i915_selftest@live@mman.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/bat-rpls-1/igt@i915_selftest@live@mman.html
* igt@i915_suspend@basic-s2idle-without-i915:
- bat-rpls-1: [WARN][11] ([i915#8747]) -> [PASS][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13663/bat-rpls-1/igt@i915_suspend@basic-s2idle-without-i915.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/bat-rpls-1/igt@i915_suspend@basic-s2idle-without-i915.html
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#6794]: https://gitlab.freedesktop.org/drm/intel/issues/6794
[i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392
[i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
[i915#8747]: https://gitlab.freedesktop.org/drm/intel/issues/8747
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7495 -> IGTPW_9838
CI-20190529: 20190529
CI_DRM_13663: 950de7f7f9dee9be6c2981db1f01f8c47dcbcb6b @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9838: 9838
IGT_7495: 7ed6190bc4f8a3ebc3f0b8b334e8ae6abae03031 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Testlist changes
----------------
+igt@drm_fdinfo@context-close-stress
+igt@drm_fdinfo@memory-info-active
+igt@drm_fdinfo@memory-info-idle
+igt@drm_fdinfo@memory-info-purgeable
+igt@drm_fdinfo@memory-info-resident
+igt@drm_fdinfo@memory-info-shared
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/index.html
[-- Attachment #2: Type: text/html, Size: 5187 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for Basic tests for fdinfo client memory
2023-09-21 11:45 [igt-dev] [PATCH i-g-t 0/2] Basic tests for fdinfo client memory Tvrtko Ursulin
` (3 preceding siblings ...)
2023-09-21 14:31 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork
@ 2023-09-22 4:01 ` Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2023-09-22 4:01 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 89960 bytes --]
== Series Details ==
Series: Basic tests for fdinfo client memory
URL : https://patchwork.freedesktop.org/series/124052/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13663_full -> IGTPW_9838_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_9838_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_9838_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_9838/index.html
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_9838_full:
### IGT changes ###
#### Possible regressions ####
* {igt@drm_fdinfo@context-close-stress} (NEW):
- shard-rkl: NOTRUN -> [SKIP][1] +5 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-6/igt@drm_fdinfo@context-close-stress.html
* {igt@drm_fdinfo@memory-info-idle@smem0} (NEW):
- shard-tglu: NOTRUN -> [SKIP][2] +5 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-tglu-3/igt@drm_fdinfo@memory-info-idle@smem0.html
* {igt@drm_fdinfo@memory-info-purgeable@smem0} (NEW):
- shard-dg1: NOTRUN -> [SKIP][3] +15 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg1-14/igt@drm_fdinfo@memory-info-purgeable@smem0.html
* igt@gem_exec_suspend@basic-s0@lmem0:
- shard-dg2: [PASS][4] -> [INCOMPLETE][5]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13663/shard-dg2-2/igt@gem_exec_suspend@basic-s0@lmem0.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-2/igt@gem_exec_suspend@basic-s0@lmem0.html
* igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][6] +16 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][7] +28 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-rkl: [PASS][8] -> [INCOMPLETE][9]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13663/shard-rkl-6/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-6/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
New tests
---------
New tests have been introduced between CI_DRM_13663_full and IGTPW_9838_full:
### New IGT tests (16) ###
* igt@drm_fdinfo@context-close-stress:
- Statuses : 7 skip(s)
- Exec time: [0.0] s
* igt@drm_fdinfo@memory-info-active:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@drm_fdinfo@memory-info-active@lmem0:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@drm_fdinfo@memory-info-active@smem0:
- Statuses : 5 skip(s)
- Exec time: [0.0] s
* igt@drm_fdinfo@memory-info-idle:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@drm_fdinfo@memory-info-idle@lmem0:
- Statuses : 2 skip(s)
- Exec time: [0.0] s
* igt@drm_fdinfo@memory-info-idle@smem0:
- Statuses : 7 skip(s)
- Exec time: [0.0] s
* igt@drm_fdinfo@memory-info-purgeable:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@drm_fdinfo@memory-info-purgeable@lmem0:
- Statuses : 2 skip(s)
- Exec time: [0.0] s
* igt@drm_fdinfo@memory-info-purgeable@smem0:
- Statuses : 6 skip(s)
- Exec time: [0.0] s
* igt@drm_fdinfo@memory-info-resident:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@drm_fdinfo@memory-info-resident@lmem0:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@drm_fdinfo@memory-info-resident@smem0:
- Statuses : 5 skip(s)
- Exec time: [0.0] s
* igt@drm_fdinfo@memory-info-shared:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@drm_fdinfo@memory-info-shared@lmem0:
- Statuses : 2 skip(s)
- Exec time: [0.0] s
* igt@drm_fdinfo@memory-info-shared@smem0:
- Statuses : 6 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_9838_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-mtlp: NOTRUN -> [SKIP][10] ([i915#8411])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-2/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][11] ([i915#8411])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-1/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@core_hotunplug@unbind-rebind:
- shard-snb: [PASS][12] -> [INCOMPLETE][13] ([i915#4528] / [i915#9372])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13663/shard-snb4/igt@core_hotunplug@unbind-rebind.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-snb5/igt@core_hotunplug@unbind-rebind.html
* igt@device_reset@cold-reset-bound:
- shard-mtlp: NOTRUN -> [SKIP][14] ([i915#7701])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-6/igt@device_reset@cold-reset-bound.html
- shard-dg2: NOTRUN -> [SKIP][15] ([i915#7701])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-3/igt@device_reset@cold-reset-bound.html
* igt@drm_fdinfo@all-busy-check-all:
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#8414])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-10/igt@drm_fdinfo@all-busy-check-all.html
- shard-dg1: NOTRUN -> [SKIP][17] ([i915#8414])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg1-15/igt@drm_fdinfo@all-busy-check-all.html
* {igt@drm_fdinfo@context-close-stress} (NEW):
- shard-glk: NOTRUN -> [SKIP][18] ([fdo#109271]) +5 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-glk3/igt@drm_fdinfo@context-close-stress.html
* {igt@drm_fdinfo@memory-info-active@smem0} (NEW):
- shard-apl: NOTRUN -> [SKIP][19] ([fdo#109271]) +5 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-apl1/igt@drm_fdinfo@memory-info-active@smem0.html
* igt@drm_fdinfo@most-busy-idle-check-all@ccs0:
- shard-mtlp: NOTRUN -> [SKIP][20] ([i915#8414]) +7 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-4/igt@drm_fdinfo@most-busy-idle-check-all@ccs0.html
* igt@gem_basic@multigpu-create-close:
- shard-mtlp: NOTRUN -> [SKIP][21] ([i915#7697])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-1/igt@gem_basic@multigpu-create-close.html
* igt@gem_busy@semaphore:
- shard-dg2: NOTRUN -> [SKIP][22] ([i915#3936])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-10/igt@gem_busy@semaphore.html
* igt@gem_ccs@block-copy-compressed:
- shard-mtlp: NOTRUN -> [SKIP][23] ([i915#3555])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-6/igt@gem_ccs@block-copy-compressed.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#7697])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-6/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-tglu: [PASS][25] -> [FAIL][26] ([i915#6268])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13663/shard-tglu-3/igt@gem_ctx_exec@basic-nohangcheck.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-tglu-7/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_persistence@hang:
- shard-dg1: NOTRUN -> [SKIP][27] ([i915#8555])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg1-14/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg2: NOTRUN -> [SKIP][28] ([i915#8555])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_persistence@legacy-engines-cleanup:
- shard-snb: NOTRUN -> [SKIP][29] ([fdo#109271] / [i915#1099])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-snb2/igt@gem_ctx_persistence@legacy-engines-cleanup.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#4812]) +3 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-11/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@bonded-pair:
- shard-mtlp: NOTRUN -> [SKIP][31] ([i915#4771]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-1/igt@gem_exec_balancer@bonded-pair.html
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#4771])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-6/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_fair@basic-deadline:
- shard-mtlp: NOTRUN -> [SKIP][33] ([i915#4473] / [i915#4771]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-4/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-pace:
- shard-dg1: NOTRUN -> [SKIP][34] ([i915#3539])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg1-15/igt@gem_exec_fair@basic-pace.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-rkl: [PASS][35] -> [FAIL][36] ([i915#2842])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13663/shard-rkl-7/igt@gem_exec_fair@basic-pace-share@rcs0.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-1/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace@vecs0:
- shard-rkl: NOTRUN -> [FAIL][37] ([i915#2842]) +2 other tests fail
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-1/igt@gem_exec_fair@basic-pace@vecs0.html
* igt@gem_exec_fence@submit67:
- shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4812]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-1/igt@gem_exec_fence@submit67.html
* igt@gem_exec_fence@syncobj-backward-timeline-chain-engines:
- shard-snb: NOTRUN -> [SKIP][39] ([fdo#109271]) +126 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-snb7/igt@gem_exec_fence@syncobj-backward-timeline-chain-engines.html
* igt@gem_exec_flush@basic-wb-pro-default:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#3539] / [i915#4852]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-2/igt@gem_exec_flush@basic-wb-pro-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-dg1: NOTRUN -> [SKIP][41] ([fdo#109283])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg1-18/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_params@secure-non-root:
- shard-tglu: NOTRUN -> [SKIP][42] ([fdo#112283])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-tglu-10/igt@gem_exec_params@secure-non-root.html
- shard-mtlp: NOTRUN -> [SKIP][43] ([fdo#112283])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-7/igt@gem_exec_params@secure-non-root.html
* igt@gem_exec_reloc@basic-cpu-active:
- shard-mtlp: NOTRUN -> [SKIP][44] ([i915#3281]) +10 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-6/igt@gem_exec_reloc@basic-cpu-active.html
* igt@gem_exec_reloc@basic-wc-gtt-noreloc:
- shard-dg1: NOTRUN -> [SKIP][45] ([i915#3281]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg1-17/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#3281]) +7 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-2/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_reloc@basic-write-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][47] ([i915#3281]) +2 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-noreloc.html
* igt@gem_exec_schedule@preempt-engines@ccs0:
- shard-mtlp: NOTRUN -> [FAIL][48] ([i915#9119]) +4 other tests fail
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-4/igt@gem_exec_schedule@preempt-engines@ccs0.html
* igt@gem_exec_schedule@preempt-engines@rcs0:
- shard-mtlp: NOTRUN -> [DMESG-FAIL][49] ([i915#8962] / [i915#9121])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-4/igt@gem_exec_schedule@preempt-engines@rcs0.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4537] / [i915#4812]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-1/igt@gem_exec_schedule@preempt-queue-chain.html
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#4812])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg1-18/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#4537] / [i915#4812])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-1/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4860]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-1/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_fence_thrash@bo-write-verify-y:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#4860]) +3 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-7/igt@gem_fence_thrash@bo-write-verify-y.html
* igt@gem_lmem_swapping@heavy-random:
- shard-rkl: NOTRUN -> [SKIP][55] ([i915#4613]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-6/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4613]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-4/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [PASS][57] -> [DMESG-WARN][58] ([i915#4936] / [i915#5493])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13663/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg1-19/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_madvise@dontneed-before-exec:
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#3282]) +5 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-7/igt@gem_madvise@dontneed-before-exec.html
* igt@gem_madvise@dontneed-before-pwrite:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#3282]) +4 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-1/igt@gem_madvise@dontneed-before-pwrite.html
* igt@gem_mmap_gtt@big-bo-tiledy:
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4077]) +11 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-2/igt@gem_mmap_gtt@big-bo-tiledy.html
* igt@gem_mmap_gtt@fault-concurrent:
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#4077]) +3 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg1-13/igt@gem_mmap_gtt@fault-concurrent.html
* igt@gem_mmap_gtt@zero-extend:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#4077]) +10 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-5/igt@gem_mmap_gtt@zero-extend.html
* igt@gem_mmap_wc@bad-offset:
- shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4083]) +8 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-7/igt@gem_mmap_wc@bad-offset.html
* igt@gem_mmap_wc@close:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#4083]) +3 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-1/igt@gem_mmap_wc@close.html
* igt@gem_partial_pwrite_pread@write-uncached:
- shard-dg1: NOTRUN -> [SKIP][66] ([i915#3282])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg1-19/igt@gem_partial_pwrite_pread@write-uncached.html
* igt@gem_pread@snoop:
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#3282]) +2 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-7/igt@gem_pread@snoop.html
* igt@gem_pxp@create-valid-protected-context:
- shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4270]) +6 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-7/igt@gem_pxp@create-valid-protected-context.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#4270])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg1-14/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-rkl: NOTRUN -> [SKIP][70] ([i915#4270])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-1/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#4270]) +2 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-1/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#8428]) +12 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-7/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#4079]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-1/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#4079])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg1-17/igt@gem_set_tiling_vs_gtt.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#4885])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-3/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_spin_batch@spin-all-new:
- shard-dg2: NOTRUN -> [FAIL][76] ([i915#5889])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-11/igt@gem_spin_batch@spin-all-new.html
* igt@gem_tiled_pread_pwrite:
- shard-mtlp: NOTRUN -> [SKIP][77] ([i915#4079])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-8/igt@gem_tiled_pread_pwrite.html
* igt@gem_unfence_active_buffers:
- shard-mtlp: NOTRUN -> [SKIP][78] ([i915#4879])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-5/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-rkl: NOTRUN -> [SKIP][79] ([i915#3297])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-6/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-mtlp: NOTRUN -> [SKIP][80] ([i915#3297]) +5 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-7/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#3297]) +3 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-7/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#3297] / [i915#4880])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gen7_exec_parse@batch-without-end:
- shard-dg1: NOTRUN -> [SKIP][83] ([fdo#109289])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg1-14/igt@gen7_exec_parse@batch-without-end.html
* igt@gen7_exec_parse@chained-batch:
- shard-dg2: NOTRUN -> [SKIP][84] ([fdo#109289]) +4 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-7/igt@gen7_exec_parse@chained-batch.html
* igt@gen7_exec_parse@cmd-crossing-page:
- shard-mtlp: NOTRUN -> [SKIP][85] ([fdo#109289]) +6 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-3/igt@gen7_exec_parse@cmd-crossing-page.html
* igt@gen7_exec_parse@load-register-reg:
- shard-rkl: NOTRUN -> [SKIP][86] ([fdo#109289])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-7/igt@gen7_exec_parse@load-register-reg.html
* igt@gen9_exec_parse@batch-zero-length:
- shard-mtlp: NOTRUN -> [SKIP][87] ([i915#2856]) +6 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-4/igt@gen9_exec_parse@batch-zero-length.html
* igt@gen9_exec_parse@bb-chained:
- shard-tglu: NOTRUN -> [SKIP][88] ([i915#2527] / [i915#2856])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-tglu-4/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-dg1: NOTRUN -> [SKIP][89] ([i915#2527])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg1-14/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@bb-start-far:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#2856]) +2 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-7/igt@gen9_exec_parse@bb-start-far.html
* igt@i915_hwmon@hwmon-write:
- shard-mtlp: NOTRUN -> [SKIP][91] ([i915#7707])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-3/igt@i915_hwmon@hwmon-write.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg2: NOTRUN -> [DMESG-WARN][92] ([i915#8617])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: NOTRUN -> [ABORT][93] ([i915#8489] / [i915#8668])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-mtlp: NOTRUN -> [SKIP][94] ([i915#8436])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-5/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_pm_freq_api@freq-reset:
- shard-rkl: NOTRUN -> [SKIP][95] ([i915#8399])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-1/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_rpm@dpms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#1397])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-6/igt@i915_pm_rpm@dpms-lpsp.html
* igt@i915_pm_rpm@gem-execbuf-stress-pc8:
- shard-tglu: NOTRUN -> [SKIP][97] ([fdo#109506])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-tglu-3/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
* igt@i915_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [PASS][98] -> [SKIP][99] ([i915#1397]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13663/shard-rkl-6/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
- shard-mtlp: NOTRUN -> [SKIP][100] ([i915#1397]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-3/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
* igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-dg1: [PASS][101] -> [SKIP][102] ([i915#1397])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13663/shard-dg1-17/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg1-19/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@i915_pm_rpm@modeset-pc8-residency-stress:
- shard-mtlp: NOTRUN -> [SKIP][103] ([fdo#109293])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-6/igt@i915_pm_rpm@modeset-pc8-residency-stress.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-mtlp: NOTRUN -> [SKIP][104] ([i915#6621]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-7/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@thresholds-park@gt1:
- shard-mtlp: NOTRUN -> [SKIP][105] ([i915#8925]) +1 other test skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-3/igt@i915_pm_rps@thresholds-park@gt1.html
* igt@i915_pm_rps@waitboost:
- shard-mtlp: NOTRUN -> [FAIL][106] ([i915#8346])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-6/igt@i915_pm_rps@waitboost.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-mtlp: NOTRUN -> [SKIP][107] ([i915#6188])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-4/igt@i915_query@query-topology-coherent-slice-mask.html
- shard-dg2: NOTRUN -> [SKIP][108] ([i915#6188])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-5/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_query@query-topology-unsupported:
- shard-dg2: NOTRUN -> [SKIP][109] ([fdo#109302])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-11/igt@i915_query@query-topology-unsupported.html
* igt@i915_suspend@debugfs-reader:
- shard-mtlp: NOTRUN -> [ABORT][110] ([i915#7461] / [i915#9262])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-7/igt@i915_suspend@debugfs-reader.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-mtlp: NOTRUN -> [SKIP][111] ([i915#4212])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-8/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-mtlp: NOTRUN -> [SKIP][112] ([i915#5190])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#4212]) +1 other test skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-11/igt@kms_addfb_basic@clobberred-modifier.html
- shard-dg1: NOTRUN -> [SKIP][114] ([i915#4212]) +1 other test skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg1-15/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc_ccs:
- shard-dg1: NOTRUN -> [SKIP][115] ([i915#8502]) +7 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg1-13/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc_ccs.html
* igt@kms_async_flips@crc@pipe-a-hdmi-a-2:
- shard-dg2: NOTRUN -> [FAIL][116] ([i915#8247]) +3 other tests fail
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-2/igt@kms_async_flips@crc@pipe-a-hdmi-a-2.html
* igt@kms_async_flips@crc@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [FAIL][117] ([i915#8247]) +3 other tests fail
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-3/igt@kms_async_flips@crc@pipe-d-edp-1.html
* igt@kms_async_flips@crc@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][118] ([i915#8247]) +3 other tests fail
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg1-17/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][119] ([i915#4538] / [i915#5286]) +1 other test skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg1-17/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][120] ([i915#5286]) +1 other test skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-4/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-tglu: NOTRUN -> [SKIP][121] ([i915#5286])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-tglu-5/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][122] ([fdo#111614]) +6 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-7/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-tglu: NOTRUN -> [SKIP][123] ([fdo#111614])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-tglu-4/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][124] ([fdo#111614]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-1/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][125] ([fdo#111614] / [i915#3638]) +2 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-1/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: [PASS][126] -> [FAIL][127] ([i915#3743]) +3 other tests fail
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13663/shard-tglu-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-tglu-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][128] ([i915#4538]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg1-18/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#4538] / [i915#5190]) +3 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-7/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][130] ([fdo#110723]) +1 other test skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-1/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-mtlp: NOTRUN -> [SKIP][131] ([i915#6187]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-8/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#5190]) +13 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
- shard-tglu: NOTRUN -> [SKIP][133] ([fdo#111615])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-tglu-9/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-mtlp: NOTRUN -> [SKIP][134] ([fdo#111615]) +14 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_ccs@pipe-a-bad-aux-stride-yf_tiled_ccs:
- shard-dg1: NOTRUN -> [SKIP][135] ([i915#3689] / [i915#5354] / [i915#6095]) +7 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg1-13/igt@kms_ccs@pipe-a-bad-aux-stride-yf_tiled_ccs.html
* igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_rc_ccs_cc:
- shard-mtlp: NOTRUN -> [SKIP][136] ([i915#3886] / [i915#6095]) +16 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-8/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_rc_ccs_cc:
- shard-tglu: NOTRUN -> [SKIP][137] ([i915#5354] / [i915#6095]) +2 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-tglu-10/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_rc_ccs_cc.html
* igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_mc_ccs:
- shard-rkl: NOTRUN -> [SKIP][138] ([i915#3886] / [i915#5354] / [i915#6095]) +1 other test skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-6/igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][139] ([i915#6095]) +52 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-8/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs.html
* igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc:
- shard-mtlp: NOTRUN -> [SKIP][140] ([i915#3886] / [i915#5354] / [i915#6095])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-3/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_ccs:
- shard-rkl: NOTRUN -> [SKIP][141] ([i915#3734] / [i915#5354] / [i915#6095]) +1 other test skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-2/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_ccs.html
* igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_mtl_rc_ccs:
- shard-rkl: NOTRUN -> [SKIP][142] ([i915#5354] / [i915#6095]) +7 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-4/igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_mtl_rc_ccs.html
* igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc:
- shard-dg2: NOTRUN -> [SKIP][143] ([i915#3689] / [i915#3886] / [i915#5354]) +8 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-10/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc:
- shard-dg1: NOTRUN -> [SKIP][144] ([i915#5354] / [i915#6095]) +5 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg1-16/igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html
* igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_gen12_rc_ccs:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#3689] / [i915#5354]) +24 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-7/igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_gen12_rc_ccs.html
* igt@kms_ccs@pipe-d-crc-primary-basic-yf_tiled_ccs:
- shard-rkl: NOTRUN -> [SKIP][146] ([i915#5354]) +12 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-4/igt@kms_ccs@pipe-d-crc-primary-basic-yf_tiled_ccs.html
* igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#4087]) +3 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-7/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-rkl: NOTRUN -> [SKIP][148] ([fdo#111827])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-6/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-mtlp: NOTRUN -> [SKIP][149] ([fdo#111827]) +1 other test skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-2/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_color@gamma:
- shard-dg2: NOTRUN -> [SKIP][150] ([fdo#111827])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-10/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#7828]) +4 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-1/igt@kms_chamelium_edid@hdmi-edid-read.html
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#7828]) +1 other test skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg1-19/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#7828]) +10 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-7/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:
- shard-mtlp: NOTRUN -> [SKIP][154] ([i915#7828]) +12 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-3/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html
* igt@kms_concurrent@pipe-d:
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#4070] / [i915#533] / [i915#6768])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-6/igt@kms_concurrent@pipe-d.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-mtlp: NOTRUN -> [SKIP][156] ([i915#3299])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-3/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@type1:
- shard-mtlp: NOTRUN -> [SKIP][157] ([i915#6944]) +2 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-3/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#7118])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-10/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-rkl: NOTRUN -> [SKIP][159] ([fdo#109279] / [i915#3359])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-1/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#3555] / [i915#8814]) +4 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-4/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-mtlp: NOTRUN -> [SKIP][161] ([i915#3359]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-2/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#3359])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-7/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-tglu: NOTRUN -> [SKIP][163] ([i915#3555])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-tglu-8/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-suspend@pipe-b-vga-1:
- shard-snb: NOTRUN -> [DMESG-WARN][164] ([i915#8841]) +2 other tests dmesg-warn
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-snb2/igt@kms_cursor_crc@cursor-suspend@pipe-b-vga-1.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-dg2: NOTRUN -> [SKIP][165] ([fdo#109274] / [i915#5354]) +4 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-1/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][166] ([fdo#111825]) +3 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
- shard-mtlp: NOTRUN -> [SKIP][167] ([i915#3546]) +4 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-mtlp: NOTRUN -> [SKIP][168] ([fdo#111767] / [i915#3546]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#4103] / [i915#4213]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-1:
- shard-dg1: NOTRUN -> [SKIP][170] ([i915#9227])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg1-19/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-1.html
* igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1:
- shard-dg1: NOTRUN -> [SKIP][171] ([i915#9226] / [i915#9261]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg1-19/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#8588])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-1/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-rkl: NOTRUN -> [SKIP][173] ([i915#8588])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-1/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-dg1: NOTRUN -> [SKIP][174] ([i915#8588])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg1-19/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-mtlp: NOTRUN -> [SKIP][175] ([i915#8588])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-8/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dsc@dsc-basic:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#3555] / [i915#3840])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-7/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-with-formats:
- shard-mtlp: NOTRUN -> [SKIP][177] ([i915#3555] / [i915#3840]) +1 other test skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-5/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-rkl: NOTRUN -> [SKIP][178] ([i915#3555] / [i915#3840])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-2/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#3469])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-10/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_fence_pin_leak:
- shard-mtlp: NOTRUN -> [SKIP][180] ([i915#4881])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-6/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][181] ([fdo#111767] / [i915#3637])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][182] ([i915#8381])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-3/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-dg2: NOTRUN -> [SKIP][183] ([fdo#109274]) +8 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-5/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-flip-vs-rmfb:
- shard-mtlp: NOTRUN -> [SKIP][184] ([i915#3637]) +6 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-3/igt@kms_flip@2x-flip-vs-rmfb.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#8381])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-7/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip@flip-vs-suspend@a-edp1:
- shard-mtlp: [PASS][186] -> [ABORT][187] ([i915#9262])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13663/shard-mtlp-6/igt@kms_flip@flip-vs-suspend@a-edp1.html
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-4/igt@kms_flip@flip-vs-suspend@a-edp1.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a3:
- shard-dg2: NOTRUN -> [FAIL][188] ([fdo#103375]) +3 other tests fail
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-5/igt@kms_flip@flip-vs-suspend@a-hdmi-a3.html
* igt@kms_flip@flip-vs-suspend@b-edp1:
- shard-mtlp: [PASS][189] -> [DMESG-WARN][190] ([i915#9262]) +2 other tests dmesg-warn
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13663/shard-mtlp-6/igt@kms_flip@flip-vs-suspend@b-edp1.html
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-4/igt@kms_flip@flip-vs-suspend@b-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][191] ([i915#8810])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][192] ([i915#2587] / [i915#2672])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][193] ([i915#2672]) +4 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][194] ([i915#2672] / [i915#3555])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#2672]) +4 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][196] ([i915#3555] / [i915#8810]) +2 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][197] ([i915#2672]) +1 other test skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-mtlp: NOTRUN -> [SKIP][198] ([fdo#109285])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-7/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt:
- shard-dg2: NOTRUN -> [FAIL][199] ([i915#6880])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-dg2: [PASS][200] -> [FAIL][201] ([i915#6880])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13663/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#5354]) +40 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][203] ([fdo#111825] / [i915#1825]) +12 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#3458]) +16 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][205] ([fdo#111825]) +6 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-tglu: NOTRUN -> [SKIP][206] ([fdo#109280]) +2 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-tglu-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][207] ([i915#3023]) +10 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][208] ([i915#5460])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg1: NOTRUN -> [SKIP][209] ([i915#3458]) +4 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
- shard-mtlp: NOTRUN -> [SKIP][210] ([i915#1825]) +52 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-dg1: NOTRUN -> [SKIP][211] ([i915#3555] / [i915#8228])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg1-14/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-tglu: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#8228])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-tglu-7/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle:
- shard-rkl: NOTRUN -> [SKIP][213] ([i915#3555] / [i915#8228])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-7/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-dpms:
- shard-mtlp: NOTRUN -> [SKIP][214] ([i915#3555] / [i915#8228])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-3/igt@kms_hdr@static-toggle-dpms.html
- shard-dg2: NOTRUN -> [SKIP][215] ([i915#3555] / [i915#8228])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-7/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes:
- shard-mtlp: NOTRUN -> [ABORT][216] ([i915#9262]) +8 other tests abort
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-4/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes:
- shard-mtlp: NOTRUN -> [DMESG-WARN][217] ([i915#9262])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-4/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html
* igt@kms_plane_lowres@tiling-4@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][218] ([i915#3582]) +3 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-7/igt@kms_plane_lowres@tiling-4@pipe-c-edp-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#3555] / [i915#8821])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-1/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@tiling-yf:
- shard-mtlp: NOTRUN -> [SKIP][220] ([i915#3555] / [i915#8806])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-8/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#5176]) +7 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][222] ([i915#5176]) +11 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-7/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-d-edp-1.html
* igt@kms_plane_scaling@plane-scaler-with-rotation-unity-scaling@pipe-d-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][223] ([i915#5176]) +11 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg1-13/igt@kms_plane_scaling@plane-scaler-with-rotation-unity-scaling@pipe-d-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][224] ([i915#5235]) +7 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][225] ([i915#5235]) +15 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg1-15/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-dp-4:
- shard-dg2: NOTRUN -> [SKIP][226] ([i915#5235]) +19 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/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-5@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][227] ([i915#5235]) +35 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b-edp-1.html
* igt@kms_prime@basic-crc-hybrid:
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#6524] / [i915#6805])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-1/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-mtlp: NOTRUN -> [SKIP][229] ([i915#6524])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-1/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][230] ([i915#658])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg1-18/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#658]) +2 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-rkl: NOTRUN -> [SKIP][232] ([fdo#111068] / [i915#658]) +1 other test skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-1/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-mtlp: NOTRUN -> [SKIP][233] ([i915#4348])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-2/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@cursor_mmap_cpu:
- shard-dg1: NOTRUN -> [SKIP][234] ([i915#1072])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg1-19/igt@kms_psr@cursor_mmap_cpu.html
* igt@kms_psr@dpms:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#1072]) +6 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-7/igt@kms_psr@dpms.html
* igt@kms_psr@sprite_mmap_gtt:
- shard-rkl: NOTRUN -> [SKIP][236] ([i915#1072]) +2 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-6/igt@kms_psr@sprite_mmap_gtt.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][237] ([i915#4235])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-7/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-mtlp: NOTRUN -> [SKIP][238] ([i915#4235]) +3 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-4/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][239] ([fdo#111615] / [i915#5289])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-dg1: NOTRUN -> [SKIP][240] ([fdo#111615] / [i915#5289])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg1-15/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][241] ([i915#4235] / [i915#5190])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-d:
- shard-mtlp: NOTRUN -> [SKIP][242] ([i915#5030]) +3 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-1/igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-d.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#3555]) +3 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-7/igt@kms_setmode@basic-clone-single-crtc.html
- shard-rkl: NOTRUN -> [SKIP][244] ([i915#3555] / [i915#4098])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-7/igt@kms_setmode@basic-clone-single-crtc.html
- shard-dg1: NOTRUN -> [SKIP][245] ([i915#3555]) +4 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg1-14/igt@kms_setmode@basic-clone-single-crtc.html
- shard-mtlp: NOTRUN -> [SKIP][246] ([i915#3555] / [i915#8809]) +1 other test skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-7/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-rkl: NOTRUN -> [SKIP][247] ([i915#8623])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_universal_plane@cursor-fb-leak-pipe-b:
- shard-tglu: [PASS][248] -> [FAIL][249] ([i915#9196])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13663/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-tglu-10/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html
- shard-apl: [PASS][250] -> [FAIL][251] ([i915#9196])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13663/shard-apl2/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-apl4/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html
* igt@kms_universal_plane@universal-plane-pipe-c-functional:
- shard-rkl: NOTRUN -> [SKIP][252] ([i915#4070] / [i915#6768]) +3 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-6/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
* igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend:
- shard-dg2: [PASS][253] -> [FAIL][254] ([fdo#103375]) +1 other test fail
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13663/shard-dg2-3/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-11/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html
* igt@kms_vrr@flipline:
- shard-mtlp: NOTRUN -> [SKIP][255] ([i915#3555] / [i915#8808]) +1 other test skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-6/igt@kms_vrr@flipline.html
* igt@kms_vrr@negative-basic:
- shard-rkl: NOTRUN -> [SKIP][256] ([i915#3555]) +3 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-7/igt@kms_vrr@negative-basic.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-dg2: NOTRUN -> [SKIP][257] ([i915#2437])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-1/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@mi-rpc:
- shard-mtlp: NOTRUN -> [SKIP][258] ([i915#2434])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-6/igt@perf@mi-rpc.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: [PASS][259] -> [FAIL][260] ([i915#9100])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13663/shard-dg2-1/igt@perf@non-zero-reason@0-rcs0.html
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-11/igt@perf@non-zero-reason@0-rcs0.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: NOTRUN -> [SKIP][261] ([i915#2435])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-4/igt@perf@per-context-mode-unprivileged.html
- shard-dg1: NOTRUN -> [SKIP][262] ([fdo#109289] / [i915#2433])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg1-17/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@busy-idle-check-all@ccs0:
- shard-mtlp: NOTRUN -> [FAIL][263] ([i915#4521])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-8/igt@perf_pmu@busy-idle-check-all@ccs0.html
* igt@perf_pmu@busy-idle-check-all@ccs3:
- shard-dg2: [PASS][264] -> [FAIL][265] ([i915#4521]) +3 other tests fail
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13663/shard-dg2-6/igt@perf_pmu@busy-idle-check-all@ccs3.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-11/igt@perf_pmu@busy-idle-check-all@ccs3.html
* igt@perf_pmu@busy-idle-check-all@vecs0:
- shard-dg1: [PASS][266] -> [FAIL][267] ([i915#4521])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13663/shard-dg1-13/igt@perf_pmu@busy-idle-check-all@vecs0.html
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg1-14/igt@perf_pmu@busy-idle-check-all@vecs0.html
* igt@perf_pmu@cpu-hotplug:
- shard-rkl: NOTRUN -> [SKIP][268] ([i915#8850])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-1/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@module-unload:
- shard-dg2: NOTRUN -> [FAIL][269] ([i915#5793])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-10/igt@perf_pmu@module-unload.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: NOTRUN -> [CRASH][270] ([i915#9351])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-5/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
* igt@prime_vgem@fence-flip-hang:
- shard-mtlp: NOTRUN -> [SKIP][271] ([i915#3708])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-8/igt@prime_vgem@fence-flip-hang.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2: NOTRUN -> [SKIP][272] ([i915#3708]) +3 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-10/igt@prime_vgem@fence-read-hang.html
* igt@v3d/v3d_mmap@mmap-bo:
- shard-mtlp: NOTRUN -> [SKIP][273] ([i915#2575]) +17 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-2/igt@v3d/v3d_mmap@mmap-bo.html
* igt@v3d/v3d_perfmon@create-perfmon-invalid-counters:
- shard-tglu: NOTRUN -> [SKIP][274] ([fdo#109315] / [i915#2575])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-tglu-9/igt@v3d/v3d_perfmon@create-perfmon-invalid-counters.html
* igt@v3d/v3d_submit_csd@bad-flag:
- shard-dg1: NOTRUN -> [SKIP][275] ([i915#2575]) +1 other test skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg1-18/igt@v3d/v3d_submit_csd@bad-flag.html
* igt@v3d/v3d_submit_csd@bad-pad:
- shard-dg2: NOTRUN -> [SKIP][276] ([i915#2575]) +9 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-2/igt@v3d/v3d_submit_csd@bad-pad.html
* igt@v3d/v3d_wait_bo@bad-bo:
- shard-rkl: NOTRUN -> [SKIP][277] ([fdo#109315]) +5 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-6/igt@v3d/v3d_wait_bo@bad-bo.html
* igt@vc4/vc4_create_bo@create-bo-4096:
- shard-dg1: NOTRUN -> [SKIP][278] ([i915#7711]) +1 other test skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg1-16/igt@vc4/vc4_create_bo@create-bo-4096.html
* igt@vc4/vc4_label_bo@set-bad-handle:
- shard-mtlp: NOTRUN -> [SKIP][279] ([i915#7711]) +10 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-5/igt@vc4/vc4_label_bo@set-bad-handle.html
* igt@vc4/vc4_perfmon@destroy-valid-perfmon:
- shard-dg2: NOTRUN -> [SKIP][280] ([i915#7711]) +10 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-7/igt@vc4/vc4_perfmon@destroy-valid-perfmon.html
* igt@vc4/vc4_purgeable_bo@mark-willneed:
- shard-tglu: NOTRUN -> [SKIP][281] ([i915#2575])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-tglu-7/igt@vc4/vc4_purgeable_bo@mark-willneed.html
* igt@vc4/vc4_wait_seqno@bad-seqno-1ns:
- shard-rkl: NOTRUN -> [SKIP][282] ([i915#7711]) +3 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-7/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html
#### Possible fixes ####
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- shard-rkl: [FAIL][283] ([i915#7742]) -> [PASS][284]
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13663/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@gem_ctx_persistence@engines-hang@ccs0:
- shard-mtlp: [ABORT][285] ([i915#9262]) -> [PASS][286] +1 other test pass
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13663/shard-mtlp-4/igt@gem_ctx_persistence@engines-hang@ccs0.html
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-7/igt@gem_ctx_persistence@engines-hang@ccs0.html
* igt@gem_exec_endless@dispatch@vecs0:
- shard-tglu: [TIMEOUT][287] ([i915#3778]) -> [PASS][288]
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13663/shard-tglu-6/igt@gem_exec_endless@dispatch@vecs0.html
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-tglu-3/igt@gem_exec_endless@dispatch@vecs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [FAIL][289] ([i915#2842]) -> [PASS][290]
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13663/shard-glk2/igt@gem_exec_fair@basic-pace-share@rcs0.html
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@i915_hangman@engine-engine-error@vcs0:
- shard-mtlp: [FAIL][291] ([i915#7069]) -> [PASS][292]
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13663/shard-mtlp-7/igt@i915_hangman@engine-engine-error@vcs0.html
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-mtlp-2/igt@i915_hangman@engine-engine-error@vcs0.html
* igt@i915_pm_rc6_residency@rc6-idle@rcs0:
- shard-dg1: [FAIL][293] ([i915#3591]) -> [PASS][294] +1 other test pass
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13663/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
* igt@i915_pm_rpm@dpms-lpsp:
- shard-rkl: [SKIP][295] ([i915#1397]) -> [PASS][296] +1 other test pass
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13663/shard-rkl-1/igt@i915_pm_rpm@dpms-lpsp.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-7/igt@i915_pm_rpm@dpms-lpsp.html
* igt@i915_pm_rpm@modeset-lpsp:
- shard-dg1: [SKIP][297] ([i915#1397]) -> [PASS][298] +2 other tests pass
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13663/shard-dg1-13/igt@i915_pm_rpm@modeset-lpsp.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg1-19/igt@i915_pm_rpm@modeset-lpsp.html
* igt@i915_pm_rpm@modeset-non-lpsp:
- shard-dg2: [SKIP][299] ([i915#1397]) -> [PASS][300]
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13663/shard-dg2-10/igt@i915_pm_rpm@modeset-non-lpsp.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-7/igt@i915_pm_rpm@modeset-non-lpsp.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-rkl: [FAIL][301] ([fdo#103375]) -> [PASS][302]
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13663/shard-rkl-4/igt@i915_suspend@basic-s3-without-i915.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [FAIL][303] ([i915#2346]) -> [PASS][304] +1 other test pass
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13663/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1:
- shard-glk: [FAIL][305] ([i915#79]) -> [PASS][306]
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13663/shard-glk4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-glk9/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-rkl: [INCOMPLETE][307] ([i915#8875]) -> [PASS][308] +1 other test pass
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13663/shard-rkl-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_universal_plane@cursor-fb-leak-pipe-c:
- shard-tglu: [FAIL][309] ([i915#9196]) -> [PASS][310]
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13663/shard-tglu-2/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html
* igt@perf_pmu@semaphore-busy@vecs0:
- shard-dg2: [FAIL][311] ([i915#4349]) -> [PASS][312] +6 other tests pass
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13663/shard-dg2-10/igt@perf_pmu@semaphore-busy@vecs0.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-10/igt@perf_pmu@semaphore-busy@vecs0.html
#### Warnings ####
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [DMESG-WARN][313] ([i915#4936] / [i915#5493]) -> [TIMEOUT][314] ([i915#5493])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13663/shard-dg2-3/igt@gem_lmem_swapping@smem-oom@lmem0.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-11/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@i915_pm_rc6_residency@rc6-idle@bcs0:
- shard-tglu: [FAIL][315] ([i915#2681] / [i915#3591]) -> [WARN][316] ([i915#2681])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13663/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html
* igt@kms_content_protection@type1:
- shard-dg2: [SKIP][317] ([i915#7118] / [i915#7162]) -> [SKIP][318] ([i915#7118]) +1 other test skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13663/shard-dg2-11/igt@kms_content_protection@type1.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg2-2/igt@kms_content_protection@type1.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: [SKIP][319] ([fdo#110189] / [i915#3955]) -> [SKIP][320] ([i915#3955])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13663/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-rkl: [SKIP][321] ([fdo#109285] / [i915#4098]) -> [SKIP][322] ([fdo#109285])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13663/shard-rkl-2/igt@kms_force_connector_basic@force-load-detect.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-rkl-7/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_psr@cursor_plane_move:
- shard-dg1: [SKIP][323] ([i915#1072]) -> [SKIP][324] ([i915#1072] / [i915#4078])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13663/shard-dg1-15/igt@kms_psr@cursor_plane_move.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg1-13/igt@kms_psr@cursor_plane_move.html
* igt@kms_psr@primary_page_flip:
- shard-dg1: [SKIP][325] ([i915#1072] / [i915#4078]) -> [SKIP][326] ([i915#1072])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13663/shard-dg1-13/igt@kms_psr@primary_page_flip.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9838/shard-dg1-19/igt@kms_psr@primary_page_flip.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[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#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
[fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[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#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433
[i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434
[i915#2435]: https://gitlab.freedesktop.org/drm/intel/issues/2435
[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#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[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#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
[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#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
[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#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
[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#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
[i915#4521]: https://gitlab.freedesktop.org/drm/intel/issues/4521
[i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528
[i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[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#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#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936
[i915#5030]: https://gitlab.freedesktop.org/drm/intel/issues/5030
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[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#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5793]: https://gitlab.freedesktop.org/drm/intel/issues/5793
[i915#5889]: https://gitlab.freedesktop.org/drm/intel/issues/5889
[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#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[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#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162
[i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707
[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#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
[i915#8346]: https://gitlab.freedesktop.org/drm/intel/issues/8346
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399
[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#8430]: https://gitlab.freedesktop.org/drm/intel/issues/8430
[i915#8436]: https://gitlab.freedesktop.org/drm/intel/issues/8436
[i915#8489]: https://gitlab.freedesktop.org/drm/intel/issues/8489
[i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588
[i915#8617]: https://gitlab.freedesktop.org/drm/intel/issues/8617
[i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806
[i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808
[i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809
[i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821
[i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841
[i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850
[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#9100]: https://gitlab.freedesktop.org/drm/intel/issues/9100
[i915#9119]: https://gitlab.freedesktop.org/drm/intel/issues/9119
[i915#9121]: https://gitlab.freedesktop.org/drm/intel/issues/9121
[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#9261]: https://gitlab.freedesktop.org/drm/intel/issues/9261
[i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262
[i915#9310]: https://gitlab.freedesktop.org/drm/intel/issues/9310
[i915#9351]: https://gitlab.freedesktop.org/drm/intel/issues/9351
[i915#9372]: https://gitlab.freedesktop.org/drm/intel/issues/9372
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7495 -> IGTPW_9838
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_13663: 950de7f7f9dee9be6c2981db1f01f8c47dcbcb6b @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9838: 9838
IGT_7495: 7ed6190bc4f8a3ebc3f0b8b334e8ae6abae03031 @ 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_9838/index.html
[-- Attachment #2: Type: text/html, Size: 110604 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-09-22 4:01 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-21 11:45 [igt-dev] [PATCH i-g-t 0/2] Basic tests for fdinfo client memory Tvrtko Ursulin
2023-09-21 11:45 ` [igt-dev] [PATCH i-g-t 1/2] tests/i915/drm_fdinfo: Stress test context close versus fdinfo reads Tvrtko Ursulin
2023-09-21 11:45 ` [igt-dev] [PATCH i-g-t 2/2] tests/i915/drm_fdinfo: Add some memory info tests Tvrtko Ursulin
2023-09-21 14:30 ` [igt-dev] ✓ CI.xeBAT: success for Basic tests for fdinfo client memory Patchwork
2023-09-21 14:31 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork
2023-09-22 4:01 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox