* [PATCH i-g-t] tests/xe/pmu: Add pmu tests
@ 2024-10-30 20:52 Vinay Belgaumkar
2024-10-30 23:10 ` ✓ CI.xeBAT: success for " Patchwork
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Vinay Belgaumkar @ 2024-10-30 20:52 UTC (permalink / raw)
To: intel-gfx, igt-dev; +Cc: Vinay Belgaumkar, Rodrigo Vivi
Simple tests for validating the PMU implementation for GT C6
residencies and frequency.
These tests validate the kernel series which is currently in review
here - https://patchwork.freedesktop.org/series/139121/
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
---
lib/igt_perf.c | 18 ++
lib/igt_perf.h | 2 +
tests/intel/xe_pmu.c | 412 +++++++++++++++++++++++++++++++++++++++++++
tests/meson.build | 1 +
4 files changed, 433 insertions(+)
create mode 100644 tests/intel/xe_pmu.c
diff --git a/lib/igt_perf.c b/lib/igt_perf.c
index 3866c6d77..88ea66ffc 100644
--- a/lib/igt_perf.c
+++ b/lib/igt_perf.c
@@ -129,6 +129,18 @@ uint64_t igt_perf_type_id(const char *device)
return strtoull(buf, NULL, 0);
}
+int igt_xe_perf_events_dir(int xe)
+{
+ char buf[80];
+ char path[PATH_MAX];
+
+ memset(buf, 0, sizeof(buf));
+
+ xe_perf_device(xe, buf, sizeof(buf));
+ snprintf(path, sizeof(path), "/sys/bus/event_source/devices/%s/events", buf);
+ return open(path, O_RDONLY);
+}
+
int igt_perf_events_dir(int i915)
{
char buf[80];
@@ -183,6 +195,12 @@ int perf_xe_open(int xe, uint64_t config)
PERF_FORMAT_TOTAL_TIME_ENABLED);
}
+int perf_xe_open_group(int xe, uint64_t config, int group)
+{
+ return _perf_open(xe_perf_type_id(xe), config, group,
+ PERF_FORMAT_TOTAL_TIME_ENABLED | PERF_FORMAT_GROUP);
+}
+
int perf_i915_open(int i915, uint64_t config)
{
return _perf_open(i915_perf_type_id(i915), config, -1,
diff --git a/lib/igt_perf.h b/lib/igt_perf.h
index 3d9ba2917..8aff78d0e 100644
--- a/lib/igt_perf.h
+++ b/lib/igt_perf.h
@@ -55,6 +55,7 @@ perf_event_open(struct perf_event_attr *attr,
uint64_t igt_perf_type_id(const char *device);
int igt_perf_events_dir(int i915);
+int igt_xe_perf_events_dir(int xe);
int igt_perf_open(uint64_t type, uint64_t config);
int igt_perf_open_group(uint64_t type, uint64_t config, int group);
@@ -71,5 +72,6 @@ int perf_i915_open(int i915, uint64_t config);
int perf_i915_open_group(int i915, uint64_t config, int group);
int perf_xe_open(int xe, uint64_t config);
+int perf_xe_open_group(int xe, uint64_t config, int group);
#endif /* I915_PERF_H */
diff --git a/tests/intel/xe_pmu.c b/tests/intel/xe_pmu.c
new file mode 100644
index 000000000..f5ef24757
--- /dev/null
+++ b/tests/intel/xe_pmu.c
@@ -0,0 +1,412 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2024 Intel Corporation
+ */
+
+/**
+ * TEST: Test Xe PMU functionality
+ * Category: Perf Monitoring Unit
+ * Mega feature: Perf Monitoring Unit
+ * Sub-category: Power Management
+ * Functionality: Power/Perf
+ * Test category: Functional tests
+ */
+
+#include <fcntl.h>
+#include <limits.h>
+#include <time.h>
+#include <errno.h>
+#include <dirent.h>
+#include <string.h>
+#include <sys/time.h>
+
+#include "igt.h"
+#include "igt_device.h"
+#include "igt_power.h"
+#include "igt_sysfs.h"
+#include "igt_perf.h"
+
+#include "lib/igt_syncobj.h"
+#include "xe/xe_ioctl.h"
+#include "xe/xe_query.h"
+#include "xe/xe_spin.h"
+#include "xe/xe_util.h"
+
+#define SLEEP_DURATION 2 /* in seconds */
+const double tolerance = 0.1;
+const unsigned long batch_duration_ns = 500e6;
+const char *no_debug_data = "\0";
+
+#define __assert_within_epsilon(x, ref, tol_up, tol_down, debug_data) \
+ igt_assert_f((double)(x) <= (1.0 + (tol_up)) * (double)(ref) && \
+ (double)(x) >= (1.0 - (tol_down)) * (double)(ref), \
+ "'%s' != '%s' (%f not within +%.1f%%/-%.1f%% tolerance of %f)\n%s\n",\
+ #x, #ref, (double)(x), \
+ (tol_up) * 100.0, (tol_down) * 100.0, \
+ (double)(ref), debug_data)
+
+#define assert_within_epsilon(x, ref, tolerance) \
+ __assert_within_epsilon(x, ref, tolerance, tolerance, no_debug_data)
+
+#define assert_within_epsilon_debug(x, ref, tolerance, debug_data) \
+ __assert_within_epsilon(x, ref, tolerance, tolerance, debug_data)
+
+struct workload {
+ struct drm_xe_sync sync[2];
+ struct drm_xe_exec exec;
+ uint64_t addr;
+ struct xe_spin_opts spin_opts;
+ struct xe_spin *spin;
+ uint32_t exec_queue;
+ uint32_t syncobj;
+ size_t bo_size;
+ uint32_t bo;
+ uint32_t vm;
+};
+
+static int open_pmu(int xe, uint64_t config)
+{
+ int fd;
+
+ fd = perf_xe_open(xe, config);
+ igt_skip_on(fd < 0 && errno == ENODEV);
+ igt_assert(fd >= 0);
+
+ return fd;
+}
+
+static int open_group(int xe, uint64_t config, int group)
+{
+ int fd;
+
+ fd = perf_xe_open_group(xe, config, group);
+ igt_skip_on(fd < 0 && errno == ENODEV);
+ igt_assert(fd >= 0);
+
+ return fd;
+}
+
+static uint64_t __pmu_read_single(int fd, uint64_t *ts)
+{
+ uint64_t data[2];
+
+ igt_assert_eq(read(fd, data, sizeof(data)), sizeof(data));
+ if (ts)
+ *ts = data[1];
+
+ return data[0];
+}
+
+static uint64_t pmu_read_multi(int fd, unsigned int num, uint64_t *val)
+{
+ uint64_t buf[2 + num];
+ unsigned int i;
+
+ igt_assert_eq(read(fd, buf, sizeof(buf)), sizeof(buf));
+
+ for (i = 0; i < num; i++)
+ val[i] = buf[2 + i];
+
+ return buf[1];
+}
+
+static unsigned long read_pmu_config(int fd, char *pmu_str)
+{
+ int dir_fd;
+ int ret;
+ unsigned long config;
+ char config_str[128];
+
+ dir_fd = igt_xe_perf_events_dir(fd);
+ igt_assert(dir_fd >= 0);
+ igt_assert_eq(igt_sysfs_scanf(dir_fd, pmu_str, "%127s", config_str), 1);
+ ret = sscanf(config_str, "config=0x%lx", &config);
+ igt_assert(ret == 1);
+
+ close(dir_fd);
+
+ return config;
+}
+
+/**
+ * SUBTEST: c6
+ * Description: Basic residency test to validate idle residency
+ * measured over a time interval is within the tolerance
+ *
+ * SUBTEST: frequency
+ * Description: Read requested freq and actual frequency via PMU within
+ * specified time interval while workload runs
+ */
+static unsigned int measured_usleep(unsigned int usec)
+{
+ struct timespec ts = { };
+ unsigned int slept;
+
+ slept = igt_nsec_elapsed(&ts);
+ igt_assert(slept == 0);
+ do {
+ usleep(usec - slept);
+ slept = igt_nsec_elapsed(&ts) / 1000;
+ } while (slept < usec);
+
+ return igt_nsec_elapsed(&ts) / 1000;
+}
+
+static unsigned long read_idle_residency(int fd, int gt)
+{
+ unsigned long residency = 0;
+ int gt_fd;
+
+ gt_fd = xe_sysfs_gt_open(fd, gt);
+ igt_assert(gt_fd >= 0);
+ igt_assert(igt_sysfs_scanf(gt_fd, "gtidle/idle_residency_ms", "%lu", &residency) == 1);
+ close(gt_fd);
+
+ return residency;
+}
+
+static void test_rc6(int xe, unsigned int gt)
+{
+ int pmu_fd;
+ int pmu_config;
+ char event_str[100];
+ uint64_t ts[2];
+ unsigned long slept, start, end;
+ uint64_t val;
+
+ sprintf(event_str, "rc6-residency-gt%d", gt);
+ pmu_config = read_pmu_config(xe, event_str);
+ pmu_fd = open_pmu(xe, pmu_config);
+
+ igt_assert_f(igt_wait(xe_is_gt_in_c6(xe, gt), 3000, 1), "GT %d not in C6\n", gt);
+
+ /* While idle check full RC6. */
+ start = read_idle_residency(xe, gt);
+ val = __pmu_read_single(pmu_fd, &ts[0]);
+ slept = measured_usleep(SLEEP_DURATION * USEC_PER_SEC) / 1000;
+ end = read_idle_residency(xe, gt);
+ val = __pmu_read_single(pmu_fd, &ts[1]) - val;
+
+ igt_debug("gt%u: slept=%lu, perf=%"PRIu64"\n",
+ gt, slept, val);
+
+ igt_debug("Start res: %lu, end_res: %lu", start, end);
+
+ assert_within_epsilon(val,
+ (ts[1] - ts[0])/1000000,
+ tolerance);
+ close(pmu_fd);
+}
+
+static int set_freq(int fd, int gt_id, const char *freq_name, uint32_t freq)
+{
+ int ret = -EAGAIN;
+ char freq_attr[22];
+ int gt_fd;
+
+ snprintf(freq_attr, sizeof(freq_attr), "freq0/%s_freq", freq_name);
+ gt_fd = xe_sysfs_gt_open(fd, gt_id);
+ igt_assert(gt_fd >= 0);
+
+ while (ret == -EAGAIN)
+ ret = igt_sysfs_printf(gt_fd, freq_attr, "%u", freq);
+
+ close(gt_fd);
+ return ret;
+}
+
+static uint32_t get_freq(int fd, int gt_id, const char *freq_name)
+{
+ uint32_t freq;
+ int err = -EAGAIN;
+ char freq_attr[22];
+ int gt_fd;
+
+ snprintf(freq_attr, sizeof(freq_attr), "freq0/%s_freq", freq_name);
+ gt_fd = xe_sysfs_gt_open(fd, gt_id);
+ igt_assert(gt_fd >= 0);
+
+ while (err == -EAGAIN)
+ err = igt_sysfs_scanf(gt_fd, freq_attr, "%u", &freq);
+
+ igt_debug("gt%d: %s freq %u\n", gt_id, freq_name, freq);
+
+ close(gt_fd);
+ return freq;
+}
+
+static void run_workload(int fd, int gt, struct drm_xe_engine_class_instance *eci,
+ struct workload *wl)
+{
+ struct drm_xe_sync sync[2] = {
+ { .type = DRM_XE_SYNC_TYPE_SYNCOBJ, .flags = DRM_XE_SYNC_FLAG_SIGNAL, },
+ { .type = DRM_XE_SYNC_TYPE_SYNCOBJ, .flags = DRM_XE_SYNC_FLAG_SIGNAL, },
+ };
+ struct drm_xe_exec exec = {
+ .num_batch_buffer = 1,
+ .num_syncs = 2,
+ .syncs = to_user_pointer(sync),
+ };
+ struct xe_spin_opts spin_opts = {
+ .addr = 0x1a0000,
+ .preempt = false
+ };
+ struct xe_spin *spin;
+
+ wl->addr = 0x1a0000;
+
+ wl->vm = xe_vm_create(fd, 0, 0);
+ wl->bo_size = sizeof(*spin);
+ wl->bo_size = xe_bb_size(fd, wl->bo_size);
+
+ wl->bo = xe_bo_create(fd, wl->vm, wl->bo_size,
+ vram_if_possible(fd, eci->gt_id), 0);
+ wl->spin = xe_bo_map(fd, wl->bo, wl->bo_size);
+
+ wl->exec_queue = xe_exec_queue_create(fd, wl->vm, eci, 0);
+ wl->syncobj = syncobj_create(fd, 0);
+
+ sync[0].handle = syncobj_create(fd, 0);
+ xe_vm_bind_async(fd, wl->vm, 0, wl->bo, 0, wl->addr, wl->bo_size, sync, 1);
+
+ xe_spin_init(wl->spin, &spin_opts);
+
+ sync[0].flags &= ~DRM_XE_SYNC_FLAG_SIGNAL;
+ sync[1].flags |= DRM_XE_SYNC_FLAG_SIGNAL;
+ sync[1].handle = wl->syncobj;
+
+ exec.exec_queue_id = wl->exec_queue;
+ exec.address = wl->addr;
+ xe_exec(fd, &exec);
+
+ xe_spin_wait_started(wl->spin);
+ usleep(50000);
+ igt_assert(!syncobj_wait(fd, &wl->syncobj, 1, 1, 0, NULL));
+
+ igt_info("Running on GT %d Engine %s:%d\n", eci->gt_id,
+ xe_engine_class_string(eci->engine_class), eci->engine_instance);
+
+ /* Save it for the end_workload function */
+ wl->sync[0] = sync[0];
+ wl->sync[1] = sync[1];
+}
+
+static void end_workload(int fd, struct workload *wl)
+{
+ xe_spin_end(wl->spin);
+
+ igt_assert(syncobj_wait(fd, &wl->syncobj, 1, INT64_MAX, 0, NULL));
+ igt_assert(syncobj_wait(fd, &wl->sync[0].handle, 1, INT64_MAX, 0, NULL));
+
+ wl->sync[0].flags |= DRM_XE_SYNC_FLAG_SIGNAL;
+ xe_vm_unbind_async(fd, wl->vm, 0, 0, wl->addr, wl->bo_size, wl->sync, 1);
+ igt_assert(syncobj_wait(fd, &wl->sync[0].handle, 1, INT64_MAX, 0, NULL));
+
+ syncobj_destroy(fd, wl->sync[0].handle);
+ syncobj_destroy(fd, wl->syncobj);
+ xe_exec_queue_destroy(fd, wl->exec_queue);
+
+ munmap(wl->spin, wl->bo_size);
+ gem_close(fd, wl->bo);
+ xe_vm_destroy(fd, wl->vm);
+}
+
+static void test_frequency(int fd, int gt, struct drm_xe_engine_class_instance *eci)
+{
+ struct workload wl;
+
+ uint64_t val[2], start[2], slept;
+ double min[2], max[2];
+ int pmu_fd[2];
+ uint32_t orig_min = get_freq(fd, gt, "min");
+ uint32_t orig_max = get_freq(fd, gt, "max");
+ unsigned long config_rq_freq, config_act_freq;
+ char event_str[100];
+
+
+ sprintf(event_str, "requested-frequency-gt%d", gt);
+ config_rq_freq = read_pmu_config(fd, event_str);
+ pmu_fd[0] = open_group(fd, config_rq_freq, -1);
+
+ memset(event_str, 0, 100);
+ sprintf(event_str, "actual-frequency-gt%d", gt);
+ config_act_freq = read_pmu_config(fd, event_str);
+ pmu_fd[1] = open_group(fd, config_act_freq, pmu_fd[0]);
+
+ run_workload(fd, gt, eci, &wl);
+ /*
+ * Set GPU to min frequency and read PMU counters.
+ */
+ igt_assert(set_freq(fd, gt, "max", orig_min) > 0);
+ igt_assert(get_freq(fd, gt, "max") == orig_min);
+
+ slept = pmu_read_multi(pmu_fd[0], 2, start);
+ measured_usleep(batch_duration_ns / 1000);
+ slept = pmu_read_multi(pmu_fd[0], 2, val) - slept;
+
+ min[0] = 1e9*(val[0] - start[0]) / slept;
+ min[1] = 1e9*(val[1] - start[1]) / slept;
+
+ /*
+ * Set GPU to max frequency and read PMU counters.
+ */
+ igt_assert(set_freq(fd, gt, "max", orig_max) > 0);
+ igt_assert(get_freq(fd, gt, "max") == orig_max);
+ igt_assert(set_freq(fd, gt, "min", orig_max) > 0);
+ igt_assert(get_freq(fd, gt, "min") == orig_max);
+
+ slept = pmu_read_multi(pmu_fd[0], 2, start);
+ measured_usleep(batch_duration_ns / 1000);
+ slept = pmu_read_multi(pmu_fd[0], 2, val) - slept;
+
+ max[0] = 1e9*(val[0] - start[0]) / slept;
+ max[1] = 1e9*(val[1] - start[1]) / slept;
+
+ /*
+ * Restore min/max.
+ */
+ igt_assert(set_freq(fd, gt, "min", orig_min) > 0);
+ igt_assert(get_freq(fd, gt, "min") == orig_min);
+
+ igt_info("Minimum frequency: requested %.1f, actual %.1f\n",
+ min[0], min[1]);
+ igt_info("Maximum frequency: requested %.1f, actual %.1f\n",
+ max[0], max[1]);
+
+ close(pmu_fd[0]);
+ close(pmu_fd[1]);
+
+ end_workload(fd, &wl);
+
+ assert_within_epsilon(min[0], orig_min, tolerance);
+ /*
+ * On thermally throttled devices we cannot be sure maximum frequency
+ * can be reached so use larger tolerance downards.
+ */
+ __assert_within_epsilon(max[0], orig_max, tolerance, 0.15f, no_debug_data);
+}
+
+igt_main
+{
+ int fd, gt;
+ struct drm_xe_engine_class_instance *hwe;
+
+ igt_fixture {
+ fd = drm_open_driver(DRIVER_XE);
+ igt_require(!IS_PONTEVECCHIO(xe_dev_id(fd)));
+ }
+
+ igt_describe("Validate PMU C6 residency counters");
+ igt_subtest("c6")
+ xe_for_each_gt(fd, gt)
+ test_rc6(fd, gt);
+
+ igt_describe("Validate PMU GT freq measured over a time interval is within the tolerance");
+ igt_subtest("frequency")
+ xe_for_each_engine(fd, hwe)
+ test_frequency(fd, hwe->gt_id, hwe);
+
+ igt_fixture {
+ close(fd);
+ }
+}
diff --git a/tests/meson.build b/tests/meson.build
index 34b87b125..dc84ef748 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -308,6 +308,7 @@ intel_xe_progs = [
'xe_pat',
'xe_peer2peer',
'xe_pm',
+ 'xe_pmu',
'xe_pm_residency',
'xe_prime_self_import',
'xe_query',
--
2.38.1
^ permalink raw reply related [flat|nested] 6+ messages in thread* ✓ CI.xeBAT: success for tests/xe/pmu: Add pmu tests 2024-10-30 20:52 [PATCH i-g-t] tests/xe/pmu: Add pmu tests Vinay Belgaumkar @ 2024-10-30 23:10 ` Patchwork 2024-10-30 23:28 ` ✓ Fi.CI.BAT: " Patchwork ` (3 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2024-10-30 23:10 UTC (permalink / raw) To: Vinay Belgaumkar; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4450 bytes --] == Series Details == Series: tests/xe/pmu: Add pmu tests URL : https://patchwork.freedesktop.org/series/140737/ State : success == Summary == CI Bug Log - changes from XEIGT_8089_BAT -> XEIGTPW_12007_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12007_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_frontbuffer_tracking@basic: - bat-adlp-7: [PASS][1] -> [FAIL][2] ([Intel XE#1861]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - bat-dg2-oem2: NOTRUN -> [SKIP][3] ([Intel XE#2229]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/bat-dg2-oem2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html - bat-atsm-2: NOTRUN -> [SKIP][4] ([Intel XE#2229]) +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/bat-atsm-2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html - bat-pvc-2: NOTRUN -> [SKIP][5] ([Intel XE#2229]) +2 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/bat-pvc-2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html #### Possible fixes #### * igt@xe_exec_fault_mode@twice-basic: - bat-pvc-2: [DMESG-WARN][6] ([Intel XE#3295]) -> [PASS][7] +1 other test pass [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/bat-pvc-2/igt@xe_exec_fault_mode@twice-basic.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/bat-pvc-2/igt@xe_exec_fault_mode@twice-basic.html * igt@xe_live_ktest@xe_bo: - bat-pvc-2: [SKIP][8] ([Intel XE#1192]) -> [PASS][9] +2 other tests pass [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/bat-pvc-2/igt@xe_live_ktest@xe_bo.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/bat-pvc-2/igt@xe_live_ktest@xe_bo.html * igt@xe_live_ktest@xe_migrate: - bat-dg2-oem2: [SKIP][10] ([Intel XE#1192]) -> [PASS][11] +2 other tests pass [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/bat-dg2-oem2/igt@xe_live_ktest@xe_migrate.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/bat-dg2-oem2/igt@xe_live_ktest@xe_migrate.html - bat-atsm-2: [SKIP][12] ([Intel XE#1192]) -> [PASS][13] +2 other tests pass [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/bat-atsm-2/igt@xe_live_ktest@xe_migrate.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/bat-atsm-2/igt@xe_live_ktest@xe_migrate.html * igt@xe_module_load@load: - bat-dg2-oem2: [DMESG-WARN][14] ([Intel XE#3295]) -> [PASS][15] +6 other tests pass [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/bat-dg2-oem2/igt@xe_module_load@load.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/bat-dg2-oem2/igt@xe_module_load@load.html - bat-atsm-2: [DMESG-WARN][16] ([Intel XE#3295]) -> [PASS][17] +2 other tests pass [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/bat-atsm-2/igt@xe_module_load@load.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/bat-atsm-2/igt@xe_module_load@load.html [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#3295]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3295 Build changes ------------- * IGT: IGT_8089 -> IGTPW_12007 * Linux: xe-2146-afdb5631acb317eca18b171006efb3930fef7eb4 -> xe-2147-c245557007af0a1c23da00c47732ae1dadda7dd3 IGTPW_12007: 12007 IGT_8089: 2339a396e8c38ba1582a6fc18fe4f7ed178979cc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2146-afdb5631acb317eca18b171006efb3930fef7eb4: afdb5631acb317eca18b171006efb3930fef7eb4 xe-2147-c245557007af0a1c23da00c47732ae1dadda7dd3: c245557007af0a1c23da00c47732ae1dadda7dd3 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/index.html [-- Attachment #2: Type: text/html, Size: 5607 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ Fi.CI.BAT: success for tests/xe/pmu: Add pmu tests 2024-10-30 20:52 [PATCH i-g-t] tests/xe/pmu: Add pmu tests Vinay Belgaumkar 2024-10-30 23:10 ` ✓ CI.xeBAT: success for " Patchwork @ 2024-10-30 23:28 ` Patchwork 2024-10-31 0:56 ` ✗ CI.xeFULL: failure " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2024-10-30 23:28 UTC (permalink / raw) To: Vinay Belgaumkar; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 7836 bytes --] == Series Details == Series: tests/xe/pmu: Add pmu tests URL : https://patchwork.freedesktop.org/series/140737/ State : success == Summary == CI Bug Log - changes from IGT_8089 -> IGTPW_12007 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/index.html Participating hosts (46 -> 46) ------------------------------ Additional (1): fi-rkl-11600 Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12007 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - fi-rkl-11600: NOTRUN -> [SKIP][1] ([i915#9318]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/fi-rkl-11600/igt@debugfs_test@basic-hwmon.html * igt@gem_huc_copy@huc-copy: - fi-rkl-11600: NOTRUN -> [SKIP][2] ([i915#2190]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/fi-rkl-11600/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-rkl-11600: NOTRUN -> [SKIP][3] ([i915#4613]) +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/fi-rkl-11600/igt@gem_lmem_swapping@basic.html * igt@gem_tiled_pread_basic: - fi-rkl-11600: NOTRUN -> [SKIP][4] ([i915#3282]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/fi-rkl-11600/igt@gem_tiled_pread_basic.html * igt@i915_selftest@live: - bat-twl-2: [PASS][5] -> [INCOMPLETE][6] ([i915#12133] / [i915#9413]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8089/bat-twl-2/igt@i915_selftest@live.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/bat-twl-2/igt@i915_selftest@live.html * igt@i915_selftest@live@gt_lrc: - bat-twl-2: [PASS][7] -> [INCOMPLETE][8] ([i915#12445] / [i915#9413]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8089/bat-twl-2/igt@i915_selftest@live@gt_lrc.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/bat-twl-2/igt@i915_selftest@live@gt_lrc.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - fi-rkl-11600: NOTRUN -> [SKIP][9] ([i915#4103]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/fi-rkl-11600/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - fi-rkl-11600: NOTRUN -> [SKIP][10] ([i915#3555] / [i915#3840]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/fi-rkl-11600/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - fi-rkl-11600: NOTRUN -> [SKIP][11] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/fi-rkl-11600/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_pm_backlight@basic-brightness: - fi-rkl-11600: NOTRUN -> [SKIP][12] ([i915#5354]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/fi-rkl-11600/igt@kms_pm_backlight@basic-brightness.html * igt@kms_psr@psr-primary-page-flip: - fi-rkl-11600: NOTRUN -> [SKIP][13] ([i915#1072] / [i915#9732]) +3 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/fi-rkl-11600/igt@kms_psr@psr-primary-page-flip.html * igt@kms_setmode@basic-clone-single-crtc: - fi-rkl-11600: NOTRUN -> [SKIP][14] ([i915#3555]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/fi-rkl-11600/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-read: - fi-rkl-11600: NOTRUN -> [SKIP][15] ([i915#3291] / [i915#3708]) +2 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/fi-rkl-11600/igt@prime_vgem@basic-read.html #### Possible fixes #### * igt@i915_selftest@live: - bat-arls-1: [ABORT][16] ([i915#12133]) -> [PASS][17] [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8089/bat-arls-1/igt@i915_selftest@live.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/bat-arls-1/igt@i915_selftest@live.html - bat-arlh-3: [INCOMPLETE][18] ([i915#10341] / [i915#12133]) -> [PASS][19] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8089/bat-arlh-3/igt@i915_selftest@live.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/bat-arlh-3/igt@i915_selftest@live.html - bat-adlp-11: [INCOMPLETE][20] ([i915#12133] / [i915#9413]) -> [PASS][21] [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8089/bat-adlp-11/igt@i915_selftest@live.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/bat-adlp-11/igt@i915_selftest@live.html * igt@i915_selftest@live@gt_lrc: - bat-adlp-11: [INCOMPLETE][22] ([i915#9413]) -> [PASS][23] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8089/bat-adlp-11/igt@i915_selftest@live@gt_lrc.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/bat-adlp-11/igt@i915_selftest@live@gt_lrc.html * igt@i915_selftest@live@hangcheck: - bat-arls-1: [ABORT][24] ([i915#9500]) -> [PASS][25] [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8089/bat-arls-1/igt@i915_selftest@live@hangcheck.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/bat-arls-1/igt@i915_selftest@live@hangcheck.html * igt@i915_selftest@live@hugepages: - bat-arlh-3: [INCOMPLETE][26] ([i915#12133]) -> [PASS][27] [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8089/bat-arlh-3/igt@i915_selftest@live@hugepages.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/bat-arlh-3/igt@i915_selftest@live@hugepages.html * igt@kms_hdmi_inject@inject-audio: - fi-cfl-guc: [SKIP][28] -> [PASS][29] [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8089/fi-cfl-guc/igt@kms_hdmi_inject@inject-audio.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/fi-cfl-guc/igt@kms_hdmi_inject@inject-audio.html [i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133 [i915#12445]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12445 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413 [i915#9500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9500 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8089 -> IGTPW_12007 * Linux: CI_DRM_15614 -> CI_DRM_15615 CI-20190529: 20190529 CI_DRM_15614: afdb5631acb317eca18b171006efb3930fef7eb4 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15615: c245557007af0a1c23da00c47732ae1dadda7dd3 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12007: 12007 IGT_8089: 2339a396e8c38ba1582a6fc18fe4f7ed178979cc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/index.html [-- Attachment #2: Type: text/html, Size: 9504 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ CI.xeFULL: failure for tests/xe/pmu: Add pmu tests 2024-10-30 20:52 [PATCH i-g-t] tests/xe/pmu: Add pmu tests Vinay Belgaumkar 2024-10-30 23:10 ` ✓ CI.xeBAT: success for " Patchwork 2024-10-30 23:28 ` ✓ Fi.CI.BAT: " Patchwork @ 2024-10-31 0:56 ` Patchwork 2024-10-31 10:28 ` ✗ Fi.CI.IGT: " Patchwork 2024-11-04 6:34 ` [PATCH i-g-t] " Riana Tauro 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2024-10-31 0:56 UTC (permalink / raw) To: Vinay Belgaumkar; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 66536 bytes --] == Series Details == Series: tests/xe/pmu: Add pmu tests URL : https://patchwork.freedesktop.org/series/140737/ State : failure == Summary == CI Bug Log - changes from XEIGT_8089_full -> XEIGTPW_12007_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12007_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12007_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12007_full: ### IGT changes ### #### Possible regressions #### * igt@kms_cursor_legacy@basic-flip-after-cursor-atomic: - shard-lnl: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-lnl-1/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-lnl-8/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html * igt@kms_vblank@wait-forked: - shard-bmg: NOTRUN -> [INCOMPLETE][3] +1 other test incomplete [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-8/igt@kms_vblank@wait-forked.html * igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-system-system: - shard-lnl: [PASS][4] -> [DMESG-WARN][5] +4 other tests dmesg-warn [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-lnl-7/igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-system-system.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-lnl-6/igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-system-system.html * {igt@xe_pmu@c6} (NEW): - shard-bmg: NOTRUN -> [FAIL][6] +1 other test fail [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-8/igt@xe_pmu@c6.html - shard-dg2-set2: NOTRUN -> [FAIL][7] +1 other test fail [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-466/igt@xe_pmu@c6.html - shard-lnl: NOTRUN -> [FAIL][8] +1 other test fail [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-lnl-4/igt@xe_pmu@c6.html New tests --------- New tests have been introduced between XEIGT_8089_full and XEIGTPW_12007_full: ### New IGT tests (2) ### * igt@xe_pmu@c6: - Statuses : 3 fail(s) - Exec time: [0.00, 0.03] s * igt@xe_pmu@frequency: - Statuses : 3 fail(s) - Exec time: [0.01] s Known issues ------------ Here are the changes found in XEIGTPW_12007_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@hotreplug: - shard-bmg: [PASS][9] -> [SKIP][10] ([Intel XE#1885]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-5/igt@core_hotunplug@hotreplug.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-5/igt@core_hotunplug@hotreplug.html - shard-dg2-set2: [PASS][11] -> [SKIP][12] ([Intel XE#1885]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-436/igt@core_hotunplug@hotreplug.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-435/igt@core_hotunplug@hotreplug.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#623]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-436/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_big_fb@linear-64bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][14] ([Intel XE#877]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-436/igt@kms_big_fb@linear-64bpp-rotate-180.html * igt@kms_big_fb@linear-8bpp-rotate-90: - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#316]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-435/igt@kms_big_fb@linear-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-32bpp-rotate-0: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#1124]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-5/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#610]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-463/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#1124]) +4 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-436/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#367]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-464/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2314] / [Intel XE#2894]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-7/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#2191]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt@kms_bw@linear-tiling-4-displays-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#367]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-5/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#787]) +55 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-466/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2887]) +4 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-8/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][25] ([Intel XE#1195] / [Intel XE#3113]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#455] / [Intel XE#787]) +15 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html * igt@kms_chamelium_color@ctm-negative: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2325]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-7/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k: - shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#373]) +10 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-463/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html * igt@kms_chamelium_frames@hdmi-aspect-ratio: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2252]) +2 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-7/igt@kms_chamelium_frames@hdmi-aspect-ratio.html * igt@kms_color@ctm-0-75@pipe-c-edp-1: - shard-lnl: [PASS][30] -> [DMESG-WARN][31] ([Intel XE#2929]) +1 other test dmesg-warn [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-lnl-4/igt@kms_color@ctm-0-75@pipe-c-edp-1.html [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-lnl-4/igt@kms_color@ctm-0-75@pipe-c-edp-1.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#307]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-466/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2320]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-7/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_edge_walk@128x128-top-bottom: - shard-lnl: [PASS][34] -> [FAIL][35] ([Intel XE#2577]) +1 other test fail [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-lnl-4/igt@kms_cursor_edge_walk@128x128-top-bottom.html [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-lnl-4/igt@kms_cursor_edge_walk@128x128-top-bottom.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#2423] / [i915#2575]) +4 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-435/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2286]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions-varying-size: - shard-lnl: [PASS][38] -> [FAIL][39] ([Intel XE#1541]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-lnl-2/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions-varying-size.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-lnl-5/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_feature_discovery@display-3x: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2373]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-8/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@dp-mst: - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#1137]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-463/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4: - shard-dg2-set2: [PASS][42] -> [FAIL][43] ([Intel XE#301]) +5 other tests fail [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-464/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3: - shard-bmg: [PASS][44] -> [FAIL][45] ([Intel XE#301]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a6-dp4: - shard-dg2-set2: [PASS][46] -> [FAIL][47] ([Intel XE#3267]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a6-dp4.html [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-464/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a6-dp4.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: - shard-lnl: [PASS][48] -> [FAIL][49] ([Intel XE#886]) +10 other tests fail [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html * igt@kms_flip@flip-vs-suspend: - shard-bmg: [PASS][50] -> [INCOMPLETE][51] ([Intel XE#2597]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-4/igt@kms_flip@flip-vs-suspend.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-6/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@d-hdmi-a3: - shard-bmg: [PASS][52] -> [INCOMPLETE][53] ([Intel XE#2597] / [Intel XE#2635]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-4/igt@kms_flip@flip-vs-suspend@d-hdmi-a3.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-6/igt@kms_flip@flip-vs-suspend@d-hdmi-a3.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-bmg: [PASS][54] -> [SKIP][55] ([Intel XE#2231] / [Intel XE#2890]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2293] / [Intel XE#2380]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2293]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2311]) +6 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render: - shard-dg2-set2: [PASS][59] -> [SKIP][60] ([Intel XE#2890]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-rte: - shard-bmg: NOTRUN -> [FAIL][61] ([Intel XE#2333]) +3 other tests fail [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-rte.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#651]) +25 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#2890]) +4 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#653]) +21 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2313]) +9 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_getfb@getfb2-accept-ccs: - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2340]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-7/igt@kms_getfb@getfb2-accept-ccs.html * igt@kms_invalid_mode@bad-hsync-start: - shard-bmg: [PASS][67] -> [SKIP][68] ([Intel XE#3007]) +10 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-1/igt@kms_invalid_mode@bad-hsync-start.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-5/igt@kms_invalid_mode@bad-hsync-start.html * igt@kms_joiner@basic-big-joiner: - shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#346]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-4/igt@kms_joiner@basic-big-joiner.html - shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#346]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-464/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#2927]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-463/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#2925]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-435/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_plane@pixel-format-source-clamping: - shard-bmg: [PASS][73] -> [DMESG-WARN][74] ([Intel XE#2566] / [Intel XE#877]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-1/igt@kms_plane@pixel-format-source-clamping.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-4/igt@kms_plane@pixel-format-source-clamping.html * igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-3: - shard-bmg: [PASS][75] -> [DMESG-WARN][76] ([Intel XE#877]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-1/igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-3.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-4/igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-3.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-433/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#2763]) +2 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-433/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-upscale-factor-0-25: - shard-dg2-set2: [PASS][79] -> [SKIP][80] ([Intel XE#2423] / [i915#2575]) +7 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-464/igt@kms_plane_scaling@planes-upscale-factor-0-25.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-435/igt@kms_plane_scaling@planes-upscale-factor-0-25.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#3309]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-434/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: [PASS][82] -> [FAIL][83] ([Intel XE#1430]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-lnl-5/igt@kms_pm_dc@dc6-psr.html - shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#1129]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-436/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@cursor: - shard-bmg: [PASS][85] -> [SKIP][86] ([Intel XE#2446]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-4/igt@kms_pm_rpm@cursor.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-5/igt@kms_pm_rpm@cursor.html - shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#2446]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-435/igt@kms_pm_rpm@cursor.html * igt@kms_pm_rpm@universal-planes: - shard-lnl: [PASS][88] -> [DMESG-WARN][89] ([Intel XE#2042]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-lnl-1/igt@kms_pm_rpm@universal-planes.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-lnl-6/igt@kms_pm_rpm@universal-planes.html * igt@kms_pm_rpm@universal-planes@plane-59: - shard-lnl: [PASS][90] -> [DMESG-WARN][91] ([Intel XE#3184]) +1 other test dmesg-warn [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-lnl-1/igt@kms_pm_rpm@universal-planes@plane-59.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-lnl-6/igt@kms_pm_rpm@universal-planes@plane-59.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#1489]) +6 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-463/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html - shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#1489]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-7/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr@fbc-psr-primary-render: - shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2234] / [Intel XE#2850]) +6 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-4/igt@kms_psr@fbc-psr-primary-render.html * igt@kms_psr@fbc-psr2-cursor-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#2850] / [Intel XE#929]) +12 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-432/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html * igt@kms_psr@psr2-cursor-blt@edp-1: - shard-lnl: [PASS][96] -> [FAIL][97] ([Intel XE#2948]) +5 other tests fail [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-lnl-4/igt@kms_psr@psr2-cursor-blt@edp-1.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-lnl-1/igt@kms_psr@psr2-cursor-blt@edp-1.html * igt@kms_rotation_crc@multiplane-rotation: - shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#3007]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-5/igt@kms_rotation_crc@multiplane-rotation.html * igt@kms_rotation_crc@primary-rotation-270: - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2329]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-4/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#1127]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-433/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#455]) +6 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-463/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [PASS][102] -> [FAIL][103] ([Intel XE#2159]) +1 other test fail [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-lnl-6/igt@kms_vrr@cmrr@pipe-a-edp-1.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@kms_vrr@flip-basic: - shard-lnl: [PASS][104] -> [FAIL][105] ([Intel XE#2443]) +1 other test fail [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-lnl-5/igt@kms_vrr@flip-basic.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-lnl-3/igt@kms_vrr@flip-basic.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#756]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-464/igt@kms_writeback@writeback-pixel-formats.html * igt@xe_compute_preempt@compute-preempt: - shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-463/igt@xe_compute_preempt@compute-preempt.html * igt@xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#1126]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0xfd.html * igt@xe_eudebug_online@breakpoint-many-sessions-tiles: - shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2905]) +3 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-2/igt@xe_eudebug_online@breakpoint-many-sessions-tiles.html * igt@xe_evict@evict-beng-mixed-threads-large: - shard-bmg: [PASS][110] -> [TIMEOUT][111] ([Intel XE#1473]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-4/igt@xe_evict@evict-beng-mixed-threads-large.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-4/igt@xe_evict@evict-beng-mixed-threads-large.html * igt@xe_evict@evict-beng-threads-large: - shard-dg2-set2: [PASS][112] -> [TIMEOUT][113] ([Intel XE#1473]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-463/igt@xe_evict@evict-beng-threads-large.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-466/igt@xe_evict@evict-beng-threads-large.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-rebind: - shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#2322]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-rebind.html * igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race: - shard-bmg: NOTRUN -> [FAIL][115] ([Intel XE#3160]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-8/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race.html * igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race-imm: - shard-bmg: [PASS][116] -> [FAIL][117] ([Intel XE#3160]) +1 other test fail [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-5/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race-imm.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-4/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race-imm.html * igt@xe_exec_fault_mode@many-userptr-invalidate-race-prefetch: - shard-lnl: [PASS][118] -> [FAIL][119] ([Intel XE#3160]) +3 other tests fail [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-lnl-8/igt@xe_exec_fault_mode@many-userptr-invalidate-race-prefetch.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-lnl-3/igt@xe_exec_fault_mode@many-userptr-invalidate-race-prefetch.html * igt@xe_exec_fault_mode@once-bindexecqueue-imm: - shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#288]) +20 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-434/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html * igt@xe_exec_fault_mode@twice-userptr-invalidate-race: - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#1130]) +3 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-435/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html * igt@xe_exec_mix_modes@exec-simple-batch-store-lr: - shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#2360]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-464/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html * igt@xe_exec_sip_eudebug@breakpoint-writesip: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#2905]) +7 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-434/igt@xe_exec_sip_eudebug@breakpoint-writesip.html * igt@xe_exec_threads@threads-bal-mixed-fd-userptr-invalidate: - shard-dg2-set2: [PASS][124] -> [SKIP][125] ([Intel XE#1130]) +17 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-464/igt@xe_exec_threads@threads-bal-mixed-fd-userptr-invalidate.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-435/igt@xe_exec_threads@threads-bal-mixed-fd-userptr-invalidate.html * igt@xe_exec_threads@threads-mixed-userptr-rebind: - shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#1130]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-5/igt@xe_exec_threads@threads-mixed-userptr-rebind.html * igt@xe_live_ktest@xe_bo: - shard-dg2-set2: NOTRUN -> [TIMEOUT][127] ([Intel XE#2961] / [Intel XE#3191]) +1 other test timeout [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-435/igt@xe_live_ktest@xe_bo.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#2229]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-432/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html * igt@xe_module_load@many-reload: - shard-bmg: [PASS][129] -> [FAIL][130] ([Intel XE#2136]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-8/igt@xe_module_load@many-reload.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-4/igt@xe_module_load@many-reload.html - shard-dg2-set2: [PASS][131] -> [FAIL][132] ([Intel XE#2136]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-466/igt@xe_module_load@many-reload.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-466/igt@xe_module_load@many-reload.html * igt@xe_oa@non-privileged-access-vaddr: - shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#2541]) +2 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-463/igt@xe_oa@non-privileged-access-vaddr.html * igt@xe_pat@pat-index-xe2: - shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#2839] / [Intel XE#977]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-463/igt@xe_pat@pat-index-xe2.html * igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][135] ([Intel XE#1173]) +1 other test fail [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-464/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html * igt@xe_pm@s2idle-exec-after: - shard-dg2-set2: [PASS][136] -> [ABORT][137] ([Intel XE#1358]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-433/igt@xe_pm@s2idle-exec-after.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-432/igt@xe_pm@s2idle-exec-after.html * igt@xe_pm@s2idle-vm-bind-userptr: - shard-dg2-set2: [PASS][138] -> [ABORT][139] ([Intel XE#1694] / [Intel XE#1794]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-463/igt@xe_pm@s2idle-vm-bind-userptr.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-432/igt@xe_pm@s2idle-vm-bind-userptr.html * igt@xe_pm@s3-d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#2284] / [Intel XE#366]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-466/igt@xe_pm@s3-d3cold-basic-exec.html * igt@xe_pm@vram-d3cold-threshold: - shard-bmg: NOTRUN -> [SKIP][141] ([Intel XE#579]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-6/igt@xe_pm@vram-d3cold-threshold.html * igt@xe_query@multigpu-query-topology-l3-bank-mask: - shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#944]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-2/igt@xe_query@multigpu-query-topology-l3-bank-mask.html * igt@xe_query@multigpu-query-uc-fw-version-guc: - shard-dg2-set2: NOTRUN -> [SKIP][143] ([Intel XE#944]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-432/igt@xe_query@multigpu-query-uc-fw-version-guc.html * igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout: - shard-bmg: [PASS][144] -> [SKIP][145] ([Intel XE#1130]) +22 other tests skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-2/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-5/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html #### Possible fixes #### * igt@kms_big_fb@linear-16bpp-rotate-180: - shard-lnl: [FAIL][146] ([Intel XE#1454]) -> [PASS][147] [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-lnl-3/igt@kms_big_fb@linear-16bpp-rotate-180.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-lnl-1/igt@kms_big_fb@linear-16bpp-rotate-180.html * igt@kms_big_fb@x-tiled-8bpp-rotate-0: - shard-bmg: [INCOMPLETE][148] -> [PASS][149] [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-4/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-7/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-bmg: [SKIP][150] ([Intel XE#2231] / [Intel XE#2890]) -> [PASS][151] [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html - shard-dg2-set2: [SKIP][152] ([Intel XE#2890]) -> [PASS][153] [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-432/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-434/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6: - shard-dg2-set2: [INCOMPLETE][154] ([Intel XE#1195] / [Intel XE#3113]) -> [PASS][155] [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6.html * igt@kms_cursor_edge_walk@256x256-right-edge: - shard-lnl: [FAIL][156] ([Intel XE#2577]) -> [PASS][157] +3 other tests pass [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-lnl-6/igt@kms_cursor_edge_walk@256x256-right-edge.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-lnl-1/igt@kms_cursor_edge_walk@256x256-right-edge.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [DMESG-WARN][158] ([Intel XE#877]) -> [PASS][159] [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3: - shard-bmg: [FAIL][160] ([Intel XE#301]) -> [PASS][161] +4 other tests pass [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-bmg: [FAIL][162] ([Intel XE#2882]) -> [PASS][163] +4 other tests pass [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-2/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-8/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@flip-vs-absolute-wf_vblank: - shard-lnl: [FAIL][164] ([Intel XE#886]) -> [PASS][165] +4 other tests pass [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-lnl-2/igt@kms_flip@flip-vs-absolute-wf_vblank.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-lnl-8/igt@kms_flip@flip-vs-absolute-wf_vblank.html * igt@kms_flip@modeset-vs-vblank-race: - shard-bmg: [SKIP][166] ([Intel XE#3007]) -> [PASS][167] [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-8/igt@kms_flip@modeset-vs-vblank-race.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-6/igt@kms_flip@modeset-vs-vblank-race.html - shard-dg2-set2: [SKIP][168] ([Intel XE#2423] / [i915#2575]) -> [PASS][169] [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-432/igt@kms_flip@modeset-vs-vblank-race.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-466/igt@kms_flip@modeset-vs-vblank-race.html * igt@kms_hdr@bpc-switch-suspend: - shard-dg2-set2: [ABORT][170] ([Intel XE#2625]) -> [PASS][171] +1 other test pass [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-432/igt@kms_hdr@bpc-switch-suspend.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-466/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][172] ([Intel XE#718]) -> [PASS][173] +1 other test pass [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-lnl-7/igt@kms_pm_dc@dc5-dpms.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-lnl-4/igt@kms_pm_dc@dc5-dpms.html * igt@kms_pm_rpm@legacy-planes-dpms@plane-59: - shard-lnl: [DMESG-WARN][174] ([Intel XE#3184]) -> [PASS][175] +1 other test pass [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-lnl-2/igt@kms_pm_rpm@legacy-planes-dpms@plane-59.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-lnl-8/igt@kms_pm_rpm@legacy-planes-dpms@plane-59.html * igt@kms_psr@fbc-psr2-primary-render: - shard-lnl: [FAIL][176] -> [PASS][177] +2 other tests pass [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-lnl-6/igt@kms_psr@fbc-psr2-primary-render.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-lnl-8/igt@kms_psr@fbc-psr2-primary-render.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1: - shard-lnl: [FAIL][178] ([Intel XE#899]) -> [PASS][179] [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-lnl-1/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-lnl-3/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html * igt@xe_evict@evict-beng-threads-large: - shard-bmg: [FAIL][180] ([Intel XE#1000]) -> [PASS][181] [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-5/igt@xe_evict@evict-beng-threads-large.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-6/igt@xe_evict@evict-beng-threads-large.html * igt@xe_evict@evict-large-multi-vm: - shard-dg2-set2: [INCOMPLETE][182] ([Intel XE#1195] / [Intel XE#1473]) -> [PASS][183] [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-466/igt@xe_evict@evict-large-multi-vm.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-435/igt@xe_evict@evict-large-multi-vm.html * igt@xe_exec_compute_mode@many-execqueues-userptr-invalidate: - shard-bmg: [SKIP][184] ([Intel XE#1130]) -> [PASS][185] +1 other test pass [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-8/igt@xe_exec_compute_mode@many-execqueues-userptr-invalidate.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-7/igt@xe_exec_compute_mode@many-execqueues-userptr-invalidate.html * igt@xe_exec_compute_mode@once-bindexecqueue-userptr-invalidate-race: - shard-lnl: [FAIL][186] ([Intel XE#2754]) -> [PASS][187] [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-lnl-3/igt@xe_exec_compute_mode@once-bindexecqueue-userptr-invalidate-race.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-lnl-5/igt@xe_exec_compute_mode@once-bindexecqueue-userptr-invalidate-race.html * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-imm: - shard-lnl: [FAIL][188] ([Intel XE#3160]) -> [PASS][189] [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-lnl-6/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-imm.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-lnl-6/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-imm.html * igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm: - shard-bmg: [FAIL][190] -> [PASS][191] [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-1/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-4/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm.html * igt@xe_exec_fault_mode@many-userptr-invalidate-race: - shard-bmg: [FAIL][192] ([Intel XE#3160]) -> [PASS][193] [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-7/igt@xe_exec_fault_mode@many-userptr-invalidate-race.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-5/igt@xe_exec_fault_mode@many-userptr-invalidate-race.html * igt@xe_module_load@reload: - shard-bmg: [FAIL][194] ([Intel XE#2136]) -> [PASS][195] [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-4/igt@xe_module_load@reload.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-2/igt@xe_module_load@reload.html * igt@xe_pm@s2idle-basic: - shard-dg2-set2: [ABORT][196] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][197] [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-432/igt@xe_pm@s2idle-basic.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-466/igt@xe_pm@s2idle-basic.html * igt@xe_pm_residency@idle-residency-on-exec: - shard-dg2-set2: [SKIP][198] ([Intel XE#1130]) -> [PASS][199] [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-432/igt@xe_pm_residency@idle-residency-on-exec.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-466/igt@xe_pm_residency@idle-residency-on-exec.html #### Warnings #### * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-bmg: [SKIP][200] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][201] ([Intel XE#2327]) [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-8/igt@kms_big_fb@linear-64bpp-rotate-90.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-2/igt@kms_big_fb@linear-64bpp-rotate-90.html - shard-dg2-set2: [SKIP][202] ([Intel XE#2890]) -> [SKIP][203] ([Intel XE#316]) [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-432/igt@kms_big_fb@linear-64bpp-rotate-90.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-436/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-180: - shard-bmg: [SKIP][204] ([Intel XE#1124]) -> [SKIP][205] ([Intel XE#2231] / [Intel XE#2890]) [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-5/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-5/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html - shard-dg2-set2: [SKIP][206] ([Intel XE#1124]) -> [SKIP][207] ([Intel XE#2890]) [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-436/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-435/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs: - shard-bmg: [SKIP][208] ([Intel XE#2887]) -> [SKIP][209] ([Intel XE#2231] / [Intel XE#2890]) [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-5/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs.html - shard-dg2-set2: [SKIP][210] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][211] ([Intel XE#2890]) [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-bmg: [SKIP][212] ([Intel XE#2252]) -> [SKIP][213] ([Intel XE#3007]) [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-4/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-5/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html - shard-dg2-set2: [SKIP][214] ([Intel XE#373]) -> [SKIP][215] ([Intel XE#2423] / [i915#2575]) [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-435/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-bmg: [SKIP][216] ([Intel XE#3007]) -> [SKIP][217] ([Intel XE#2252]) [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-8/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-8/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-bmg: [SKIP][218] ([Intel XE#2320]) -> [SKIP][219] ([Intel XE#3007]) [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-256x85.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-5/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-bmg: [FAIL][220] ([Intel XE#2141]) -> [SKIP][221] ([Intel XE#2231] / [Intel XE#2890]) [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-8/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt@kms_fbcon_fbt@psr-suspend: - shard-bmg: [SKIP][222] ([Intel XE#776]) -> [SKIP][223] ([Intel XE#2231] / [Intel XE#2890]) [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-7/igt@kms_fbcon_fbt@psr-suspend.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-5/igt@kms_fbcon_fbt@psr-suspend.html - shard-dg2-set2: [SKIP][224] ([Intel XE#776]) -> [SKIP][225] ([Intel XE#2890]) [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-433/igt@kms_fbcon_fbt@psr-suspend.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-435/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][226] ([Intel XE#651]) -> [SKIP][227] ([Intel XE#2890]) [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-wc.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt: - shard-bmg: [SKIP][228] ([Intel XE#2311]) -> [SKIP][229] ([Intel XE#2231] / [Intel XE#2890]) +2 other tests skip [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-modesetfrombusy: - shard-bmg: [FAIL][230] ([Intel XE#2333]) -> [SKIP][231] ([Intel XE#2231] / [Intel XE#2890]) +2 other tests skip [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-modesetfrombusy.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-modesetfrombusy.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][232] ([Intel XE#651]) -> [SKIP][233] ([Intel XE#2351] / [Intel XE#2890]) [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-onoff: - shard-dg2-set2: [SKIP][234] ([Intel XE#653]) -> [SKIP][235] ([Intel XE#2890]) [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-onoff.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][236] ([Intel XE#2313]) -> [SKIP][237] ([Intel XE#2231] / [Intel XE#2890]) +3 other tests skip [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html - shard-dg2-set2: [SKIP][238] ([Intel XE#653]) -> [SKIP][239] ([Intel XE#2351] / [Intel XE#2890]) +1 other test skip [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render: - shard-bmg: [SKIP][240] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][241] ([Intel XE#2313]) +1 other test skip [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-bmg: [SKIP][242] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][243] ([Intel XE#1489]) [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-8/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-7/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html - shard-dg2-set2: [SKIP][244] ([Intel XE#2890]) -> [SKIP][245] ([Intel XE#1489]) [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-432/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-dg2-set2: [SKIP][246] ([Intel XE#1489]) -> [SKIP][247] ([Intel XE#2890]) [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-432/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-435/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html - shard-bmg: [SKIP][248] ([Intel XE#1489]) -> [SKIP][249] ([Intel XE#2231] / [Intel XE#2890]) [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-4/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-5/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr@fbc-psr-sprite-blt: - shard-dg2-set2: [SKIP][250] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][251] ([Intel XE#2890]) [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-464/igt@kms_psr@fbc-psr-sprite-blt.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-435/igt@kms_psr@fbc-psr-sprite-blt.html * igt@kms_psr@pr-suspend: - shard-bmg: [SKIP][252] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][253] ([Intel XE#2231] / [Intel XE#2890]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-4/igt@kms_psr@pr-suspend.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-5/igt@kms_psr@pr-suspend.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: [FAIL][254] ([Intel XE#1729]) -> [SKIP][255] ([Intel XE#2426]) [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern.html - shard-dg2-set2: [FAIL][256] ([Intel XE#1729]) -> [SKIP][257] ([Intel XE#362]) [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-436/igt@kms_tiled_display@basic-test-pattern.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html * igt@xe_eudebug_online@interrupt-all: - shard-bmg: [SKIP][258] ([Intel XE#2905]) -> [SKIP][259] ([Intel XE#1130]) [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-7/igt@xe_eudebug_online@interrupt-all.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-5/igt@xe_eudebug_online@interrupt-all.html - shard-dg2-set2: [SKIP][260] ([Intel XE#2905]) -> [SKIP][261] ([Intel XE#1130]) [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-433/igt@xe_eudebug_online@interrupt-all.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-435/igt@xe_eudebug_online@interrupt-all.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: [TIMEOUT][262] ([Intel XE#1473]) -> [INCOMPLETE][263] ([Intel XE#1473]) [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-small.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_exec_basic@multigpu-once-null-defer-mmap: - shard-bmg: [SKIP][264] ([Intel XE#2322]) -> [SKIP][265] ([Intel XE#1130]) [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-4/igt@xe_exec_basic@multigpu-once-null-defer-mmap.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-5/igt@xe_exec_basic@multigpu-once-null-defer-mmap.html * igt@xe_exec_fault_mode@twice-bindexecqueue-userptr: - shard-dg2-set2: [SKIP][266] ([Intel XE#288]) -> [SKIP][267] ([Intel XE#1130]) +2 other tests skip [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-434/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-435/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr.html * igt@xe_query@multigpu-query-uc-fw-version-huc: - shard-bmg: [SKIP][268] ([Intel XE#944]) -> [SKIP][269] ([Intel XE#1130]) [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-7/igt@xe_query@multigpu-query-uc-fw-version-huc.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-bmg-5/igt@xe_query@multigpu-query-uc-fw-version-huc.html - shard-dg2-set2: [SKIP][270] ([Intel XE#944]) -> [SKIP][271] ([Intel XE#1130]) [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-464/igt@xe_query@multigpu-query-uc-fw-version-huc.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/shard-dg2-435/igt@xe_query@multigpu-query-uc-fw-version-huc.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137 [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430 [Intel XE#1454]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1454 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1541 [Intel XE#1694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1694 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885 [Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141 [Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2329 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566 [Intel XE#2577]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2577 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635 [Intel XE#2754]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2754 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2839]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2839 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2890]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#2929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2929 [Intel XE#2948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2948 [Intel XE#2961]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2961 [Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3160]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3160 [Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184 [Intel XE#3191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3191 [Intel XE#3267]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3267 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8089 -> IGTPW_12007 * Linux: xe-2146-afdb5631acb317eca18b171006efb3930fef7eb4 -> xe-2147-c245557007af0a1c23da00c47732ae1dadda7dd3 IGTPW_12007: 12007 IGT_8089: 2339a396e8c38ba1582a6fc18fe4f7ed178979cc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2146-afdb5631acb317eca18b171006efb3930fef7eb4: afdb5631acb317eca18b171006efb3930fef7eb4 xe-2147-c245557007af0a1c23da00c47732ae1dadda7dd3: c245557007af0a1c23da00c47732ae1dadda7dd3 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12007/index.html [-- Attachment #2: Type: text/html, Size: 79918 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ Fi.CI.IGT: failure for tests/xe/pmu: Add pmu tests 2024-10-30 20:52 [PATCH i-g-t] tests/xe/pmu: Add pmu tests Vinay Belgaumkar ` (2 preceding siblings ...) 2024-10-31 0:56 ` ✗ CI.xeFULL: failure " Patchwork @ 2024-10-31 10:28 ` Patchwork 2024-11-04 6:34 ` [PATCH i-g-t] " Riana Tauro 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2024-10-31 10:28 UTC (permalink / raw) To: Vinay Belgaumkar; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100247 bytes --] == Series Details == Series: tests/xe/pmu: Add pmu tests URL : https://patchwork.freedesktop.org/series/140737/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15615_full -> IGTPW_12007_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12007_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12007_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/index.html Participating hosts (10 -> 9) ------------------------------ Missing (1): shard-glk Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12007_full: ### IGT changes ### #### Possible regressions #### * igt@kms_hdr@brightness-with-hdr: - shard-tglu: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-6/igt@kms_hdr@brightness-with-hdr.html #### Warnings #### * igt@device_reset@unbind-reset-rebind: - shard-dg1: [ABORT][2] ([i915#11814] / [i915#11815]) -> [INCOMPLETE][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg1-17/igt@device_reset@unbind-reset-rebind.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-13/igt@device_reset@unbind-reset-rebind.html Known issues ------------ Here are the changes found in IGTPW_12007_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][4] ([i915#8411]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-11/igt@api_intel_bb@object-reloc-keep-cache.html * igt@device_reset@cold-reset-bound: - shard-dg1: NOTRUN -> [SKIP][5] ([i915#11078]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-19/igt@device_reset@cold-reset-bound.html - shard-tglu: NOTRUN -> [SKIP][6] ([i915#11078]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-4/igt@device_reset@cold-reset-bound.html - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#11078]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-1/igt@device_reset@cold-reset-bound.html - shard-dg2: NOTRUN -> [SKIP][8] ([i915#11078]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-11/igt@device_reset@cold-reset-bound.html * igt@device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][9] ([i915#11078]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-7/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@busy-idle-check-all@vcs0: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#8414]) +7 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-3/igt@drm_fdinfo@busy-idle-check-all@vcs0.html * igt@drm_fdinfo@busy-idle-check-all@vcs1: - shard-dg1: NOTRUN -> [SKIP][11] ([i915#8414]) +5 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-16/igt@drm_fdinfo@busy-idle-check-all@vcs1.html * igt@gem_bad_reloc@negative-reloc-lut: - shard-rkl: NOTRUN -> [SKIP][12] ([i915#3281]) +12 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-2/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_basic@multigpu-create-close: - shard-rkl: NOTRUN -> [SKIP][13] ([i915#7697]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-2/igt@gem_basic@multigpu-create-close.html - shard-tglu: NOTRUN -> [SKIP][14] ([i915#7697]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-6/igt@gem_basic@multigpu-create-close.html * igt@gem_busy@close-race: - shard-dg1: NOTRUN -> [FAIL][15] ([i915#12297] / [i915#12577]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-15/igt@gem_busy@close-race.html * igt@gem_ccs@ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-7/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: NOTRUN -> [SKIP][17] ([i915#9323]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-1/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [PASS][18] -> [INCOMPLETE][19] ([i915#12392] / [i915#7297]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-3/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-10/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html * igt@gem_close_race@multigpu-basic-process: - shard-dg1: NOTRUN -> [SKIP][20] ([i915#7697]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-19/igt@gem_close_race@multigpu-basic-process.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#7697]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-3/igt@gem_close_race@multigpu-basic-threads.html - shard-tglu-1: NOTRUN -> [SKIP][22] ([i915#7697]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-1/igt@gem_close_race@multigpu-basic-threads.html - shard-mtlp: NOTRUN -> [SKIP][23] ([i915#7697]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-3/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-set-pat: - shard-rkl: NOTRUN -> [SKIP][24] ([i915#8562]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-2/igt@gem_create@create-ext-set-pat.html - shard-tglu-1: NOTRUN -> [SKIP][25] ([i915#8562]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-1/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_engines@invalid-engines: - shard-rkl: [PASS][26] -> [FAIL][27] ([i915#12031]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-rkl-4/igt@gem_ctx_engines@invalid-engines.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-4/igt@gem_ctx_engines@invalid-engines.html - shard-tglu: NOTRUN -> [FAIL][28] ([i915#12031]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-9/igt@gem_ctx_engines@invalid-engines.html * igt@gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][29] ([i915#280]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-2/igt@gem_ctx_sseu@engines.html - shard-dg1: NOTRUN -> [SKIP][30] ([i915#280]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-17/igt@gem_ctx_sseu@engines.html - shard-tglu: NOTRUN -> [SKIP][31] ([i915#280]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-6/igt@gem_ctx_sseu@engines.html - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#280]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-6/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-sseu: - shard-tglu-1: NOTRUN -> [SKIP][33] ([i915#280]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-1/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#280]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-5/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@hibernate: - shard-rkl: NOTRUN -> [ABORT][35] ([i915#7975] / [i915#8213]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-6/igt@gem_eio@hibernate.html * igt@gem_exec_balancer@bonded-dual: - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#4771]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-1/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#4771]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-3/igt@gem_exec_balancer@bonded-sync.html - shard-dg1: NOTRUN -> [SKIP][38] ([i915#4771]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-14/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#4812]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-5/igt@gem_exec_balancer@bonded-true-hang.html - shard-dg1: NOTRUN -> [SKIP][40] ([i915#4812]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-16/igt@gem_exec_balancer@bonded-true-hang.html - shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4812]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-6/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_balancer@noheartbeat: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#8555]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-4/igt@gem_exec_balancer@noheartbeat.html * igt@gem_exec_balancer@parallel: - shard-rkl: NOTRUN -> [SKIP][43] ([i915#4525]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-7/igt@gem_exec_balancer@parallel.html * igt@gem_exec_big@single: - shard-tglu: [PASS][44] -> [ABORT][45] ([i915#11713]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-tglu-8/igt@gem_exec_big@single.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-3/igt@gem_exec_big@single.html * igt@gem_exec_fair@basic-none-share: - shard-tglu-1: NOTRUN -> [FAIL][46] ([i915#2842]) +3 other tests fail [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-1/igt@gem_exec_fair@basic-none-share.html * igt@gem_exec_fair@basic-none-vip: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4473] / [i915#4771]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-6/igt@gem_exec_fair@basic-none-vip.html * igt@gem_exec_fair@basic-pace: - shard-rkl: NOTRUN -> [FAIL][48] ([i915#2842]) +5 other tests fail [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-4/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-pace-share: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#3539] / [i915#4852]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-3/igt@gem_exec_fair@basic-pace-share.html - shard-dg1: NOTRUN -> [SKIP][50] ([i915#3539] / [i915#4852]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-14/igt@gem_exec_fair@basic-pace-share.html * igt@gem_exec_reloc@basic-concurrent16: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#3281]) +4 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-1/igt@gem_exec_reloc@basic-concurrent16.html * igt@gem_exec_reloc@basic-wc-read: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#3281]) +7 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-13/igt@gem_exec_reloc@basic-wc-read.html * igt@gem_exec_reloc@basic-write-read-active: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#3281]) +9 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-8/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_schedule@pi-common@vcs0: - shard-rkl: NOTRUN -> [FAIL][54] ([i915#12296]) +4 other tests fail [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-2/igt@gem_exec_schedule@pi-common@vcs0.html - shard-tglu-1: NOTRUN -> [FAIL][55] ([i915#12296]) +5 other tests fail [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-1/igt@gem_exec_schedule@pi-common@vcs0.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4537] / [i915#4812]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-8/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_schedule@semaphore-power: - shard-rkl: NOTRUN -> [SKIP][57] ([i915#7276]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-5/igt@gem_exec_schedule@semaphore-power.html - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4537] / [i915#4812]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-3/igt@gem_exec_schedule@semaphore-power.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#4860]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-15/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4860]) +2 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-5/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_lmem_swapping@heavy-random: - shard-tglu: NOTRUN -> [SKIP][61] ([i915#4613]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-7/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4613]) +3 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-3/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#4565]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-14/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html * igt@gem_lmem_swapping@parallel-multi: - shard-rkl: NOTRUN -> [SKIP][64] ([i915#4613]) +5 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-3/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@parallel-random: - shard-tglu-1: NOTRUN -> [SKIP][65] ([i915#4613]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-1/igt@gem_lmem_swapping@parallel-random.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-dg1: NOTRUN -> [SKIP][66] ([i915#12193]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-14/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_media_vme: - shard-rkl: NOTRUN -> [SKIP][67] ([i915#284]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-4/igt@gem_media_vme.html * igt@gem_mmap_gtt@basic-small-copy-odd: - shard-dg1: NOTRUN -> [SKIP][68] ([i915#4077]) +7 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-19/igt@gem_mmap_gtt@basic-small-copy-odd.html * igt@gem_mmap_gtt@fault-concurrent-y: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4077]) +4 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-8/igt@gem_mmap_gtt@fault-concurrent-y.html * igt@gem_mmap_wc@bad-size: - shard-dg1: NOTRUN -> [SKIP][70] ([i915#4083]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-15/igt@gem_mmap_wc@bad-size.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4083]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-11/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_pread@exhaustion: - shard-tglu-1: NOTRUN -> [WARN][72] ([i915#2658]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-1/igt@gem_pread@exhaustion.html - shard-dg1: NOTRUN -> [SKIP][73] ([i915#3282]) +5 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-17/igt@gem_pread@exhaustion.html * igt@gem_pread@self: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#3282]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-10/igt@gem_pread@self.html * igt@gem_pwrite@basic-self: - shard-rkl: NOTRUN -> [SKIP][75] ([i915#3282]) +10 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-2/igt@gem_pwrite@basic-self.html * igt@gem_pxp@create-regular-context-2: - shard-tglu: NOTRUN -> [SKIP][76] ([i915#4270]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-2/igt@gem_pxp@create-regular-context-2.html * igt@gem_pxp@create-valid-protected-context: - shard-tglu-1: NOTRUN -> [SKIP][77] ([i915#4270]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-1/igt@gem_pxp@create-valid-protected-context.html * igt@gem_pxp@fail-invalid-protected-context: - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#4270]) +2 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-2/igt@gem_pxp@fail-invalid-protected-context.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-dg1: NOTRUN -> [SKIP][79] ([i915#4270]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-18/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4270]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-11/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-rkl: NOTRUN -> [SKIP][81] ([i915#4270]) +5 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-1/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_readwrite@write-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#3282]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-5/igt@gem_readwrite@write-bad-handle.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#8428]) +2 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-1/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html - shard-dg2: NOTRUN -> [SKIP][84] ([i915#5190] / [i915#8428]) +4 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-11/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#4079]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-15/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_set_tiling_vs_pwrite: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#4079]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-6/igt@gem_set_tiling_vs_pwrite.html * igt@gem_unfence_active_buffers: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#4879]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-1/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@coherency-unsync: - shard-dg1: NOTRUN -> [SKIP][88] ([i915#3297]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-14/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#3297]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-7/igt@gem_userptr_blits@create-destroy-unsync.html - shard-rkl: NOTRUN -> [SKIP][90] ([i915#3297]) +3 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-2/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-tglu-1: NOTRUN -> [SKIP][91] ([i915#3297] / [i915#3323]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-1/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-tglu-1: NOTRUN -> [SKIP][92] ([i915#3297]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-1/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@forbidden-operations: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#3282] / [i915#3297]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-1/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-mtlp: NOTRUN -> [SKIP][94] ([i915#3297]) +4 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-6/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg1: NOTRUN -> [SKIP][95] ([i915#3297] / [i915#4880]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-14/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html - shard-dg2: NOTRUN -> [SKIP][96] ([i915#3297] / [i915#4880]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-1/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#3297] / [i915#4958]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-2/igt@gem_userptr_blits@sd-probe.html - shard-dg1: NOTRUN -> [SKIP][98] ([i915#3297] / [i915#4958]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-18/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@unsync-unmap: - shard-tglu: NOTRUN -> [SKIP][99] ([i915#3297]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-8/igt@gem_userptr_blits@unsync-unmap.html * igt@gen3_render_tiledy_blits: - shard-mtlp: NOTRUN -> [SKIP][100] +15 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-2/igt@gen3_render_tiledy_blits.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-tglu: NOTRUN -> [SKIP][101] ([i915#2527] / [i915#2856]) +2 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-6/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@batch-without-end: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#2856]) +2 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-5/igt@gen9_exec_parse@batch-without-end.html - shard-dg1: NOTRUN -> [SKIP][103] ([i915#2527]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-17/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@bb-start-cmd: - shard-tglu-1: NOTRUN -> [SKIP][104] ([i915#2527] / [i915#2856]) +2 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-1/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@shadow-peek: - shard-rkl: NOTRUN -> [SKIP][105] ([i915#2527]) +4 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-2/igt@gen9_exec_parse@shadow-peek.html * igt@i915_fb_tiling: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#4881]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-3/igt@i915_fb_tiling.html * igt@i915_module_load@load: - shard-tglu: NOTRUN -> [SKIP][107] ([i915#6227]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-7/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-tglu-1: NOTRUN -> [ABORT][108] ([i915#9820]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-1/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: NOTRUN -> [ABORT][109] ([i915#9820]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-basic-api: - shard-tglu: NOTRUN -> [SKIP][110] ([i915#8399]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-5/igt@i915_pm_freq_api@freq-basic-api.html - shard-rkl: NOTRUN -> [SKIP][111] ([i915#8399]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-1/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_rps@basic-api: - shard-mtlp: NOTRUN -> [SKIP][112] ([i915#11681] / [i915#6621]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-3/igt@i915_pm_rps@basic-api.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#6188]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-1/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#5723]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-4/igt@i915_query@test-query-geometry-subslices.html * igt@intel_hwmon@hwmon-read: - shard-rkl: NOTRUN -> [SKIP][115] ([i915#7707]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-2/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - shard-mtlp: NOTRUN -> [SKIP][116] ([i915#4212]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-6/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html - shard-dg2: NOTRUN -> [SKIP][117] ([i915#4212]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-5/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html - shard-dg1: NOTRUN -> [SKIP][118] ([i915#4212]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-16/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#4212] / [i915#5190]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-4/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][120] ([i915#8709]) +7 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-19/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#6228]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-7/igt@kms_async_flips@invalid-async-flip.html - shard-mtlp: NOTRUN -> [SKIP][122] ([i915#6228]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-7/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-tglu-1: NOTRUN -> [SKIP][123] ([i915#9531]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_interruptible@legacy-dpms: - shard-dg1: [PASS][124] -> [DMESG-WARN][125] ([i915#4423]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg1-19/igt@kms_atomic_interruptible@legacy-dpms.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-17/igt@kms_atomic_interruptible@legacy-dpms.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-4: - shard-dg1: [PASS][126] -> [FAIL][127] ([i915#5956]) +1 other test fail [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg1-17/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-4.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-16/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-4.html * igt@kms_big_fb@4-tiled-32bpp-rotate-0: - shard-tglu: NOTRUN -> [SKIP][128] ([i915#5286]) +5 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-8/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-addfb: - shard-tglu-1: NOTRUN -> [SKIP][129] ([i915#5286]) +3 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-1/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#5286]) +6 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html - shard-dg1: NOTRUN -> [SKIP][131] ([i915#4538] / [i915#5286]) +3 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-19/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [PASS][132] -> [FAIL][133] ([i915#5138]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-8bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][134] ([i915#3638]) +3 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-16/igt@kms_big_fb@linear-8bpp-rotate-90.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][135] +20 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-3/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180: - shard-dg2: [PASS][136] -> [SKIP][137] ([i915#9197]) +2 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#3638]) +2 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-5/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#4538] / [i915#5190]) +8 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-11/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#5190]) +2 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-6/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#5190] / [i915#9197]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-2/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][142] ([i915#4538]) +3 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-14/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][143] ([i915#6095]) +29 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-1/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#9197]) +2 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-2/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html - shard-rkl: NOTRUN -> [SKIP][145] ([i915#12313]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-5/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][146] ([i915#6095]) +24 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-6/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-edp-1.html * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][147] ([i915#6095]) +49 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-5/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][148] ([i915#12313]) +2 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-18/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#12313]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][150] ([i915#12313]) +3 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#10307] / [i915#6095]) +147 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][152] ([i915#6095]) +91 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-15/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-4.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#12313]) +4 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-10/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][155] ([i915#6095]) +94 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-2/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_cdclk@mode-transition: - shard-rkl: NOTRUN -> [SKIP][156] ([i915#3742]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-7/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#7213]) +3 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-11/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2.html * igt@kms_chamelium_audio@dp-audio-edid: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#7828]) +8 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-5/igt@kms_chamelium_audio@dp-audio-edid.html * igt@kms_chamelium_hpd@dp-hpd: - shard-rkl: NOTRUN -> [SKIP][159] ([i915#7828]) +13 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-2/igt@kms_chamelium_hpd@dp-hpd.html * igt@kms_chamelium_hpd@dp-hpd-fast: - shard-tglu: NOTRUN -> [SKIP][160] ([i915#7828]) +8 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-8/igt@kms_chamelium_hpd@dp-hpd-fast.html * igt@kms_chamelium_hpd@dp-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][161] ([i915#7828]) +5 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-12/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html * igt@kms_chamelium_hpd@hdmi-hpd-storm: - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#7828]) +5 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-5/igt@kms_chamelium_hpd@hdmi-hpd-storm.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-tglu-1: NOTRUN -> [SKIP][163] ([i915#7828]) +5 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_color@ctm-green-to-red: - shard-dg2: [PASS][164] -> [SKIP][165] ([i915#12655]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-3/igt@kms_color@ctm-green-to-red.html [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-2/igt@kms_color@ctm-green-to-red.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-tglu: NOTRUN -> [SKIP][166] ([i915#3116] / [i915#3299]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-9/igt@kms_content_protection@dp-mst-lic-type-0.html - shard-rkl: NOTRUN -> [SKIP][167] ([i915#3116]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-5/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@lic-type-0: - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#6944] / [i915#9424]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-2/igt@kms_content_protection@lic-type-0.html - shard-dg2: NOTRUN -> [SKIP][169] ([i915#9424]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-1/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#7118]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-8/igt@kms_content_protection@srm.html * igt@kms_content_protection@type1: - shard-rkl: NOTRUN -> [SKIP][171] ([i915#7118] / [i915#9424]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-2/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-32x10: - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#3555] / [i915#8814]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-4/igt@kms_cursor_crc@cursor-offscreen-32x10.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#11453] / [i915#3359]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-offscreen-max-size: - shard-tglu-1: NOTRUN -> [SKIP][174] ([i915#3555]) +2 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-max-size.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#11453] / [i915#3359]) +1 other test skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-5/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-tglu-1: NOTRUN -> [SKIP][176] ([i915#11453] / [i915#3359]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-dg1: NOTRUN -> [SKIP][177] ([i915#3555]) +2 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-17/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg1: NOTRUN -> [SKIP][178] ([i915#11453] / [i915#3359]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-15/igt@kms_cursor_crc@cursor-random-512x170.html - shard-tglu: NOTRUN -> [SKIP][179] ([i915#11453] / [i915#3359]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-6/igt@kms_cursor_crc@cursor-random-512x170.html - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#11453] / [i915#3359]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-7/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-tglu: NOTRUN -> [SKIP][181] ([i915#3555]) +3 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-6/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-64x21: - shard-mtlp: NOTRUN -> [SKIP][182] ([i915#8814]) +1 other test skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-8/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#3555]) +5 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-3/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-tglu: NOTRUN -> [SKIP][184] ([i915#4103]) +2 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-mtlp: NOTRUN -> [SKIP][185] ([i915#9809]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-snb: [PASS][186] -> [FAIL][187] ([i915#2346]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-snb1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-snb4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#9067]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-8/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-dg2: NOTRUN -> [SKIP][189] ([i915#9067]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-8/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#4103]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][191] ([i915#9723]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][192] ([i915#3804]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dp_aux_dev: - shard-tglu: NOTRUN -> [SKIP][193] ([i915#1257]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-6/igt@kms_dp_aux_dev.html * igt@kms_dsc@dsc-basic: - shard-rkl: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#3840]) +2 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-1/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-tglu-1: NOTRUN -> [SKIP][195] ([i915#3840] / [i915#9053]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@psr-suspend: - shard-tglu-1: NOTRUN -> [SKIP][196] ([i915#3469]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-1/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-3x: - shard-rkl: NOTRUN -> [SKIP][197] ([i915#1839]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-1/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#9337]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-6/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#658]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-3/igt@kms_feature_discovery@psr1.html - shard-rkl: NOTRUN -> [SKIP][200] ([i915#658]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-1/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][201] ([i915#3637]) +4 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#8381]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-1/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#5354]) +42 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-5/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-mtlp: NOTRUN -> [SKIP][204] ([i915#3637]) +5 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-3/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][205] ([i915#3637]) +8 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-1/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-snb: [PASS][206] -> [FAIL][207] ([i915#10826]) +1 other test fail [206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-snb6/igt@kms_flip@2x-plain-flip-ts-check.html [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-snb7/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-dg1: NOTRUN -> [SKIP][208] ([i915#9934]) +4 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-13/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@plain-flip-ts-check-interruptible: - shard-snb: [PASS][209] -> [FAIL][210] ([i915#2122]) +3 other tests fail [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-snb7/igt@kms_flip@plain-flip-ts-check-interruptible.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-snb4/igt@kms_flip@plain-flip-ts-check-interruptible.html - shard-tglu: [PASS][211] -> [FAIL][212] ([i915#2122]) +4 other tests fail [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-tglu-6/igt@kms_flip@plain-flip-ts-check-interruptible.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-2/igt@kms_flip@plain-flip-ts-check-interruptible.html - shard-dg2: [PASS][213] -> [FAIL][214] ([i915#10826] / [i915#2122]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-5/igt@kms_flip@plain-flip-ts-check-interruptible.html [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-5/igt@kms_flip@plain-flip-ts-check-interruptible.html * igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a3: - shard-dg2: [PASS][215] -> [FAIL][216] ([i915#10826]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-5/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a3.html [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-5/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a3.html * igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a3: - shard-dg2: [PASS][217] -> [FAIL][218] ([i915#2122]) +1 other test fail [217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-5/igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a3.html [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-5/igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a3.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][219] ([i915#2672]) +4 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][220] ([i915#2672] / [i915#3555] / [i915#8813]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html - shard-dg2: NOTRUN -> [SKIP][221] ([i915#2672] / [i915#3555]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#2672] / [i915#8813]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#2672]) +3 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-dg1: NOTRUN -> [SKIP][224] ([i915#2587] / [i915#2672] / [i915#3555]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-tglu: NOTRUN -> [SKIP][226] ([i915#2672] / [i915#3555]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][227] ([i915#2587] / [i915#2672]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][228] ([i915#2672] / [i915#3555]) +4 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-dg1: NOTRUN -> [SKIP][229] ([i915#2672] / [i915#3555]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-16/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][230] ([i915#2587] / [i915#2672]) +1 other test skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-16/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt: - shard-dg2: [PASS][231] -> [SKIP][232] ([i915#5354]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw: - shard-snb: [PASS][233] -> [SKIP][234] +4 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#1825]) +24 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-tglu-1: NOTRUN -> [SKIP][236] +58 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html - shard-dg1: NOTRUN -> [SKIP][237] +23 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-rkl: NOTRUN -> [SKIP][238] ([i915#3023]) +29 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][239] +35 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][240] ([i915#8708]) +2 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen: - shard-tglu: NOTRUN -> [SKIP][241] +82 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#8708]) +18 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#10433] / [i915#3458]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][244] ([i915#5439]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-tglu-1: NOTRUN -> [SKIP][245] ([i915#9766]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt: - shard-dg1: NOTRUN -> [SKIP][246] ([i915#3458]) +13 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][247] ([i915#8708]) +12 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#3458]) +17 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][249] ([i915#1825]) +44 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#6118]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-11/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdmi_inject@inject-audio: - shard-mtlp: [PASS][251] -> [SKIP][252] ([i915#433]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-mtlp-2/igt@kms_hdmi_inject@inject-audio.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-7/igt@kms_hdmi_inject@inject-audio.html - shard-rkl: [PASS][253] -> [SKIP][254] ([i915#433]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-rkl-4/igt@kms_hdmi_inject@inject-audio.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-2/igt@kms_hdmi_inject@inject-audio.html - shard-tglu: NOTRUN -> [SKIP][255] ([i915#433]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-6/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@bpc-switch: - shard-rkl: NOTRUN -> [SKIP][256] ([i915#3555] / [i915#8228]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-2/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@bpc-switch-dpms: - shard-tglu: NOTRUN -> [SKIP][257] ([i915#3555] / [i915#8228]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-5/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@invalid-metadata-sizes: - shard-mtlp: NOTRUN -> [SKIP][258] ([i915#3555] / [i915#8228]) +1 other test skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-2/igt@kms_hdr@invalid-metadata-sizes.html - shard-dg1: NOTRUN -> [SKIP][259] ([i915#3555] / [i915#8228]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-14/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_joiner@basic-big-joiner: - shard-dg2: NOTRUN -> [SKIP][260] ([i915#10656]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-1/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][261] ([i915#12394]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-6/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-rkl: NOTRUN -> [SKIP][262] ([i915#10656]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-4/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][263] ([i915#12388]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-2/igt@kms_joiner@invalid-modeset-force-big-joiner.html - shard-tglu-1: NOTRUN -> [SKIP][264] ([i915#12388]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][265] ([i915#12339]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-5/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-tglu: NOTRUN -> [SKIP][266] ([i915#1839]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane_multiple@tiling-yf: - shard-mtlp: NOTRUN -> [SKIP][267] ([i915#3555] / [i915#8806]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-1/igt@kms_plane_multiple@tiling-yf.html - shard-dg2: NOTRUN -> [SKIP][268] ([i915#3555] / [i915#8806]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-3/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-tglu: [PASS][269] -> [FAIL][270] ([i915#8292]) +1 other test fail [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-tglu-9/igt@kms_plane_scaling@intel-max-src-size.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-4/igt@kms_plane_scaling@intel-max-src-size.html - shard-mtlp: NOTRUN -> [SKIP][271] ([i915#6953]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-1/igt@kms_plane_scaling@intel-max-src-size.html - shard-dg2: NOTRUN -> [SKIP][272] ([i915#6953] / [i915#9423]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-11/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][273] ([i915#8292]) +1 other test fail [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-1/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][274] ([i915#8292]) +1 other test fail [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-19/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: - shard-rkl: NOTRUN -> [SKIP][275] ([i915#12247]) +10 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html - shard-tglu-1: NOTRUN -> [SKIP][276] ([i915#12247]) +4 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-1/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d: - shard-dg1: NOTRUN -> [SKIP][277] ([i915#12247]) +10 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-19/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][278] ([i915#12247] / [i915#6953]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg1: NOTRUN -> [SKIP][279] ([i915#12247] / [i915#12504] / [i915#3555]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-19/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - shard-tglu: NOTRUN -> [SKIP][280] ([i915#12247] / [i915#3555]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - shard-mtlp: NOTRUN -> [SKIP][281] ([i915#12247] / [i915#3555]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - shard-rkl: NOTRUN -> [SKIP][282] ([i915#12247] / [i915#3555]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a: - shard-dg1: NOTRUN -> [SKIP][283] ([i915#12247] / [i915#12504]) +6 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-19/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a.html - shard-tglu: NOTRUN -> [SKIP][284] ([i915#12247]) +3 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5: - shard-dg2: [PASS][285] -> [SKIP][286] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-c: - shard-dg2: [PASS][287] -> [SKIP][288] ([i915#12247]) +2 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-c.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-c.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d: - shard-dg2: [PASS][289] -> [SKIP][290] ([i915#12247] / [i915#8152]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75: - shard-snb: NOTRUN -> [SKIP][291] +36 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-snb7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html - shard-mtlp: NOTRUN -> [SKIP][292] ([i915#12247] / [i915#3555] / [i915#6953]) +1 other test skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a: - shard-mtlp: NOTRUN -> [SKIP][293] ([i915#12247]) +15 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-rkl: NOTRUN -> [SKIP][294] ([i915#12343]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-1/igt@kms_pm_backlight@brightness-with-dpms.html - shard-tglu: NOTRUN -> [SKIP][295] ([i915#12343]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-2/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][296] ([i915#5354]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-2/igt@kms_pm_backlight@fade-with-dpms.html - shard-tglu: NOTRUN -> [SKIP][297] ([i915#9812]) +1 other test skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-4/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_backlight@fade-with-suspend: - shard-tglu-1: NOTRUN -> [SKIP][298] ([i915#9812]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-1/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc5-psr: - shard-rkl: NOTRUN -> [SKIP][299] ([i915#9685]) +1 other test skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-1/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][300] ([i915#5978]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-4/igt@kms_pm_dc@dc6-dpms.html - shard-tglu: [PASS][301] -> [FAIL][302] ([i915#9295]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-tglu-2/igt@kms_pm_dc@dc6-dpms.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-7/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-tglu-1: NOTRUN -> [SKIP][303] ([i915#9519]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-1/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-mtlp: NOTRUN -> [SKIP][304] ([i915#9519]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-tglu: NOTRUN -> [SKIP][305] ([i915#9519]) +1 other test skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_pm_rpm@pm-tiling: - shard-dg2: NOTRUN -> [SKIP][306] ([i915#4077]) +15 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-10/igt@kms_pm_rpm@pm-tiling.html * igt@kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][307] ([i915#6524] / [i915#6805]) +1 other test skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-8/igt@kms_prime@basic-crc-vgem.html * igt@kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][308] ([i915#6524]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-5/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf: - shard-mtlp: NOTRUN -> [SKIP][309] ([i915#12316]) +2 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-1/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][310] ([i915#11520]) +9 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-7/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][311] ([i915#11520]) +13 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-4/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][312] ([i915#11520]) +4 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@pr-cursor-plane-update-sf: - shard-tglu: NOTRUN -> [SKIP][313] ([i915#11520]) +8 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-9/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html - shard-snb: NOTRUN -> [SKIP][314] ([i915#11520]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-snb7/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][315] ([i915#11520]) +5 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-15/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_su@page_flip-p010: - shard-tglu-1: NOTRUN -> [SKIP][316] ([i915#9683]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-1/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][317] ([i915#9683]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-1/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr-cursor-mmap-gtt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][318] ([i915#9688]) +11 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-8/igt@kms_psr@fbc-psr-cursor-mmap-gtt@edp-1.html * igt@kms_psr@fbc-psr-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][319] ([i915#1072] / [i915#9732]) +24 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-5/igt@kms_psr@fbc-psr-primary-mmap-gtt.html * igt@kms_psr@fbc-psr2-sprite-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][320] ([i915#9732]) +15 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-1/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html * igt@kms_psr@pr-sprite-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][321] ([i915#9732]) +17 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-8/igt@kms_psr@pr-sprite-mmap-cpu.html * igt@kms_psr@pr-sprite-plane-onoff: - shard-dg1: NOTRUN -> [SKIP][322] ([i915#1072] / [i915#9732]) +15 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-12/igt@kms_psr@pr-sprite-plane-onoff.html * igt@kms_psr@psr2-cursor-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][323] ([i915#1072] / [i915#9732]) +29 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-7/igt@kms_psr@psr2-cursor-mmap-gtt.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglu: NOTRUN -> [SKIP][324] ([i915#9685]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-4/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][325] ([i915#5289]) +3 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-6/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][326] ([i915#11131] / [i915#4235] / [i915#5190]) +1 other test skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_scaling_modes@scaling-mode-none: - shard-mtlp: NOTRUN -> [SKIP][327] ([i915#3555] / [i915#5030] / [i915#9041]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-5/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][328] ([i915#5030]) +2 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-5/igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1.html * igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][329] ([i915#5030] / [i915#9041]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-5/igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1.html * igt@kms_selftest@drm_framebuffer: - shard-tglu: NOTRUN -> [ABORT][330] ([i915#12231]) +1 other test abort [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-5/igt@kms_selftest@drm_framebuffer.html * igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free: - shard-dg2: NOTRUN -> [ABORT][331] ([i915#12231]) +1 other test abort [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-7/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html * igt@kms_setmode@basic-clone-single-crtc: - shard-rkl: NOTRUN -> [SKIP][332] ([i915#3555]) +6 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-2/igt@kms_setmode@basic-clone-single-crtc.html - shard-mtlp: NOTRUN -> [SKIP][333] ([i915#3555] / [i915#8809]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-6/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_sysfs_edid_timing: - shard-dg1: NOTRUN -> [FAIL][334] ([IGT#2] / [i915#6493]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-16/igt@kms_sysfs_edid_timing.html * igt@kms_vrr@flipline: - shard-mtlp: NOTRUN -> [SKIP][335] ([i915#3555] / [i915#8808]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-1/igt@kms_vrr@flipline.html * igt@kms_vrr@lobf: - shard-dg1: NOTRUN -> [SKIP][336] ([i915#11920]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-17/igt@kms_vrr@lobf.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-dg2: NOTRUN -> [SKIP][337] ([i915#9906]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-11/igt@kms_vrr@seamless-rr-switch-virtual.html - shard-dg1: NOTRUN -> [SKIP][338] ([i915#9906]) +1 other test skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-13/igt@kms_vrr@seamless-rr-switch-virtual.html - shard-mtlp: NOTRUN -> [SKIP][339] ([i915#8808] / [i915#9906]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-4/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][340] ([i915#2437] / [i915#9412]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-1/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-rkl: NOTRUN -> [SKIP][341] ([i915#2437] / [i915#9412]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-5/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-pixel-formats: - shard-tglu-1: NOTRUN -> [SKIP][342] ([i915#2437] / [i915#9412]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-1/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@global-sseu-config: - shard-dg2: NOTRUN -> [SKIP][343] ([i915#7387]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-5/igt@perf@global-sseu-config.html * igt@perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][344] ([i915#2434]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-11/igt@perf@mi-rpc.html * igt@perf_pmu@busy-double-start@vecs0: - shard-dg1: [PASS][345] -> [FAIL][346] ([i915#4349]) +2 other tests fail [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg1-14/igt@perf_pmu@busy-double-start@vecs0.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-15/igt@perf_pmu@busy-double-start@vecs0.html * igt@perf_pmu@cpu-hotplug: - shard-mtlp: NOTRUN -> [SKIP][347] ([i915#8850]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-3/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@rc6-all-gts: - shard-dg1: NOTRUN -> [SKIP][348] ([i915#8516]) +1 other test skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-18/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][349] ([i915#8516]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-4/igt@perf_pmu@rc6@other-idle-gt0.html - shard-rkl: NOTRUN -> [SKIP][350] ([i915#8516]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-4/igt@perf_pmu@rc6@other-idle-gt0.html - shard-tglu: NOTRUN -> [SKIP][351] ([i915#8516]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-7/igt@perf_pmu@rc6@other-idle-gt0.html * igt@perf_pmu@semaphore-busy: - shard-mtlp: [PASS][352] -> [FAIL][353] ([i915#4349]) +2 other tests fail [352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-mtlp-7/igt@perf_pmu@semaphore-busy.html [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-5/igt@perf_pmu@semaphore-busy.html - shard-dg2: [PASS][354] -> [FAIL][355] ([i915#4349]) +2 other tests fail [354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-10/igt@perf_pmu@semaphore-busy.html [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-4/igt@perf_pmu@semaphore-busy.html * igt@prime_vgem@basic-gtt: - shard-dg2: NOTRUN -> [SKIP][356] ([i915#3708] / [i915#4077]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-3/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@fence-flip-hang: - shard-rkl: NOTRUN -> [SKIP][357] ([i915#3708]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-2/igt@prime_vgem@fence-flip-hang.html * igt@sriov_basic@bind-unbind-vf: - shard-tglu-1: NOTRUN -> [SKIP][358] ([i915#9917]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-1/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg2: NOTRUN -> [SKIP][359] ([i915#9917]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-4/igt@sriov_basic@enable-vfs-autoprobe-off.html - shard-tglu: NOTRUN -> [SKIP][360] ([i915#9917]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-7/igt@sriov_basic@enable-vfs-autoprobe-off.html #### Possible fixes #### * igt@gem_ctx_persistence@hostile: - shard-tglu: [FAIL][361] ([i915#11980] / [i915#12580]) -> [PASS][362] [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-tglu-6/igt@gem_ctx_persistence@hostile.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-tglu-9/igt@gem_ctx_persistence@hostile.html * igt@gem_eio@reset-stress: - shard-dg1: [FAIL][363] ([i915#12543] / [i915#5784]) -> [PASS][364] [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg1-15/igt@gem_eio@reset-stress.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-17/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@nop: - shard-mtlp: [DMESG-WARN][365] ([i915#12412]) -> [PASS][366] [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-mtlp-2/igt@gem_exec_balancer@nop.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-1/igt@gem_exec_balancer@nop.html * igt@gem_exec_fair@basic-deadline: - shard-rkl: [FAIL][367] ([i915#2846]) -> [PASS][368] [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-rkl-7/igt@gem_exec_fair@basic-deadline.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-5/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg1: [ABORT][369] ([i915#7975] / [i915#8213]) -> [PASS][370] +1 other test pass [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg1-14/igt@gem_exec_suspend@basic-s4-devices@lmem0.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-15/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_mmap_offset@clear: - shard-mtlp: [ABORT][371] ([i915#10729]) -> [PASS][372] [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-mtlp-6/igt@gem_mmap_offset@clear.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-7/igt@gem_mmap_offset@clear.html * igt@gem_mmap_offset@clear@smem0: - shard-mtlp: [ABORT][373] ([i915#10029] / [i915#10729]) -> [PASS][374] [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-mtlp-6/igt@gem_mmap_offset@clear@smem0.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-7/igt@gem_mmap_offset@clear@smem0.html * igt@i915_module_load@reload-with-fault-injection: - shard-mtlp: [ABORT][375] ([i915#10131] / [i915#10887] / [i915#9820]) -> [PASS][376] [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-3/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0: - shard-dg1: [FAIL][377] ([i915#3591]) -> [PASS][378] [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html * igt@i915_selftest@live: - shard-mtlp: [ABORT][379] ([i915#12133] / [i915#12216]) -> [PASS][380] [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-mtlp-6/igt@i915_selftest@live.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-4/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - shard-mtlp: [ABORT][381] ([i915#12216]) -> [PASS][382] [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-mtlp-6/igt@i915_selftest@live@workarounds.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-4/igt@i915_selftest@live@workarounds.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-mtlp: [FAIL][383] ([i915#11808] / [i915#5956]) -> [PASS][384] +1 other test pass [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-mtlp-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-mtlp-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_color@ctm-max: - shard-dg2: [SKIP][385] ([i915#12655]) -> [PASS][386] +1 other test pass [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-2/igt@kms_color@ctm-max.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-11/igt@kms_color@ctm-max.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-snb: [SKIP][387] -> [PASS][388] +9 other tests pass [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-snb1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-snb1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset: - shard-dg2: [SKIP][389] ([i915#5354]) -> [PASS][390] +6 other tests pass [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-2/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-3/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move: - shard-dg2: [FAIL][391] ([i915#6880]) -> [PASS][392] [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html * igt@kms_plane_alpha_blend@alpha-opaque-fb: - shard-dg1: [DMESG-WARN][393] ([i915#4423]) -> [PASS][394] +1 other test pass [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg1-14/igt@kms_plane_alpha_blend@alpha-opaque-fb.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-19/igt@kms_plane_alpha_blend@alpha-opaque-fb.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5: - shard-dg2: [SKIP][395] ([i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][396] +1 other test pass [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b: - shard-dg2: [SKIP][397] ([i915#12247]) -> [PASS][398] +5 other tests pass [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d: - shard-dg2: [SKIP][399] ([i915#12247] / [i915#8152]) -> [PASS][400] [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d.html * igt@kms_plane_scaling@planes-upscale-20x20@pipe-d: - shard-dg2: [SKIP][401] ([i915#8152]) -> [PASS][402] [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20@pipe-d.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-20x20@pipe-d.html * igt@kms_pm_rpm@drm-resources-equal: - shard-dg2: [SKIP][403] ([i915#3547]) -> [PASS][404] [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-2/igt@kms_pm_rpm@drm-resources-equal.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-3/igt@kms_pm_rpm@drm-resources-equal.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: [SKIP][405] ([i915#9519]) -> [PASS][406] [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-11/igt@kms_pm_rpm@modeset-lpsp-stress.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [SKIP][407] ([i915#9519]) -> [PASS][408] +3 other tests pass [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_universal_plane@universal-plane-sanity: - shard-dg2: [SKIP][409] ([i915#9197]) -> [PASS][410] +34 other tests pass [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-2/igt@kms_universal_plane@universal-plane-sanity.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-5/igt@kms_universal_plane@universal-plane-sanity.html * igt@kms_vblank@query-idle-hang: - shard-snb: [INCOMPLETE][411] ([i915#12276]) -> [PASS][412] [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-snb6/igt@kms_vblank@query-idle-hang.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-snb7/igt@kms_vblank@query-idle-hang.html * igt@kms_vblank@query-idle-hang@pipe-a-hdmi-a-1: - shard-snb: [INCOMPLETE][413] -> [PASS][414] [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-snb6/igt@kms_vblank@query-idle-hang@pipe-a-hdmi-a-1.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-snb7/igt@kms_vblank@query-idle-hang@pipe-a-hdmi-a-1.html * igt@perf@blocking@0-rcs0: - shard-rkl: [FAIL][415] ([i915#10538]) -> [PASS][416] +1 other test pass [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-rkl-5/igt@perf@blocking@0-rcs0.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-rkl-5/igt@perf@blocking@0-rcs0.html #### Warnings #### * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg2: [SKIP][417] ([i915#9197]) -> [SKIP][418] [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-2/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-1/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-dg1: [SKIP][419] ([i915#3638] / [i915#4423]) -> [SKIP][420] ([i915#3638]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg1-14/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-16/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg2: [SKIP][421] ([i915#5190] / [i915#9197]) -> [SKIP][422] ([i915#4538] / [i915#5190]) +2 other tests skip [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs: - shard-dg2: [SKIP][423] ([i915#9197]) -> [SKIP][424] ([i915#10307] / [i915#6095]) +5 other tests skip [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-2/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-3/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg2: [SKIP][425] ([i915#9197]) -> [SKIP][426] ([i915#12313]) [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-7/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_content_protection@atomic-dpms: - shard-snb: [SKIP][427] -> [INCOMPLETE][428] ([i915#8816]) [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-snb6/igt@kms_content_protection@atomic-dpms.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-snb4/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2: [SKIP][429] ([i915#9197]) -> [SKIP][430] ([i915#3299]) [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-2/igt@kms_content_protection@dp-mst-type-1.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-6/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy: - shard-dg2: [TIMEOUT][431] ([i915#7173]) -> [SKIP][432] ([i915#7118] / [i915#9424]) [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-10/igt@kms_content_protection@legacy.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-3/igt@kms_content_protection@legacy.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-dg2: [SKIP][433] ([i915#9197]) -> [SKIP][434] ([i915#5354]) +3 other tests skip [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-2/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-7/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt@kms_dsc@dsc-basic: - shard-dg2: [SKIP][435] ([i915#9197]) -> [SKIP][436] ([i915#3555] / [i915#3840]) [435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-2/igt@kms_dsc@dsc-basic.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-11/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2: [SKIP][437] ([i915#9197]) -> [SKIP][438] ([i915#3840] / [i915#9053]) [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-2/igt@kms_dsc@dsc-with-output-formats-with-bpc.html [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_feature_discovery@chamelium: - shard-dg1: [SKIP][439] ([i915#4854]) -> [SKIP][440] ([i915#4423] / [i915#4854]) [439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg1-19/igt@kms_feature_discovery@chamelium.html [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg1-15/igt@kms_feature_discovery@chamelium.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-dg2: [SKIP][441] ([i915#3555]) -> [SKIP][442] ([i915#2672] / [i915#3555]) [441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt@kms_force_connector_basic@force-load-detect: - sh == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12007/index.html [-- Attachment #2: Type: text/html, Size: 109294 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH i-g-t] tests/xe/pmu: Add pmu tests 2024-10-30 20:52 [PATCH i-g-t] tests/xe/pmu: Add pmu tests Vinay Belgaumkar ` (3 preceding siblings ...) 2024-10-31 10:28 ` ✗ Fi.CI.IGT: " Patchwork @ 2024-11-04 6:34 ` Riana Tauro 4 siblings, 0 replies; 6+ messages in thread From: Riana Tauro @ 2024-11-04 6:34 UTC (permalink / raw) To: Vinay Belgaumkar, intel-gfx, igt-dev; +Cc: Rodrigo Vivi Hi Vinay On 10/31/2024 2:22 AM, Vinay Belgaumkar wrote: > Simple tests for validating the PMU implementation for GT C6 > residencies and frequency. > > These tests validate the kernel series which is currently in review > here - https://patchwork.freedesktop.org/series/139121/ > > Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> > Signed-off-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com> > --- > lib/igt_perf.c | 18 ++ > lib/igt_perf.h | 2 + > tests/intel/xe_pmu.c | 412 +++++++++++++++++++++++++++++++++++++++++++ > tests/meson.build | 1 + > 4 files changed, 433 insertions(+) > create mode 100644 tests/intel/xe_pmu.c > > diff --git a/lib/igt_perf.c b/lib/igt_perf.c > index 3866c6d77..88ea66ffc 100644 > --- a/lib/igt_perf.c > +++ b/lib/igt_perf.c > @@ -129,6 +129,18 @@ uint64_t igt_perf_type_id(const char *device) > return strtoull(buf, NULL, 0); > } > > +int igt_xe_perf_events_dir(int xe) > +{ > + char buf[80]; > + char path[PATH_MAX]; > + > + memset(buf, 0, sizeof(buf)); > + > + xe_perf_device(xe, buf, sizeof(buf)); > + snprintf(path, sizeof(path), "/sys/bus/event_source/devices/%s/events", buf); > + return open(path, O_RDONLY); > +} > + existing lib function igt_perf_events_dir can be modified to pass buf as parameter. The function will be common for both i915 and xe > int igt_perf_events_dir(int i915) > { > char buf[80]; > @@ -183,6 +195,12 @@ int perf_xe_open(int xe, uint64_t config) > PERF_FORMAT_TOTAL_TIME_ENABLED); > } > > +int perf_xe_open_group(int xe, uint64_t config, int group) > +{ > + return _perf_open(xe_perf_type_id(xe), config, group, > + PERF_FORMAT_TOTAL_TIME_ENABLED | PERF_FORMAT_GROUP); > +} A new function is not needed Can use igt_perf_open_group(xe_perf_type_id(xe), config, group) directly > + > int perf_i915_open(int i915, uint64_t config) > { > return _perf_open(i915_perf_type_id(i915), config, -1, > diff --git a/lib/igt_perf.h b/lib/igt_perf.h > index 3d9ba2917..8aff78d0e 100644 > --- a/lib/igt_perf.h > +++ b/lib/igt_perf.h > @@ -55,6 +55,7 @@ perf_event_open(struct perf_event_attr *attr, > > uint64_t igt_perf_type_id(const char *device); > int igt_perf_events_dir(int i915); > +int igt_xe_perf_events_dir(int xe); > int igt_perf_open(uint64_t type, uint64_t config); > int igt_perf_open_group(uint64_t type, uint64_t config, int group); > > @@ -71,5 +72,6 @@ int perf_i915_open(int i915, uint64_t config); > int perf_i915_open_group(int i915, uint64_t config, int group); > > int perf_xe_open(int xe, uint64_t config); > +int perf_xe_open_group(int xe, uint64_t config, int group); > > #endif /* I915_PERF_H */ > diff --git a/tests/intel/xe_pmu.c b/tests/intel/xe_pmu.c > new file mode 100644 > index 000000000..f5ef24757 > --- /dev/null > +++ b/tests/intel/xe_pmu.c > @@ -0,0 +1,412 @@ > +// SPDX-License-Identifier: MIT > +/* > + * Copyright © 2024 Intel Corporation > + */ > + > +/** > + * TEST: Test Xe PMU functionality > + * Category: Perf Monitoring Unit > + * Mega feature: Perf Monitoring Unit > + * Sub-category: Power Management > + * Functionality: Power/Perf > + * Test category: Functional tests > + */ > + > +#include <fcntl.h> > +#include <limits.h> > +#include <time.h> > +#include <errno.h> > +#include <dirent.h> > +#include <string.h> > +#include <sys/time.h> alphabetical > + > +#include "igt.h" > +#include "igt_device.h" > +#include "igt_power.h" > +#include "igt_sysfs.h" > +#include "igt_perf.h" > + > +#include "lib/igt_syncobj.h" > +#include "xe/xe_ioctl.h" > +#include "xe/xe_query.h" > +#include "xe/xe_spin.h" > +#include "xe/xe_util.h" > + > +#define SLEEP_DURATION 2 /* in seconds */ > +const double tolerance = 0.1; > +const unsigned long batch_duration_ns = 500e6; > +const char *no_debug_data = "\0"; > + > +#define __assert_within_epsilon(x, ref, tol_up, tol_down, debug_data) \ > + igt_assert_f((double)(x) <= (1.0 + (tol_up)) * (double)(ref) && \ > + (double)(x) >= (1.0 - (tol_down)) * (double)(ref), \ > + "'%s' != '%s' (%f not within +%.1f%%/-%.1f%% tolerance of %f)\n%s\n",\ > + #x, #ref, (double)(x), \ > + (tol_up) * 100.0, (tol_down) * 100.0, \ > + (double)(ref), debug_data) debug_data is not being used in this file. We can have the assert without this parameter > + > +#define assert_within_epsilon(x, ref, tolerance) \ > + __assert_within_epsilon(x, ref, tolerance, tolerance, no_debug_data) > + > +#define assert_within_epsilon_debug(x, ref, tolerance, debug_data) \ > + __assert_within_epsilon(x, ref, tolerance, tolerance, debug_data) > + > +struct workload { > + struct drm_xe_sync sync[2]; > + struct drm_xe_exec exec; > + uint64_t addr; > + struct xe_spin_opts spin_opts; > + struct xe_spin *spin; > + uint32_t exec_queue; > + uint32_t syncobj; > + size_t bo_size; > + uint32_t bo; > + uint32_t vm; > +}; > + > +static int open_pmu(int xe, uint64_t config) > +{ > + int fd; > + > + fd = perf_xe_open(xe, config); > + igt_skip_on(fd < 0 && errno == ENODEV); > + igt_assert(fd >= 0); > + > + return fd; > +} > + > +static int open_group(int xe, uint64_t config, int group) > +{ > + int fd; > + > + fd = perf_xe_open_group(xe, config, group); > + igt_skip_on(fd < 0 && errno == ENODEV); > + igt_assert(fd >= 0); > + > + return fd; > +} > + > +static uint64_t __pmu_read_single(int fd, uint64_t *ts) > +{ > + uint64_t data[2]; > + > + igt_assert_eq(read(fd, data, sizeof(data)), sizeof(data)); > + if (ts) > + *ts = data[1]; > + > + return data[0]; > +} > + > +static uint64_t pmu_read_multi(int fd, unsigned int num, uint64_t *val) > +{ > + uint64_t buf[2 + num]; > + unsigned int i; > + > + igt_assert_eq(read(fd, buf, sizeof(buf)), sizeof(buf)); > + > + for (i = 0; i < num; i++) > + val[i] = buf[2 + i]; > + > + return buf[1]; > +} > + > +static unsigned long read_pmu_config(int fd, char *pmu_str) > +{ > + int dir_fd; > + int ret; > + unsigned long config; > + char config_str[128]; > + > + dir_fd = igt_xe_perf_events_dir(fd); > + igt_assert(dir_fd >= 0); > + igt_assert_eq(igt_sysfs_scanf(dir_fd, pmu_str, "%127s", config_str), 1); > + ret = sscanf(config_str, "config=0x%lx", &config); > + igt_assert(ret == 1); > + > + close(dir_fd); > + > + return config; > +} > + > +/** > + * SUBTEST: c6 > + * Description: Basic residency test to validate idle residency > + * measured over a time interval is within the tolerance > + * > + * SUBTEST: frequency > + * Description: Read requested freq and actual frequency via PMU within > + * specified time interval while workload runs > + */ The description should be above the test functions or start of file > +static unsigned int measured_usleep(unsigned int usec) > +{ > + struct timespec ts = { }; > + unsigned int slept; > + > + slept = igt_nsec_elapsed(&ts); > + igt_assert(slept == 0); > + do { > + usleep(usec - slept); > + slept = igt_nsec_elapsed(&ts) / 1000; > + } while (slept < usec); > + > + return igt_nsec_elapsed(&ts) / 1000; > +} > + > +static unsigned long read_idle_residency(int fd, int gt) > +{ > + unsigned long residency = 0; > + int gt_fd; > + > + gt_fd = xe_sysfs_gt_open(fd, gt); > + igt_assert(gt_fd >= 0); > + igt_assert(igt_sysfs_scanf(gt_fd, "gtidle/idle_residency_ms", "%lu", &residency) == 1); > + close(gt_fd); > + > + return residency; > +} > + > +static void test_rc6(int xe, unsigned int gt) Should be test_c6/ test_gt_c6 as Xe uses a generic name > +{ > + int pmu_fd; > + int pmu_config; > + char event_str[100]; > + uint64_t ts[2]; > + unsigned long slept, start, end; > + uint64_t val; Inverted xmas tree pattern? > + > + sprintf(event_str, "rc6-residency-gt%d", gt); Should be c6-residency/gt-c6-residnecy as Xe uses a generic name Thanks, Riana > + pmu_config = read_pmu_config(xe, event_str); > + pmu_fd = open_pmu(xe, pmu_config); > + > + igt_assert_f(igt_wait(xe_is_gt_in_c6(xe, gt), 3000, 1), "GT %d not in C6\n", gt); > + > + /* While idle check full RC6. */ > + start = read_idle_residency(xe, gt); > + val = __pmu_read_single(pmu_fd, &ts[0]); > + slept = measured_usleep(SLEEP_DURATION * USEC_PER_SEC) / 1000; > + end = read_idle_residency(xe, gt); > + val = __pmu_read_single(pmu_fd, &ts[1]) - val; > + > + igt_debug("gt%u: slept=%lu, perf=%"PRIu64"\n", > + gt, slept, val); > + > + igt_debug("Start res: %lu, end_res: %lu", start, end); > + > + assert_within_epsilon(val, > + (ts[1] - ts[0])/1000000, > + tolerance); > + close(pmu_fd); > +} > + > +static int set_freq(int fd, int gt_id, const char *freq_name, uint32_t freq) > +{ > + int ret = -EAGAIN; > + char freq_attr[22]; > + int gt_fd; > + > + snprintf(freq_attr, sizeof(freq_attr), "freq0/%s_freq", freq_name); > + gt_fd = xe_sysfs_gt_open(fd, gt_id); > + igt_assert(gt_fd >= 0); > + > + while (ret == -EAGAIN) > + ret = igt_sysfs_printf(gt_fd, freq_attr, "%u", freq); > + > + close(gt_fd); > + return ret; > +} > + > +static uint32_t get_freq(int fd, int gt_id, const char *freq_name) > +{ > + uint32_t freq; > + int err = -EAGAIN; > + char freq_attr[22]; > + int gt_fd; > + > + snprintf(freq_attr, sizeof(freq_attr), "freq0/%s_freq", freq_name); > + gt_fd = xe_sysfs_gt_open(fd, gt_id); > + igt_assert(gt_fd >= 0); > + > + while (err == -EAGAIN) > + err = igt_sysfs_scanf(gt_fd, freq_attr, "%u", &freq); > + > + igt_debug("gt%d: %s freq %u\n", gt_id, freq_name, freq); > + > + close(gt_fd); > + return freq; > +} > + > +static void run_workload(int fd, int gt, struct drm_xe_engine_class_instance *eci, > + struct workload *wl) > +{ > + struct drm_xe_sync sync[2] = { > + { .type = DRM_XE_SYNC_TYPE_SYNCOBJ, .flags = DRM_XE_SYNC_FLAG_SIGNAL, }, > + { .type = DRM_XE_SYNC_TYPE_SYNCOBJ, .flags = DRM_XE_SYNC_FLAG_SIGNAL, }, > + }; > + struct drm_xe_exec exec = { > + .num_batch_buffer = 1, > + .num_syncs = 2, > + .syncs = to_user_pointer(sync), > + }; > + struct xe_spin_opts spin_opts = { > + .addr = 0x1a0000, > + .preempt = false > + }; > + struct xe_spin *spin; > + > + wl->addr = 0x1a0000; > + > + wl->vm = xe_vm_create(fd, 0, 0); > + wl->bo_size = sizeof(*spin); > + wl->bo_size = xe_bb_size(fd, wl->bo_size); > + > + wl->bo = xe_bo_create(fd, wl->vm, wl->bo_size, > + vram_if_possible(fd, eci->gt_id), 0); > + wl->spin = xe_bo_map(fd, wl->bo, wl->bo_size); > + > + wl->exec_queue = xe_exec_queue_create(fd, wl->vm, eci, 0); > + wl->syncobj = syncobj_create(fd, 0); > + > + sync[0].handle = syncobj_create(fd, 0); > + xe_vm_bind_async(fd, wl->vm, 0, wl->bo, 0, wl->addr, wl->bo_size, sync, 1); > + > + xe_spin_init(wl->spin, &spin_opts); > + > + sync[0].flags &= ~DRM_XE_SYNC_FLAG_SIGNAL; > + sync[1].flags |= DRM_XE_SYNC_FLAG_SIGNAL; > + sync[1].handle = wl->syncobj; > + > + exec.exec_queue_id = wl->exec_queue; > + exec.address = wl->addr; > + xe_exec(fd, &exec); > + > + xe_spin_wait_started(wl->spin); > + usleep(50000); > + igt_assert(!syncobj_wait(fd, &wl->syncobj, 1, 1, 0, NULL)); > + > + igt_info("Running on GT %d Engine %s:%d\n", eci->gt_id, > + xe_engine_class_string(eci->engine_class), eci->engine_instance); > + > + /* Save it for the end_workload function */ > + wl->sync[0] = sync[0]; > + wl->sync[1] = sync[1]; > +} > + > +static void end_workload(int fd, struct workload *wl) > +{ > + xe_spin_end(wl->spin); > + > + igt_assert(syncobj_wait(fd, &wl->syncobj, 1, INT64_MAX, 0, NULL)); > + igt_assert(syncobj_wait(fd, &wl->sync[0].handle, 1, INT64_MAX, 0, NULL)); > + > + wl->sync[0].flags |= DRM_XE_SYNC_FLAG_SIGNAL; > + xe_vm_unbind_async(fd, wl->vm, 0, 0, wl->addr, wl->bo_size, wl->sync, 1); > + igt_assert(syncobj_wait(fd, &wl->sync[0].handle, 1, INT64_MAX, 0, NULL)); > + > + syncobj_destroy(fd, wl->sync[0].handle); > + syncobj_destroy(fd, wl->syncobj); > + xe_exec_queue_destroy(fd, wl->exec_queue); > + > + munmap(wl->spin, wl->bo_size); > + gem_close(fd, wl->bo); > + xe_vm_destroy(fd, wl->vm); > +} > + > +static void test_frequency(int fd, int gt, struct drm_xe_engine_class_instance *eci) > +{ > + struct workload wl; > + > + uint64_t val[2], start[2], slept; > + double min[2], max[2]; > + int pmu_fd[2]; > + uint32_t orig_min = get_freq(fd, gt, "min"); > + uint32_t orig_max = get_freq(fd, gt, "max"); > + unsigned long config_rq_freq, config_act_freq; > + char event_str[100]; > + > + > + sprintf(event_str, "requested-frequency-gt%d", gt); > + config_rq_freq = read_pmu_config(fd, event_str); > + pmu_fd[0] = open_group(fd, config_rq_freq, -1); > + > + memset(event_str, 0, 100); > + sprintf(event_str, "actual-frequency-gt%d", gt); > + config_act_freq = read_pmu_config(fd, event_str); > + pmu_fd[1] = open_group(fd, config_act_freq, pmu_fd[0]); > + > + run_workload(fd, gt, eci, &wl); > + /* > + * Set GPU to min frequency and read PMU counters. > + */ > + igt_assert(set_freq(fd, gt, "max", orig_min) > 0); > + igt_assert(get_freq(fd, gt, "max") == orig_min); > + > + slept = pmu_read_multi(pmu_fd[0], 2, start); > + measured_usleep(batch_duration_ns / 1000); > + slept = pmu_read_multi(pmu_fd[0], 2, val) - slept; > + > + min[0] = 1e9*(val[0] - start[0]) / slept; > + min[1] = 1e9*(val[1] - start[1]) / slept; > + > + /* > + * Set GPU to max frequency and read PMU counters. > + */ > + igt_assert(set_freq(fd, gt, "max", orig_max) > 0); > + igt_assert(get_freq(fd, gt, "max") == orig_max); > + igt_assert(set_freq(fd, gt, "min", orig_max) > 0); > + igt_assert(get_freq(fd, gt, "min") == orig_max); > + > + slept = pmu_read_multi(pmu_fd[0], 2, start); > + measured_usleep(batch_duration_ns / 1000); > + slept = pmu_read_multi(pmu_fd[0], 2, val) - slept; > + > + max[0] = 1e9*(val[0] - start[0]) / slept; > + max[1] = 1e9*(val[1] - start[1]) / slept; > + > + /* > + * Restore min/max. > + */ > + igt_assert(set_freq(fd, gt, "min", orig_min) > 0); > + igt_assert(get_freq(fd, gt, "min") == orig_min); > + > + igt_info("Minimum frequency: requested %.1f, actual %.1f\n", > + min[0], min[1]); > + igt_info("Maximum frequency: requested %.1f, actual %.1f\n", > + max[0], max[1]); > + > + close(pmu_fd[0]); > + close(pmu_fd[1]); > + > + end_workload(fd, &wl); > + > + assert_within_epsilon(min[0], orig_min, tolerance); > + /* > + * On thermally throttled devices we cannot be sure maximum frequency > + * can be reached so use larger tolerance downards. > + */ > + __assert_within_epsilon(max[0], orig_max, tolerance, 0.15f, no_debug_data); > +} > + > +igt_main > +{ > + int fd, gt; > + struct drm_xe_engine_class_instance *hwe; > + > + igt_fixture { > + fd = drm_open_driver(DRIVER_XE); > + igt_require(!IS_PONTEVECCHIO(xe_dev_id(fd))); > + } > + > + igt_describe("Validate PMU C6 residency counters"); > + igt_subtest("c6") > + xe_for_each_gt(fd, gt) > + test_rc6(fd, gt); > + > + igt_describe("Validate PMU GT freq measured over a time interval is within the tolerance"); > + igt_subtest("frequency") > + xe_for_each_engine(fd, hwe) > + test_frequency(fd, hwe->gt_id, hwe); > + > + igt_fixture { > + close(fd); > + } > +} > diff --git a/tests/meson.build b/tests/meson.build > index 34b87b125..dc84ef748 100644 > --- a/tests/meson.build > +++ b/tests/meson.build > @@ -308,6 +308,7 @@ intel_xe_progs = [ > 'xe_pat', > 'xe_peer2peer', > 'xe_pm', > + 'xe_pmu', > 'xe_pm_residency', > 'xe_prime_self_import', > 'xe_query', ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-11-04 6:35 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-10-30 20:52 [PATCH i-g-t] tests/xe/pmu: Add pmu tests Vinay Belgaumkar 2024-10-30 23:10 ` ✓ CI.xeBAT: success for " Patchwork 2024-10-30 23:28 ` ✓ Fi.CI.BAT: " Patchwork 2024-10-31 0:56 ` ✗ CI.xeFULL: failure " Patchwork 2024-10-31 10:28 ` ✗ Fi.CI.IGT: " Patchwork 2024-11-04 6:34 ` [PATCH i-g-t] " Riana Tauro
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox