* [PATCH 0/4] Update some OA tests
@ 2026-07-17 21:00 Umesh Nerlige Ramappa
2026-07-17 21:00 ` [PATCH 1/4] tests/intel/xe_oa: Allow disabling load helper from command line Umesh Nerlige Ramappa
` (7 more replies)
0 siblings, 8 replies; 15+ messages in thread
From: Umesh Nerlige Ramappa @ 2026-07-17 21:00 UTC (permalink / raw)
To: igt-dev, Ashutosh Dixit
Modify some OA tests to reduce the scope of the test to specific area
and make them more robust.
Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
Umesh Nerlige Ramappa (4):
tests/intel/xe_oa: Allow disabling load helper from command line
tests/intel/xe_oa: Do not assume OA buffer is prefilled with zeroes
tests/intel/xe_oa: Enable capture just prior to reading OA data
tests/intel/xe_oa: Cleanup blocking and polling tests
tests/intel/xe_oa.c | 220 ++++++++++++++------------------------------
1 file changed, 67 insertions(+), 153 deletions(-)
--
2.51.0
^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH 1/4] tests/intel/xe_oa: Allow disabling load helper from command line
2026-07-17 21:00 [PATCH 0/4] Update some OA tests Umesh Nerlige Ramappa
@ 2026-07-17 21:00 ` Umesh Nerlige Ramappa
2026-07-20 19:37 ` Dixit, Ashutosh
2026-07-17 21:00 ` [PATCH 2/4] tests/intel/xe_oa: Do not assume OA buffer is prefilled with zeroes Umesh Nerlige Ramappa
` (6 subsequent siblings)
7 siblings, 1 reply; 15+ messages in thread
From: Umesh Nerlige Ramappa @ 2026-07-17 21:00 UTC (permalink / raw)
To: igt-dev, Ashutosh Dixit
In some test runs, it is useful to assess behavior with and without load
helper. Add a command line switch to disable the load helper if needed.
Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
---
tests/intel/xe_oa.c | 29 +++++++++++++++++++++++++++--
1 file changed, 27 insertions(+), 2 deletions(-)
diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c
index 68c7537d3888..e7e4f5601b61 100644
--- a/tests/intel/xe_oa.c
+++ b/tests/intel/xe_oa.c
@@ -1798,10 +1798,14 @@ static struct load_helper {
bool exit;
struct igt_helper_process igt_proc;
struct intel_buf src, dst;
+ bool disabled;
} lh = { 0, };
static void load_helper_signal_handler(int sig)
{
+ if (lh.disabled)
+ return;
+
if (sig == SIGUSR2)
lh.load = lh.load == LOW ? HIGH : LOW;
else
@@ -1812,6 +1816,9 @@ static void load_helper_set_load(enum load load)
{
igt_assert(lh.igt_proc.running);
+ if (lh.disabled)
+ return;
+
if (lh.load == load)
return;
@@ -1821,6 +1828,9 @@ static void load_helper_set_load(enum load load)
static void load_helper_run(enum load load)
{
+ if (lh.disabled)
+ return;
+
if (!render_copy)
return;
@@ -1856,6 +1866,9 @@ static void load_helper_run(enum load load)
static void load_helper_stop(void)
{
+ if (lh.disabled)
+ return;
+
if (!render_copy)
return;
@@ -1865,6 +1878,9 @@ static void load_helper_stop(void)
static void load_helper_init(void)
{
+ if (lh.disabled)
+ return;
+
if (!render_copy) {
igt_info("Running test without render_copy\n");
return;
@@ -1884,6 +1900,9 @@ static void load_helper_init(void)
static void load_helper_fini(void)
{
+ if (lh.disabled)
+ return;
+
if (!render_copy)
return;
@@ -4981,6 +5000,10 @@ static int opt_handler(int opt, int opt_index, void *data)
oa_trace = true;
igt_debug("Trace enabled\n");
break;
+ case 'd':
+ lh.disabled = true;
+ igt_info("Load helper disabled\n");
+ break;
default:
return IGT_OPT_HANDLER_ERROR;
}
@@ -4989,15 +5012,17 @@ static int opt_handler(int opt, int opt_index, void *data)
}
static const char *help_str = " --trace | -t\t\tEnable ftrace\n"
- " --trace_buf_size_mb | -b\t\tSet ftrace buffer size in MB (default = 1, min = 1, max = 20)\n";
+ " --trace_buf_size_mb | -b\t\tSet ftrace buffer size in MB (default = 1, min = 1, max = 20)\n"
+ " --disable-load-helper | -d\t\tDisable load helper\n";
static struct option long_options[] = {
{"trace", 0, 0, 't'},
{"trace_buf_size_mb", 0, 0, 'b'},
+ {"disable-load-helper", 0, 0, 'd'},
{ NULL, 0, 0, 0 }
};
-int igt_main_args("b:t", long_options, help_str, opt_handler, NULL)
+int igt_main_args("b:td", long_options, help_str, opt_handler, NULL)
{
const struct sync_section {
const char *name;
--
2.51.0
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH 2/4] tests/intel/xe_oa: Do not assume OA buffer is prefilled with zeroes
2026-07-17 21:00 [PATCH 0/4] Update some OA tests Umesh Nerlige Ramappa
2026-07-17 21:00 ` [PATCH 1/4] tests/intel/xe_oa: Allow disabling load helper from command line Umesh Nerlige Ramappa
@ 2026-07-17 21:00 ` Umesh Nerlige Ramappa
2026-07-20 19:42 ` Dixit, Ashutosh
2026-07-17 21:00 ` [PATCH 3/4] tests/intel/xe_oa: Enable capture just prior to reading OA data Umesh Nerlige Ramappa
` (5 subsequent siblings)
7 siblings, 1 reply; 15+ messages in thread
From: Umesh Nerlige Ramappa @ 2026-07-17 21:00 UTC (permalink / raw)
To: igt-dev, Ashutosh Dixit
The tail address test assumes that the OA buffer is preset to zeroes. Modify
logic to be independent of this assumption.
Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
---
tests/intel/xe_oa.c | 29 ++++++++++++++++++-----------
1 file changed, 18 insertions(+), 11 deletions(-)
diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c
index e7e4f5601b61..98f00d377a86 100644
--- a/tests/intel/xe_oa.c
+++ b/tests/intel/xe_oa.c
@@ -4634,7 +4634,7 @@ static void closed_fd_and_unmapped_access(const struct drm_xe_oa_unit *oau)
* format size is not a power of 2. This means that the last report will not be
* broken down across the OA buffer end. Instead it will be written to the
* beginning of the OA buffer. We will check the end of the buffer to ensure it
- * has zeroes in it.
+ * has not been written into.
*/
static void
test_tail_address_wrap(const struct drm_xe_oa_unit *oau, size_t oa_buffer_size)
@@ -4649,6 +4649,7 @@ test_tail_address_wrap(const struct drm_xe_oa_unit *oau, size_t oa_buffer_size)
DRM_XE_OA_PROPERTY_OA_METRIC_SET, test_set->perf_oa_metrics_set,
DRM_XE_OA_PROPERTY_OA_FORMAT, __ff(fmt),
DRM_XE_OA_PROPERTY_OA_PERIOD_EXPONENT, exponent,
+ DRM_XE_OA_PROPERTY_OA_DISABLED, true,
DRM_XE_OA_PROPERTY_OA_BUFFER_SIZE, buffer_size,
};
struct intel_xe_oa_open_prop param = {
@@ -4656,25 +4657,31 @@ test_tail_address_wrap(const struct drm_xe_oa_unit *oau, size_t oa_buffer_size)
.properties_ptr = to_user_pointer(properties),
};
u32 fmt_size = get_oa_format(fmt).size;
- u32 zero_size = buffer_size % fmt_size;
- u32 *zero_area, *buffer_end, *buffer_start;
+ u32 area_size = buffer_size % fmt_size;
+ u32 *area, *buffer_end, *buffer_start;
+ u32 *content = malloc(area_size);
- igt_require(zero_size);
+ igt_require(area_size);
+ igt_require(content);
stream_fd = __perf_open(drm_fd, ¶m, false);
set_fd_flags(stream_fd, O_CLOEXEC);
-
- wait_for_oa_buffer_overflow(stream_fd, 100);
-
buffer_start = mmap(0, buffer_size, PROT_READ, MAP_PRIVATE, stream_fd, 0);
igt_assert(buffer_start);
- zero_area = buffer_start + (buffer_size - zero_size) / 4;
+ area = buffer_start + (buffer_size - area_size) / 4;
buffer_end = buffer_start + buffer_size / 4;
- dump_report(zero_area, zero_size / 4, "zero_area");
- while (zero_area < buffer_end)
- igt_assert_eq(*zero_area++, 0);
+ memcpy(content, area, area_size);
+ dump_report(area, area_size / 4, "contents before");
+
+ do_ioctl(stream_fd, DRM_XE_OBSERVATION_IOCTL_ENABLE, 0);
+ wait_for_oa_buffer_overflow(stream_fd, 100);
+ do_ioctl(stream_fd, DRM_XE_OBSERVATION_IOCTL_DISABLE, 0);
+
+ dump_report(area, area_size / 4, "contents after");
+ while (area < buffer_end)
+ igt_assert_eq(*area++, *content++);
munmap(buffer_start, buffer_size);
--
2.51.0
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH 3/4] tests/intel/xe_oa: Enable capture just prior to reading OA data
2026-07-17 21:00 [PATCH 0/4] Update some OA tests Umesh Nerlige Ramappa
2026-07-17 21:00 ` [PATCH 1/4] tests/intel/xe_oa: Allow disabling load helper from command line Umesh Nerlige Ramappa
2026-07-17 21:00 ` [PATCH 2/4] tests/intel/xe_oa: Do not assume OA buffer is prefilled with zeroes Umesh Nerlige Ramappa
@ 2026-07-17 21:00 ` Umesh Nerlige Ramappa
2026-07-20 20:22 ` Dixit, Ashutosh
2026-07-17 21:00 ` [PATCH 4/4] tests/intel/xe_oa: Cleanup blocking and polling tests Umesh Nerlige Ramappa
` (4 subsequent siblings)
7 siblings, 1 reply; 15+ messages in thread
From: Umesh Nerlige Ramappa @ 2026-07-17 21:00 UTC (permalink / raw)
To: igt-dev, Ashutosh Dixit
When running the test in a loop, sometimes the buffer overflow error was
seen with smaller buffer sizes. To make the non-zero-reason test more
robust, enable capture just before reading the data and surround the read with
the load helper calls.
Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
---
tests/intel/xe_oa.c | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c
index 98f00d377a86..4f652b187bae 100644
--- a/tests/intel/xe_oa.c
+++ b/tests/intel/xe_oa.c
@@ -2678,6 +2678,7 @@ test_non_zero_reason(const struct drm_xe_oa_unit *oau, size_t oa_buffer_size)
DRM_XE_OA_PROPERTY_OA_METRIC_SET, test_set->perf_oa_metrics_set,
DRM_XE_OA_PROPERTY_OA_FORMAT, __ff(fmt),
DRM_XE_OA_PROPERTY_OA_PERIOD_EXPONENT, oa_exponent,
+ DRM_XE_OA_PROPERTY_OA_DISABLED, true,
DRM_XE_OA_PROPERTY_OA_BUFFER_SIZE, oa_buffer_size ?: buffer_fill_size
};
struct intel_xe_oa_open_prop param = {
@@ -2705,16 +2706,16 @@ test_non_zero_reason(const struct drm_xe_oa_unit *oau, size_t oa_buffer_size)
igt_assert(buf);
igt_debug("Ready to read about %u bytes\n", buf_size);
-
- load_helper_init();
- load_helper_run(HIGH);
-
if (!oa_buffer_size)
param.num_properties = param.num_properties - 1;
stream_fd = __perf_open(drm_fd, ¶m, true /* prevent_pm */);
set_fd_flags(stream_fd, O_CLOEXEC);
+ load_helper_init();
+ load_helper_run(HIGH);
+
+ do_ioctl(stream_fd, DRM_XE_OBSERVATION_IOCTL_ENABLE, 0);
while (total_len < buf_size &&
((len = read(stream_fd, &buf[total_len], buf_size - total_len)) > 0 ||
(len == -1 && (errno == EINTR || errno == EIO)))) {
--
2.51.0
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH 4/4] tests/intel/xe_oa: Cleanup blocking and polling tests
2026-07-17 21:00 [PATCH 0/4] Update some OA tests Umesh Nerlige Ramappa
` (2 preceding siblings ...)
2026-07-17 21:00 ` [PATCH 3/4] tests/intel/xe_oa: Enable capture just prior to reading OA data Umesh Nerlige Ramappa
@ 2026-07-17 21:00 ` Umesh Nerlige Ramappa
2026-07-20 21:08 ` Dixit, Ashutosh
2026-07-17 22:49 ` ✓ Xe.CI.BAT: success for Update some OA tests Patchwork
` (3 subsequent siblings)
7 siblings, 1 reply; 15+ messages in thread
From: Umesh Nerlige Ramappa @ 2026-07-17 21:00 UTC (permalink / raw)
To: igt-dev, Ashutosh Dixit
1) Drop set_kernel_timer since we don't support it anymore.
2) When running all tests, a failure in blocking/polling tests breaks
all subsequent tests. Move __perf_close before the asserts.
3) We cannot guarantee latency when reading OA reports as there are no
guarantees how long it takes for reports to land in memory w.r.t
any running workloads. Since OA reports are mostly used for
post-processing, drop the latency checks in these tests.
Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
---
tests/intel/xe_oa.c | 153 +++++---------------------------------------
1 file changed, 17 insertions(+), 136 deletions(-)
diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c
index 4f652b187bae..9ebb18690ec7 100644
--- a/tests/intel/xe_oa.c
+++ b/tests/intel/xe_oa.c
@@ -2127,8 +2127,6 @@ get_time(void)
* kernelspace.
*/
static void test_blocking(uint64_t requested_oa_period,
- bool set_kernel_hrtimer,
- uint64_t kernel_hrtimer,
const struct drm_xe_oa_unit *oau)
{
int oa_exponent = max_oa_exponent_for_period_lte(requested_oa_period);
@@ -2142,24 +2140,9 @@ static void test_blocking(uint64_t requested_oa_period,
int64_t user_ns, kernel_ns;
int64_t tick_ns = 1000000000 / sysconf(_SC_CLK_TCK);
int64_t test_duration_ns = tick_ns * 100;
- int max_iterations = (test_duration_ns / oa_period) + 2;
- int n_extra_iterations = 0;
int perf_fd;
-
- /* It's a bit tricky to put a lower limit here, but we expect a
- * relatively low latency for seeing reports, while we don't currently
- * give any control over this in the api.
- *
- * We assume a maximum latency of 6 millisecond to deliver a POLLIN and
- * read() after a new sample is written (46ms per iteration) considering
- * the knowledge that that the driver uses a 200Hz hrtimer (5ms period)
- * to check for data and giving some time to read().
- */
- int min_iterations = (test_duration_ns / (oa_period + kernel_hrtimer + kernel_hrtimer / 5));
int64_t start, end;
- int n = 0;
struct intel_xe_perf_metric_set *test_set = oa_unit_metric_set(oau);
- size_t format_size = get_oa_format(test_set->perf_oa_format).size;
ADD_PROPS(props, idx, SAMPLE_OA, true);
ADD_PROPS(props, idx, OA_METRIC_SET, test_set->perf_oa_metrics_set);
@@ -2174,13 +2157,8 @@ static void test_blocking(uint64_t requested_oa_period,
perf_fd = __perf_open(drm_fd, ¶m, true /* prevent_pm */);
set_fd_flags(perf_fd, O_CLOEXEC);
- times(&start_times);
-
- igt_debug("tick length = %dns, test duration = %"PRIu64"ns, min iter. = %d,"
- " estimated max iter. = %d, oa_period = %s\n",
- (int)tick_ns, test_duration_ns,
- min_iterations, max_iterations,
- pretty_print_oa_period(oa_period));
+ igt_debug("tick length = %dns, test duration = %"PRIu64"ns, oa_period = %s\n",
+ (int)tick_ns, test_duration_ns, pretty_print_oa_period(oa_period));
/* In the loop we perform blocking polls while the HW is sampling at
* ~25Hz, with the expectation that we spend most of our time blocked
@@ -2204,44 +2182,26 @@ static void test_blocking(uint64_t requested_oa_period,
* the error delta.
*/
start = get_time();
+ times(&start_times);
do_ioctl(perf_fd, DRM_XE_OBSERVATION_IOCTL_ENABLE, 0);
- for (/* nop */; ((end = get_time()) - start) < test_duration_ns; /* nop */) {
- bool timer_report_read = false;
- bool non_timer_report_read = false;
+ while (((end = get_time()) - start) < test_duration_ns) {
int ret;
while ((ret = read(perf_fd, buf, sizeof(buf))) < 0 &&
(errno == EINTR || errno == EIO))
;
igt_assert_lt(0, ret);
-
- for (int offset = 0; offset < ret; offset += format_size) {
- uint32_t *report = (void *)(buf + offset);
-
- if (oa_report_is_periodic(report))
- timer_report_read = true;
- else
- non_timer_report_read = true;
- }
-
- if (non_timer_report_read && !timer_report_read)
- n_extra_iterations++;
-
- n++;
}
-
times(&end_times);
+ __perf_close(perf_fd);
+
/* Using nanosecond units is fairly silly here, given the tick in-
* precision - ah well, it's consistent with the get_time() units.
*/
user_ns = (end_times.tms_utime - start_times.tms_utime) * tick_ns;
kernel_ns = (end_times.tms_stime - start_times.tms_stime) * tick_ns;
- igt_debug("%d blocking reads during test with %"PRIu64" Hz OA sampling (expect no more than %d)\n",
- n, NSEC_PER_SEC / oa_period, max_iterations);
- igt_debug("%d extra iterations seen, not related to periodic sampling (e.g. context switches)\n",
- n_extra_iterations);
igt_debug("time in userspace = %"PRIu64"ns (+-%dns) (start utime = %d, end = %d)\n",
user_ns, (int)tick_ns,
(int)start_times.tms_utime, (int)end_times.tms_utime);
@@ -2249,20 +2209,7 @@ static void test_blocking(uint64_t requested_oa_period,
kernel_ns, (int)tick_ns,
(int)start_times.tms_stime, (int)end_times.tms_stime);
- /* With completely broken blocking (but also not returning an error) we
- * could end up with an open loop,
- */
- igt_assert_lte(n, (max_iterations + n_extra_iterations));
-
- /* Make sure the driver is reporting new samples with a reasonably
- * low latency...
- */
- igt_assert_lt((min_iterations + n_extra_iterations), n);
-
- if (!set_kernel_hrtimer)
- igt_assert(kernel_ns <= (test_duration_ns / 100ull));
-
- __perf_close(perf_fd);
+ igt_assert(kernel_ns <= (test_duration_ns / 100ull));
}
/**
@@ -2270,8 +2217,6 @@ static void test_blocking(uint64_t requested_oa_period,
* Description: Test polled reads
*/
static void test_polling(uint64_t requested_oa_period,
- bool set_kernel_hrtimer,
- uint64_t kernel_hrtimer,
const struct drm_xe_oa_unit *oau)
{
int oa_exponent = max_oa_exponent_for_period_lte(requested_oa_period);
@@ -2285,25 +2230,8 @@ static void test_polling(uint64_t requested_oa_period,
int64_t user_ns, kernel_ns;
int64_t tick_ns = 1000000000 / sysconf(_SC_CLK_TCK);
int64_t test_duration_ns = tick_ns * 100;
-
- int max_iterations = (test_duration_ns / oa_period) + 2;
- int n_extra_iterations = 0;
-
- /* It's a bit tricky to put a lower limit here, but we expect a
- * relatively low latency for seeing reports.
- *
- * We assume a maximum latency of kernel_hrtimer + some margin
- * to deliver a POLLIN and read() after a new sample is
- * written (40ms + hrtimer + margin per iteration) considering
- * the knowledge that that the driver uses a 200Hz hrtimer
- * (5ms period) to check for data and giving some time to
- * read().
- */
- int min_iterations = (test_duration_ns / (oa_period + (kernel_hrtimer + kernel_hrtimer / 5)));
int64_t start, end;
- int n = 0;
struct intel_xe_perf_metric_set *test_set = oa_unit_metric_set(oau);
- size_t format_size = get_oa_format(test_set->perf_oa_format).size;
ADD_PROPS(props, idx, SAMPLE_OA, true);
ADD_PROPS(props, idx, OA_METRIC_SET, test_set->perf_oa_metrics_set);
@@ -2318,12 +2246,9 @@ static void test_polling(uint64_t requested_oa_period,
stream_fd = __perf_open(drm_fd, ¶m, true /* prevent_pm */);
set_fd_flags(stream_fd, O_CLOEXEC | O_NONBLOCK);
- times(&start_times);
-
igt_debug("tick length = %dns, oa period = %s, "
- "test duration = %"PRIu64"ns, min iter. = %d, max iter. = %d\n",
- (int)tick_ns, pretty_print_oa_period(oa_period), test_duration_ns,
- min_iterations, max_iterations);
+ "test duration = %"PRIu64"ns\n",
+ (int)tick_ns, pretty_print_oa_period(oa_period), test_duration_ns);
/* In the loop we perform blocking polls while the HW is sampling at
* ~25Hz, with the expectation that we spend most of our time blocked
@@ -2347,11 +2272,10 @@ static void test_polling(uint64_t requested_oa_period,
* the error delta.
*/
start = get_time();
+ times(&start_times);
do_ioctl(stream_fd, DRM_XE_OBSERVATION_IOCTL_ENABLE, 0);
- for (/* nop */; ((end = get_time()) - start) < test_duration_ns; /* nop */) {
+ while (((end = get_time()) - start) < test_duration_ns) {
struct pollfd pollfd = { .fd = stream_fd, .events = POLLIN };
- bool timer_report_read = false;
- bool non_timer_report_read = false;
int ret;
while ((ret = poll(&pollfd, 1, -1)) < 0 && errno == EINTR)
@@ -2379,26 +2303,6 @@ static void test_polling(uint64_t requested_oa_period,
igt_debug("Unexpected error when reading after poll = %d\n", errno);
igt_assert_neq(ret, -1);
- /* For Haswell reports don't contain a well defined reason
- * field we so assume all reports to be 'periodic'. For gen8+
- * we want to to consider that the HW automatically writes some
- * non periodic reports (e.g. on context switch) which might
- * lead to more successful read()s than expected due to
- * periodic sampling and we don't want these extra reads to
- * cause the test to fail...
- */
- for (int offset = 0; offset < ret; offset += format_size) {
- uint32_t *report = (void *)(buf + offset);
-
- if (oa_report_is_periodic(report))
- timer_report_read = true;
- else
- non_timer_report_read = true;
- }
-
- if (non_timer_report_read && !timer_report_read)
- n_extra_iterations++;
-
/* At this point, after consuming pending reports (and hoping
* the scheduler hasn't stopped us for too long) we now expect
* EAGAIN on read. While this works most of the times, there are
@@ -2416,22 +2320,18 @@ static void test_polling(uint64_t requested_oa_period,
igt_assert_eq(ret, -1);
igt_assert_eq(errno, EAGAIN);
}
-
- n++;
}
times(&end_times);
+ __perf_close(stream_fd);
+
/* Using nanosecond units is fairly silly here, given the tick in-
* precision - ah well, it's consistent with the get_time() units.
*/
user_ns = (end_times.tms_utime - start_times.tms_utime) * tick_ns;
kernel_ns = (end_times.tms_stime - start_times.tms_stime) * tick_ns;
- igt_debug("%d non-blocking reads during test with %"PRIu64" Hz OA sampling (expect no more than %d)\n",
- n, NSEC_PER_SEC / oa_period, max_iterations);
- igt_debug("%d extra iterations seen, not related to periodic sampling (e.g. context switches)\n",
- n_extra_iterations);
igt_debug("time in userspace = %"PRIu64"ns (+-%dns) (start utime = %d, end = %d)\n",
user_ns, (int)tick_ns,
(int)start_times.tms_utime, (int)end_times.tms_utime);
@@ -2439,20 +2339,7 @@ static void test_polling(uint64_t requested_oa_period,
kernel_ns, (int)tick_ns,
(int)start_times.tms_stime, (int)end_times.tms_stime);
- /* With completely broken blocking while polling (but still somehow
- * reporting a POLLIN event) we could end up with an open loop.
- */
- igt_assert_lte(n, (max_iterations + n_extra_iterations));
-
- /* Make sure the driver is reporting new samples with a reasonably
- * low latency...
- */
- igt_assert_lt((min_iterations + n_extra_iterations), n);
-
- if (!set_kernel_hrtimer)
- igt_assert(kernel_ns <= (test_duration_ns / 100ull));
-
- __perf_close(stream_fd);
+ igt_assert(kernel_ns <= (test_duration_ns / 100ull));
}
/**
@@ -4419,7 +4306,7 @@ test_oa_unit_concurrent_oa_buffer_read(void)
if (oau->oa_unit_type != DRM_XE_OA_UNIT_TYPE_OAG)
exit(0);
- test_blocking(40 * 1000 * 1000, false, 5 * 1000 * 1000, oau);
+ test_blocking(40 * 1000 * 1000, oau);
}
igt_waitchildren();
}
@@ -5163,19 +5050,13 @@ int igt_main_args("b:td", long_options, help_str, opt_handler, NULL)
igt_subtest_with_dynamic("blocking") {
igt_require(!igt_run_in_simulation());
__for_oa_unit_by_type(DRM_XE_OA_UNIT_TYPE_OAG)
- test_blocking(40 * 1000 * 1000 /* 40ms oa period */,
- false /* set_kernel_hrtimer */,
- 5 * 1000 * 1000 /* default 5ms/200Hz hrtimer */,
- oau);
+ test_blocking(40 * 1000 * 1000, oau);
}
igt_subtest_with_dynamic("polling") {
igt_require(!igt_run_in_simulation());
__for_oa_unit_by_type(DRM_XE_OA_UNIT_TYPE_OAG)
- test_polling(40 * 1000 * 1000 /* 40ms oa period */,
- false /* set_kernel_hrtimer */,
- 5 * 1000 * 1000 /* default 5ms/200Hz hrtimer */,
- oau);
+ test_polling(40 * 1000 * 1000, oau);
}
igt_subtest("polling-small-buf")
--
2.51.0
^ permalink raw reply related [flat|nested] 15+ messages in thread
* ✓ Xe.CI.BAT: success for Update some OA tests
2026-07-17 21:00 [PATCH 0/4] Update some OA tests Umesh Nerlige Ramappa
` (3 preceding siblings ...)
2026-07-17 21:00 ` [PATCH 4/4] tests/intel/xe_oa: Cleanup blocking and polling tests Umesh Nerlige Ramappa
@ 2026-07-17 22:49 ` Patchwork
2026-07-17 23:08 ` ✓ i915.CI.BAT: " Patchwork
` (2 subsequent siblings)
7 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2026-07-17 22:49 UTC (permalink / raw)
To: Umesh Nerlige Ramappa; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 4982 bytes --]
== Series Details ==
Series: Update some OA tests
URL : https://patchwork.freedesktop.org/series/170661/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_9014_BAT -> XEIGTPW_15558_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 13)
------------------------------
Additional (1): bat-bmg-2
Known issues
------------
Here are the changes found in XEIGTPW_15558_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@write:
- bat-bmg-2: NOTRUN -> [SKIP][1] ([Intel XE#2134]) +4 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/bat-bmg-2/igt@fbdev@write.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-bmg-2: NOTRUN -> [SKIP][2] ([Intel XE#2233])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/bat-bmg-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
- bat-bmg-2: NOTRUN -> [SKIP][3] ([Intel XE#2489] / [Intel XE#3419]) +13 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/bat-bmg-2/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
* igt@kms_flip@basic-flip-vs-modeset:
- bat-bmg-2: NOTRUN -> [SKIP][4] ([Intel XE#2482]) +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/bat-bmg-2/igt@kms_flip@basic-flip-vs-modeset.html
* igt@kms_frontbuffer_tracking@basic:
- bat-bmg-2: NOTRUN -> [SKIP][5] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/bat-bmg-2/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_psr@psr-sprite-plane-onoff:
- bat-bmg-2: NOTRUN -> [SKIP][6] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/bat-bmg-2/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@xe_exec_multi_queue@priority:
- bat-bmg-2: NOTRUN -> [SKIP][7] ([Intel XE#8364]) +13 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/bat-bmg-2/igt@xe_exec_multi_queue@priority.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- bat-bmg-2: NOTRUN -> [SKIP][8] ([Intel XE#2229])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_pat@pat-index-xehpc:
- bat-bmg-2: NOTRUN -> [SKIP][9] ([Intel XE#1420] / [Intel XE#7590])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/bat-bmg-2/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelp:
- bat-bmg-2: NOTRUN -> [SKIP][10] ([Intel XE#2245] / [Intel XE#7590])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/bat-bmg-2/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- bat-bmg-2: NOTRUN -> [SKIP][11] ([Intel XE#2236] / [Intel XE#7590])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/bat-bmg-2/igt@xe_pat@pat-index-xelpg.html
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2434]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2434
[Intel XE#2482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2482
[Intel XE#2489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2489
[Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#3419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3419
[Intel XE#6314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6314
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
Build changes
-------------
* IGT: IGT_9014 -> IGTPW_15558
* Linux: xe-5428-a121e06fe1001f245f99f7fd06716b2e6ba36b5f -> xe-5429-f8444abd1b497d72ef742558a373253fb3491fcd
IGTPW_15558: 15558
IGT_9014: 6d3784ab505ea6a7917b191c0e060d5b4b0c2be7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5428-a121e06fe1001f245f99f7fd06716b2e6ba36b5f: a121e06fe1001f245f99f7fd06716b2e6ba36b5f
xe-5429-f8444abd1b497d72ef742558a373253fb3491fcd: f8444abd1b497d72ef742558a373253fb3491fcd
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/index.html
[-- Attachment #2: Type: text/html, Size: 5905 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread
* ✓ i915.CI.BAT: success for Update some OA tests
2026-07-17 21:00 [PATCH 0/4] Update some OA tests Umesh Nerlige Ramappa
` (4 preceding siblings ...)
2026-07-17 22:49 ` ✓ Xe.CI.BAT: success for Update some OA tests Patchwork
@ 2026-07-17 23:08 ` Patchwork
2026-07-18 5:41 ` ✓ Xe.CI.FULL: " Patchwork
2026-07-18 14:11 ` ✗ i915.CI.Full: failure " Patchwork
7 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2026-07-17 23:08 UTC (permalink / raw)
To: Umesh Nerlige Ramappa; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2443 bytes --]
== Series Details ==
Series: Update some OA tests
URL : https://patchwork.freedesktop.org/series/170661/
State : success
== Summary ==
CI Bug Log - changes from IGT_9014 -> IGTPW_15558
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/index.html
Participating hosts (42 -> 40)
------------------------------
Missing (2): bat-dg2-13 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_15558 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_auth@basic-auth:
- bat-adlp-6: [PASS][1] -> [DMESG-WARN][2] ([i915#15673])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9014/bat-adlp-6/igt@core_auth@basic-auth.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/bat-adlp-6/igt@core_auth@basic-auth.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size:
- fi-bsw-n3050: [PASS][3] -> [FAIL][4] ([i915#16537])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9014/fi-bsw-n3050/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/fi-bsw-n3050/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html
#### Possible fixes ####
* igt@core_debugfs@read-all-entries:
- bat-adlp-6: [DMESG-WARN][5] ([i915#15673]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9014/bat-adlp-6/igt@core_debugfs@read-all-entries.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/bat-adlp-6/igt@core_debugfs@read-all-entries.html
[i915#15673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15673
[i915#16537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16537
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_9014 -> IGTPW_15558
* Linux: CI_DRM_18846 -> CI_DRM_18848
CI-20190529: 20190529
CI_DRM_18846: a121e06fe1001f245f99f7fd06716b2e6ba36b5f @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_18848: 873ccbfe47432233b5667efa22db223fa174fefb @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15558: 15558
IGT_9014: 6d3784ab505ea6a7917b191c0e060d5b4b0c2be7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/index.html
[-- Attachment #2: Type: text/html, Size: 3183 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread
* ✓ Xe.CI.FULL: success for Update some OA tests
2026-07-17 21:00 [PATCH 0/4] Update some OA tests Umesh Nerlige Ramappa
` (5 preceding siblings ...)
2026-07-17 23:08 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-07-18 5:41 ` Patchwork
2026-07-18 14:11 ` ✗ i915.CI.Full: failure " Patchwork
7 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2026-07-18 5:41 UTC (permalink / raw)
To: Umesh Nerlige Ramappa; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 22834 bytes --]
== Series Details ==
Series: Update some OA tests
URL : https://patchwork.freedesktop.org/series/170661/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_9014_FULL -> XEIGTPW_15558_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_15558_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gpu_buddy@gpu_buddy:
- shard-bmg: NOTRUN -> [SKIP][1] ([Intel XE#8619])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-7/igt@gpu_buddy@gpu_buddy.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][2] ([Intel XE#2327])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-6/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180:
- shard-bmg: [PASS][3] -> [ABORT][4] ([Intel XE#1727] / [Intel XE#4760])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9014/shard-bmg-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#1124]) +2 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-1/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#610] / [Intel XE#7387])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-8/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_bw@linear-tiling-4-displays-target-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#367])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-5/igt@kms_bw@linear-tiling-4-displays-target-2160x1440p.html
* igt@kms_ccs@bad-rotation-90-y-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2887]) +2 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-4/igt@kms_ccs@bad-rotation-90-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#3432])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2652]) +8 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-6/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_chamelium_audio@dp-audio-after-suspend:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2252]) +4 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-6/igt@kms_chamelium_audio@dp-audio-after-suspend.html
* igt@kms_content_protection@legacy:
- shard-bmg: NOTRUN -> [FAIL][12] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-9/igt@kms_content_protection@legacy.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2321] / [Intel XE#7355])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-7/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2320]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-3/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_dsc@dsc-with-bpc-ultrajoiner:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#8265]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-4/igt@kms_dsc@dsc-with-bpc-ultrajoiner.html
* igt@kms_feature_discovery@dsc:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#8586])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-10/igt@kms_feature_discovery@dsc.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [PASS][17] -> [FAIL][18] ([Intel XE#301]) +4 other tests fail
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9014/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp2:
- shard-bmg: [PASS][19] -> [FAIL][20] ([Intel XE#3321]) +1 other test fail
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9014/shard-bmg-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp2.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp2.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#4141]) +4 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2311]) +21 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2313]) +20 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#7061])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-1/igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-mmap-wc.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2486])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-2/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2938] / [Intel XE#7376] / [Intel XE#7760])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-8/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#1439] / [Intel XE#7402] / [Intel XE#836])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-6/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#1489]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-1/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-p010:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2387] / [Intel XE#7429])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-8/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@psr-suspend:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2234] / [Intel XE#2850]) +4 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-10/igt@kms_psr@psr-suspend.html
* igt@kms_sharpness_filter@filter-toggle:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#6503])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-4/igt@kms_sharpness_filter@filter-toggle.html
* igt@kms_vrr@max-min:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#1499])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-8/igt@kms_vrr@max-min.html
* igt@xe_evict@evict-small-multi-queue:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#8370])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-3/igt@xe_evict@evict-small-multi-queue.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2322] / [Intel XE#7372]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-6/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_fault_mode@many-multi-queue-imm:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#8374]) +3 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-8/igt@xe_exec_fault_mode@many-multi-queue-imm.html
* igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-userptr:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#8364]) +8 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-7/igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-userptr.html
* igt@xe_exec_reset@cm-multi-queue-gt-reset:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#8369])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-4/igt@xe_exec_reset@cm-multi-queue-gt-reset.html
* igt@xe_exec_reset@long-spin-many-preempt-gt1-threads:
- shard-bmg: [PASS][39] -> [FAIL][40] ([Intel XE#7956])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9014/shard-bmg-1/igt@xe_exec_reset@long-spin-many-preempt-gt1-threads.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-3/igt@xe_exec_reset@long-spin-many-preempt-gt1-threads.html
* igt@xe_exec_reset@long-spin-reuse-many-preempt-gt1-threads:
- shard-bmg: [PASS][41] -> [FAIL][42] ([Intel XE#7850])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9014/shard-bmg-9/igt@xe_exec_reset@long-spin-reuse-many-preempt-gt1-threads.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-3/igt@xe_exec_reset@long-spin-reuse-many-preempt-gt1-threads.html
* igt@xe_exec_threads@threads-multi-queue-cm-fd-rebind:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#8378]) +3 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-7/igt@xe_exec_threads@threads-multi-queue-cm-fd-rebind.html
* igt@xe_fault_injection@inject-fault-probe-function-guc_wait_ucode:
- shard-bmg: [PASS][44] -> [ABORT][45] ([Intel XE#8007]) +2 other tests abort
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9014/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-guc_wait_ucode.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-guc_wait_ucode.html
* igt@xe_multigpu_svm@mgpu-migration-prefetch:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#6964])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-6/igt@xe_multigpu_svm@mgpu-migration-prefetch.html
* igt@xe_page_reclaim@boundary-split:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#7793])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-8/igt@xe_page_reclaim@boundary-split.html
* igt@xe_pm@s4-d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2284] / [Intel XE#7370])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-8/igt@xe_pm@s4-d3cold-basic-exec.html
* igt@xe_pmu@gt-frequency:
- shard-bmg: [PASS][49] -> [WARN][50] ([Intel XE#7992]) +1 other test warn
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9014/shard-bmg-6/igt@xe_pmu@gt-frequency.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-4/igt@xe_pmu@gt-frequency.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#944])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-4/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-bmg: [PASS][52] -> [FAIL][53] ([Intel XE#6569])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9014/shard-bmg-1/igt@xe_sriov_flr@flr-vf1-clear.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-4/igt@xe_sriov_flr@flr-vf1-clear.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority@numvfs-random-gt0-rcs0:
- shard-bmg: [PASS][54] -> [FAIL][55] ([Intel XE#7992]) +1 other test fail
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9014/shard-bmg-10/igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority@numvfs-random-gt0-rcs0.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-9/igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority@numvfs-random-gt0-rcs0.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority@numvfs-random-gt1-vcs0:
- shard-bmg: [PASS][56] -> [FAIL][57] ([Intel XE#8340])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9014/shard-bmg-10/igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority@numvfs-random-gt1-vcs0.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-9/igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority@numvfs-random-gt1-vcs0.html
#### Possible fixes ####
* igt@kms_async_flips@alternate-sync-async-flip-atomic:
- shard-bmg: [FAIL][58] ([Intel XE#3718] / [Intel XE#6078]) -> [PASS][59]
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9014/shard-bmg-4/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-4/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-dp-2:
- shard-bmg: [FAIL][60] ([Intel XE#6078]) -> [PASS][61]
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9014/shard-bmg-4/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-dp-2.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-4/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-dp-2.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [FAIL][62] ([Intel XE#8399]) -> [PASS][63]
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9014/shard-lnl-5/igt@kms_pm_dc@dc5-psr.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-lnl-1/igt@kms_pm_dc@dc5-psr.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][64] ([Intel XE#6321] / [Intel XE#8355]) -> [PASS][65]
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9014/shard-bmg-9/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-1/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-bmg: [FAIL][66] ([Intel XE#7992]) -> [PASS][67]
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9014/shard-bmg-9/igt@xe_sriov_flr@flr-each-isolation.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-1/igt@xe_sriov_flr@flr-each-isolation.html
#### Warnings ####
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][68] ([Intel XE#3544]) -> [SKIP][69] ([Intel XE#3374] / [Intel XE#3544])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9014/shard-bmg-5/igt@kms_hdr@brightness-with-hdr.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-8/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][70] ([Intel XE#2426] / [Intel XE#5848]) -> [SKIP][71] ([Intel XE#2509] / [Intel XE#7437])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9014/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[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#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4760
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
[Intel XE#7387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7387
[Intel XE#7402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7402
[Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
[Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
[Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760
[Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
[Intel XE#7850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7850
[Intel XE#7956]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7956
[Intel XE#7992]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7992
[Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
[Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265
[Intel XE#8340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8340
[Intel XE#8355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8355
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
[Intel XE#8369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8369
[Intel XE#8370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8370
[Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374
[Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378
[Intel XE#8399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8399
[Intel XE#8586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8586
[Intel XE#8619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8619
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_9014 -> IGTPW_15558
* Linux: xe-5428-a121e06fe1001f245f99f7fd06716b2e6ba36b5f -> xe-5429-f8444abd1b497d72ef742558a373253fb3491fcd
IGTPW_15558: 15558
IGT_9014: 6d3784ab505ea6a7917b191c0e060d5b4b0c2be7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5428-a121e06fe1001f245f99f7fd06716b2e6ba36b5f: a121e06fe1001f245f99f7fd06716b2e6ba36b5f
xe-5429-f8444abd1b497d72ef742558a373253fb3491fcd: f8444abd1b497d72ef742558a373253fb3491fcd
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15558/index.html
[-- Attachment #2: Type: text/html, Size: 24833 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread
* ✗ i915.CI.Full: failure for Update some OA tests
2026-07-17 21:00 [PATCH 0/4] Update some OA tests Umesh Nerlige Ramappa
` (6 preceding siblings ...)
2026-07-18 5:41 ` ✓ Xe.CI.FULL: " Patchwork
@ 2026-07-18 14:11 ` Patchwork
7 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2026-07-18 14:11 UTC (permalink / raw)
To: Umesh Nerlige Ramappa; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 147584 bytes --]
== Series Details ==
Series: Update some OA tests
URL : https://patchwork.freedesktop.org/series/170661/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_18848_full -> IGTPW_15558_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_15558_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_15558_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_15558/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_15558_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_pipe_stress@stress-xrgb8888-untiled:
- shard-tglu: [PASS][1] -> [DMESG-WARN][2] +1 other test dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-tglu-5/igt@kms_pipe_stress@stress-xrgb8888-untiled.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-4/igt@kms_pipe_stress@stress-xrgb8888-untiled.html
* igt@kms_pm_rpm@i2c:
- shard-tglu: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-tglu-8/igt@kms_pm_rpm@i2c.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-8/igt@kms_pm_rpm@i2c.html
#### Warnings ####
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-tglu: [FAIL][5] ([i915#13566]) -> [DMESG-FAIL][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-128x42.html
New tests
---------
New tests have been introduced between CI_DRM_18848_full and IGTPW_15558_full:
### New IGT tests (10) ###
* igt@kms_flip@dpms-off-confusion-interruptible@a-hdmi-a4:
- Statuses : 1 pass(s)
- Exec time: [7.83] s
* igt@kms_flip@dpms-off-confusion-interruptible@b-hdmi-a4:
- Statuses : 1 pass(s)
- Exec time: [7.70] s
* igt@kms_flip@dpms-off-confusion-interruptible@c-hdmi-a4:
- Statuses : 1 pass(s)
- Exec time: [7.70] s
* igt@kms_flip@dpms-off-confusion-interruptible@d-hdmi-a4:
- Statuses : 1 pass(s)
- Exec time: [7.70] s
* igt@kms_flip@flip-vs-modeset-vs-hang@a-hdmi-a4:
- Statuses : 1 pass(s)
- Exec time: [51.09] s
* igt@kms_flip@flip-vs-modeset-vs-hang@d-hdmi-a4:
- Statuses : 1 pass(s)
- Exec time: [49.98] s
* igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [1.50] s
* igt@kms_pipe_crc_basic@hang-read-crc@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [1.27] s
* igt@kms_pipe_crc_basic@hang-read-crc@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [1.22] s
* igt@kms_pipe_crc_basic@hang-read-crc@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [1.31] s
Known issues
------------
Here are the changes found in IGTPW_15558_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@pan:
- shard-snb: NOTRUN -> [FAIL][7] ([i915#15792])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-snb6/igt@fbdev@pan.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: NOTRUN -> [SKIP][8] ([i915#7697])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-7/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-tglu-1: NOTRUN -> [SKIP][9] ([i915#9323])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-1/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-tglu: NOTRUN -> [SKIP][10] ([i915#3555] / [i915#9323])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-7/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_close_race@multigpu-basic-process:
- shard-tglu-1: NOTRUN -> [SKIP][11] ([i915#7697])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-1/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-rkl: NOTRUN -> [SKIP][12] ([i915#6335])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-7/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_freq@sysfs@gt0:
- shard-dg2: NOTRUN -> [FAIL][13] ([i915#9561]) +1 other test fail
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-5/igt@gem_ctx_freq@sysfs@gt0.html
* igt@gem_ctx_isolation@preservation-s3:
- shard-rkl: NOTRUN -> [INCOMPLETE][14] ([i915#13356]) +2 other tests incomplete
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-6/igt@gem_ctx_isolation@preservation-s3.html
* igt@gem_ctx_isolation@preservation-s3@rcs0:
- shard-glk: NOTRUN -> [INCOMPLETE][15] ([i915#13356] / [i915#16466]) +1 other test incomplete
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-glk4/igt@gem_ctx_isolation@preservation-s3@rcs0.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#8555])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-8/igt@gem_ctx_persistence@heartbeat-stop.html
- shard-dg1: NOTRUN -> [SKIP][17] ([i915#8555])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-19/igt@gem_ctx_persistence@heartbeat-stop.html
- shard-mtlp: NOTRUN -> [SKIP][18] ([i915#8555])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-7/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_sseu@engines:
- shard-dg2: NOTRUN -> [SKIP][19] ([i915#280])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-5/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg1: NOTRUN -> [SKIP][20] ([i915#280]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-19/igt@gem_ctx_sseu@invalid-sseu.html
- shard-mtlp: NOTRUN -> [SKIP][21] ([i915#280])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-8/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_ctx_sseu@mmap-args:
- shard-tglu: NOTRUN -> [SKIP][22] ([i915#280]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-2/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@in-flight-suspend:
- shard-glk11: NOTRUN -> [INCOMPLETE][23] ([i915#13390])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-glk11/igt@gem_eio@in-flight-suspend.html
* igt@gem_eio@kms:
- shard-rkl: [PASS][24] -> [DMESG-WARN][25] ([i915#13363])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-4/igt@gem_eio@kms.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-8/igt@gem_eio@kms.html
- shard-tglu: [PASS][26] -> [DMESG-WARN][27] ([i915#13363])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-tglu-9/igt@gem_eio@kms.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-8/igt@gem_eio@kms.html
* igt@gem_exec_balancer@bonded-dual:
- shard-mtlp: NOTRUN -> [SKIP][28] ([i915#4771])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-1/igt@gem_exec_balancer@bonded-dual.html
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#4771]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-8/igt@gem_exec_balancer@bonded-dual.html
- shard-dg1: NOTRUN -> [SKIP][30] ([i915#4771])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-18/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#4036])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-5/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-rkl: NOTRUN -> [SKIP][32] ([i915#4525]) +2 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-8/igt@gem_exec_balancer@parallel-ordering.html
- shard-tglu: NOTRUN -> [SKIP][33] ([i915#4525]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-8/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_balancer@sliced:
- shard-dg1: NOTRUN -> [SKIP][34] ([i915#4812]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-19/igt@gem_exec_balancer@sliced.html
* igt@gem_exec_fence@concurrent:
- shard-mtlp: NOTRUN -> [SKIP][35] ([i915#4812]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-2/igt@gem_exec_fence@concurrent.html
* igt@gem_exec_fence@submit3:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#4812]) +2 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-3/igt@gem_exec_fence@submit3.html
* igt@gem_exec_reloc@basic-gtt-cpu-active:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#3281]) +9 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-1/igt@gem_exec_reloc@basic-gtt-cpu-active.html
- shard-dg1: NOTRUN -> [SKIP][38] ([i915#3281]) +5 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-14/igt@gem_exec_reloc@basic-gtt-cpu-active.html
* igt@gem_exec_reloc@basic-gtt-cpu-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][39] ([i915#3281]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-7/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html
* igt@gem_exec_reloc@basic-range-active:
- shard-rkl: NOTRUN -> [SKIP][40] ([i915#3281]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-2/igt@gem_exec_reloc@basic-range-active.html
* igt@gem_exec_reloc@basic-write-wc:
- shard-rkl: NOTRUN -> [SKIP][41] ([i915#14544] / [i915#3281])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-6/igt@gem_exec_reloc@basic-write-wc.html
* igt@gem_exec_suspend@basic-s3:
- shard-tglu-1: NOTRUN -> [ABORT][42] ([i915#15840]) +1 other test abort
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-1/igt@gem_exec_suspend@basic-s3.html
* igt@gem_fence_thrash@bo-copy:
- shard-dg1: NOTRUN -> [SKIP][43] ([i915#4860]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-13/igt@gem_fence_thrash@bo-copy.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#4860]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-8/igt@gem_fenced_exec_thrash@2-spare-fences.html
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4860])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-4/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4613])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-6/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_lmem_swapping@massive-random:
- shard-tglu-1: NOTRUN -> [SKIP][47] ([i915#4613]) +2 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-1/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@parallel-random:
- shard-rkl: NOTRUN -> [SKIP][48] ([i915#4613]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-4/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_lmem_swapping@random:
- shard-glk: NOTRUN -> [SKIP][49] ([i915#4613]) +4 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-glk8/igt@gem_lmem_swapping@random.html
- shard-tglu: NOTRUN -> [SKIP][50] ([i915#4613]) +3 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-10/igt@gem_lmem_swapping@random.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#12193])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-18/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_lmem_swapping@verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][52] ([i915#4565])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-18/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html
* igt@gem_madvise@dontneed-before-exec:
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#3282]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-8/igt@gem_madvise@dontneed-before-exec.html
* igt@gem_mmap_gtt@basic-write-read:
- shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4077]) +4 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-7/igt@gem_mmap_gtt@basic-write-read.html
* igt@gem_mmap_gtt@cpuset-basic-small-copy:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#4077]) +4 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-3/igt@gem_mmap_gtt@cpuset-basic-small-copy.html
* igt@gem_mmap_gtt@cpuset-big-copy-odd:
- shard-dg1: NOTRUN -> [SKIP][56] ([i915#4077]) +5 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-19/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
* igt@gem_mmap_wc@copy:
- shard-dg1: NOTRUN -> [SKIP][57] ([i915#4083])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-17/igt@gem_mmap_wc@copy.html
* igt@gem_mmap_wc@write:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#4083])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-7/igt@gem_mmap_wc@write.html
* igt@gem_pread@exhaustion:
- shard-glk10: NOTRUN -> [WARN][59] ([i915#2658])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-glk10/igt@gem_pread@exhaustion.html
* igt@gem_pread@self:
- shard-rkl: NOTRUN -> [SKIP][60] ([i915#14544] / [i915#3282])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-6/igt@gem_pread@self.html
* igt@gem_pwrite@basic-random:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#3282]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-5/igt@gem_pwrite@basic-random.html
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#3282]) +6 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-7/igt@gem_pwrite@basic-random.html
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#3282]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-16/igt@gem_pwrite@basic-random.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#4270]) +2 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-8/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#5190] / [i915#8428]) +4 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-1/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#8428]) +2 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-4/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
- shard-glk: NOTRUN -> [SKIP][67] +550 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-glk2/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#4079])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_softpin@noreloc-s3:
- shard-glk: [PASS][69] -> [INCOMPLETE][70] ([i915#13809] / [i915#16193])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-glk2/igt@gem_softpin@noreloc-s3.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-glk9/igt@gem_softpin@noreloc-s3.html
- shard-dg2: [PASS][71] -> [ABORT][72] ([i915#15131])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-dg2-1/igt@gem_softpin@noreloc-s3.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-10/igt@gem_softpin@noreloc-s3.html
- shard-rkl: [PASS][73] -> [INCOMPLETE][74] ([i915#13809] / [i915#16226])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-3/igt@gem_softpin@noreloc-s3.html
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-6/igt@gem_softpin@noreloc-s3.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-tglu: NOTRUN -> [SKIP][75] ([i915#3297]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-7/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-tglu-1: NOTRUN -> [SKIP][76] ([i915#3297]) +2 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-1/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-tglu: NOTRUN -> [SKIP][77] ([i915#3297] / [i915#3323])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-2/igt@gem_userptr_blits@dmabuf-sync.html
- shard-rkl: NOTRUN -> [SKIP][78] ([i915#3297] / [i915#3323])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-5/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#3297])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-6/igt@gem_userptr_blits@dmabuf-unsync.html
- shard-rkl: NOTRUN -> [SKIP][80] ([i915#3297]) +2 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-4/igt@gem_userptr_blits@dmabuf-unsync.html
- shard-dg1: NOTRUN -> [SKIP][81] ([i915#3297])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-18/igt@gem_userptr_blits@dmabuf-unsync.html
- shard-mtlp: NOTRUN -> [SKIP][82] ([i915#3297])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-3/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#3282] / [i915#3297])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-5/igt@gem_userptr_blits@forbidden-operations.html
- shard-rkl: NOTRUN -> [SKIP][84] ([i915#3282] / [i915#3297])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-2/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#3297] / [i915#4880])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gen9_exec_parse@bb-oversize:
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#2527]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-17/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-secure:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#2856])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-8/igt@gen9_exec_parse@bb-secure.html
- shard-rkl: NOTRUN -> [SKIP][88] ([i915#2527]) +2 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-3/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@bb-start-far:
- shard-tglu-1: NOTRUN -> [SKIP][89] ([i915#2527] / [i915#2856])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-1/igt@gen9_exec_parse@bb-start-far.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-tglu: NOTRUN -> [SKIP][90] ([i915#2527] / [i915#2856]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-10/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@i915_drm_fdinfo@busy-check-all:
- shard-dg1: NOTRUN -> [SKIP][91] ([i915#11527]) +5 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-13/igt@i915_drm_fdinfo@busy-check-all.html
* igt@i915_drm_fdinfo@busy-check-all@ccs0:
- shard-mtlp: NOTRUN -> [SKIP][92] ([i915#11527]) +6 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-7/igt@i915_drm_fdinfo@busy-check-all@ccs0.html
* igt@i915_drm_fdinfo@busy-check-all@vecs0:
- shard-dg2: NOTRUN -> [SKIP][93] ([i915#11527]) +7 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-6/igt@i915_drm_fdinfo@busy-check-all@vecs0.html
* igt@i915_drm_fdinfo@busy@vecs1:
- shard-dg2: NOTRUN -> [SKIP][94] ([i915#14073]) +7 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-5/igt@i915_drm_fdinfo@busy@vecs1.html
* igt@i915_module_load@reload-no-display:
- shard-dg2: NOTRUN -> [DMESG-WARN][95] ([i915#13029] / [i915#14545])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-5/igt@i915_module_load@reload-no-display.html
* igt@i915_pm_freq_api@freq-reset:
- shard-tglu: NOTRUN -> [SKIP][96] ([i915#8399])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-5/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-tglu: NOTRUN -> [SKIP][97] ([i915#6590]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-8/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-dg2: [PASS][98] -> [FAIL][99] ([i915#12964]) +1 other test fail
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-dg2-7/igt@i915_pm_rc6_residency@rc6-accuracy.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-7/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-tglu-1: NOTRUN -> [SKIP][100] ([i915#14498])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rpm@system-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][101] ([i915#13356]) +1 other test incomplete
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-glk3/igt@i915_pm_rpm@system-suspend.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-dg1: [PASS][102] -> [DMESG-WARN][103] ([i915#4423])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-dg1-18/igt@i915_pm_rpm@system-suspend-execbuf.html
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-19/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_pm_rps@thresholds-idle-park:
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#11681]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-3/igt@i915_pm_rps@thresholds-idle-park.html
* igt@i915_pm_rps@thresholds-park:
- shard-dg1: NOTRUN -> [SKIP][105] ([i915#11681])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-17/igt@i915_pm_rps@thresholds-park.html
- shard-mtlp: NOTRUN -> [SKIP][106] ([i915#11681])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-6/igt@i915_pm_rps@thresholds-park.html
* igt@i915_power@sanity:
- shard-rkl: NOTRUN -> [SKIP][107] ([i915#7984])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-4/igt@i915_power@sanity.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-dg2: NOTRUN -> [SKIP][108] ([i915#16109])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-4/igt@i915_query@query-topology-known-pci-ids.html
* igt@i915_query@query-topology-unsupported:
- shard-rkl: NOTRUN -> [SKIP][109] ([i915#16079])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-5/igt@i915_query@query-topology-unsupported.html
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#16079])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-15/igt@i915_query@query-topology-unsupported.html
* igt@i915_query@test-query-geometry-subslices:
- shard-tglu: NOTRUN -> [SKIP][111] ([i915#5723])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-7/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_suspend@fence-restore-untiled:
- shard-glk: NOTRUN -> [INCOMPLETE][112] ([i915#16182] / [i915#4817])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-glk3/igt@i915_suspend@fence-restore-untiled.html
* igt@intel_hwmon@hwmon-write:
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#14544] / [i915#7707])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-6/igt@intel_hwmon@hwmon-write.html
* igt@kms_3d@basic:
- shard-mtlp: [PASS][114] -> [SKIP][115] ([i915#15726])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-mtlp-5/igt@kms_3d@basic.html
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-1/igt@kms_3d@basic.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2: NOTRUN -> [SKIP][116] ([i915#5190]) +1 other test skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-3/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- shard-mtlp: NOTRUN -> [SKIP][117] ([i915#5190])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][118] ([i915#14888]) +1 other test fail
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-glk6/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-hdmi-a-1.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#9531])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-glk10: NOTRUN -> [SKIP][120] ([i915#1769])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-glk10/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#1769] / [i915#3555])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-rkl: NOTRUN -> [SKIP][122] ([i915#1769] / [i915#3555])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#1769] / [i915#3555])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-16/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-snb: NOTRUN -> [SKIP][124] ([i915#1769])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-snb6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-tglu: NOTRUN -> [SKIP][125] ([i915#1769] / [i915#3555])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-tglu-1: NOTRUN -> [SKIP][126] ([i915#5286]) +2 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-1/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][127] ([i915#5286]) +7 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][128] ([i915#4538] / [i915#5286]) +3 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-12/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
- shard-tglu: NOTRUN -> [SKIP][129] ([i915#5286]) +5 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][130] ([i915#3638]) +5 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-2/igt@kms_big_fb@linear-64bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][131] ([i915#3638]) +2 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-14/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
- shard-tglu: NOTRUN -> [SKIP][132] ([i915#3828]) +1 other test skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-5/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
- shard-rkl: NOTRUN -> [SKIP][133] ([i915#14544] / [i915#3828])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#3828]) +1 other test skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-3/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
- shard-rkl: NOTRUN -> [SKIP][135] ([i915#3828]) +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-2/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
- shard-dg1: NOTRUN -> [SKIP][136] ([i915#3828])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-13/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
- shard-mtlp: NOTRUN -> [SKIP][137] ([i915#3828])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-8/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#4538] / [i915#5190]) +8 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][139] ([i915#4538]) +2 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][140] ([i915#14544] / [i915#6095]) +3 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][141] ([i915#12313])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-2/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][142] ([i915#6095]) +196 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-16/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-a-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_15558/shard-tglu-1/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#6095]) +75 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-1/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][145] ([i915#14098] / [i915#14544] / [i915#6095]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-6/igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][146] ([i915#12313]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#12313])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-18/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][148] ([i915#6095]) +59 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][149] ([i915#6095]) +29 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-edp-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#10307] / [i915#10434] / [i915#6095])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#10307] / [i915#6095]) +80 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
- shard-glk10: NOTRUN -> [INCOMPLETE][152] ([i915#15582]) +1 other test incomplete
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-glk10/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#6095]) +13 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-5/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-1:
- shard-glk11: NOTRUN -> [SKIP][154] +68 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-glk11/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-c-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#14098] / [i915#6095]) +53 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-8/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-c-hdmi-a-1.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#3742])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-4/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-mtlp: NOTRUN -> [SKIP][157] +10 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-3/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_color_pipeline@plane-ctm3x4-lut1d:
- shard-tglu-1: NOTRUN -> [SKIP][158] ([i915#16471])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-1/igt@kms_chamelium_color_pipeline@plane-ctm3x4-lut1d.html
* igt@kms_chamelium_color_pipeline@plane-lut3d-green-only:
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#16471]) +1 other test skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-7/igt@kms_chamelium_color_pipeline@plane-lut3d-green-only.html
- shard-dg1: NOTRUN -> [SKIP][160] ([i915#16471])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-16/igt@kms_chamelium_color_pipeline@plane-lut3d-green-only.html
* igt@kms_chamelium_edid@dp-edid-change-during-suspend:
- shard-rkl: NOTRUN -> [SKIP][161] ([i915#11151] / [i915#14544] / [i915#7828])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-6/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#11151] / [i915#7828]) +7 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-8/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
- shard-mtlp: NOTRUN -> [SKIP][163] ([i915#11151] / [i915#7828]) +3 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-1/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-tglu-1: NOTRUN -> [SKIP][164] ([i915#11151] / [i915#7828]) +4 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-1/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-dg1: NOTRUN -> [SKIP][165] ([i915#11151] / [i915#7828]) +5 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-15/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][166] ([i915#11151] / [i915#7828]) +12 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-2/igt@kms_chamelium_hpd@vga-hpd-fast.html
- shard-tglu: NOTRUN -> [SKIP][167] ([i915#11151] / [i915#7828]) +7 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-9/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_color@deep-color:
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#12655] / [i915#3555])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-3/igt@kms_color@deep-color.html
- shard-tglu-1: NOTRUN -> [SKIP][169] ([i915#3555] / [i915#9979])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-1/igt@kms_color@deep-color.html
* igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#15330]) +1 other test skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
- shard-tglu-1: NOTRUN -> [SKIP][171] ([i915#15330])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-1/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-tglu-1: NOTRUN -> [SKIP][172] ([i915#15330] / [i915#3116] / [i915#3299])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-0-suspend-resume:
- shard-mtlp: NOTRUN -> [SKIP][173] ([i915#15330])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-6/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#15330])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-3/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
- shard-dg1: NOTRUN -> [SKIP][175] ([i915#15330])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-17/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
- shard-tglu: NOTRUN -> [SKIP][176] ([i915#15330])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-8/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
* igt@kms_content_protection@legacy:
- shard-tglu-1: NOTRUN -> [SKIP][177] ([i915#15865])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-1/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-rkl: NOTRUN -> [SKIP][178] ([i915#15865]) +3 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-7/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_content_protection@lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][179] ([i915#15865]) +3 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-7/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@mei-interface:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#15865]) +1 other test skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-1/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-dg2: NOTRUN -> [FAIL][181] ([i915#7173]) +1 other test fail
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-10/igt@kms_content_protection@srm.html
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#14544] / [i915#15865])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-6/igt@kms_content_protection@srm.html
- shard-dg1: NOTRUN -> [SKIP][183] ([i915#15865])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-19/igt@kms_content_protection@srm.html
- shard-mtlp: NOTRUN -> [SKIP][184] ([i915#15865])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-8/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-mtlp: NOTRUN -> [SKIP][185] ([i915#13049]) +1 other test skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-5/igt@kms_cursor_crc@cursor-offscreen-512x170.html
- shard-dg1: NOTRUN -> [SKIP][186] ([i915#13049]) +1 other test skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-15/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-rkl: [PASS][187] -> [FAIL][188] ([i915#13566]) +2 other tests fail
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][189] ([i915#13566])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-tglu: [PASS][190] -> [FAIL][191] ([i915#13566]) +1 other test fail
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-tglu-7/igt@kms_cursor_crc@cursor-onscreen-256x85.html
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-tglu-1: NOTRUN -> [SKIP][192] ([i915#3555]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2: NOTRUN -> [SKIP][193] ([i915#13049]) +1 other test skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-7/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-tglu: NOTRUN -> [SKIP][194] ([i915#13049]) +1 other test skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-7/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-rkl: NOTRUN -> [SKIP][195] ([i915#13049]) +3 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-2/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-256x85:
- shard-mtlp: NOTRUN -> [SKIP][196] ([i915#8814]) +1 other test skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-7/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-rkl: NOTRUN -> [SKIP][197] ([i915#3555]) +2 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-rkl: NOTRUN -> [SKIP][198] ([i915#14544] / [i915#3555])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [FAIL][199] ([i915#13566]) +1 other test fail
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-9/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-tglu-1: NOTRUN -> [FAIL][200] ([i915#13566]) +1 other test fail
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-tglu: NOTRUN -> [SKIP][201] ([i915#3555]) +3 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-tglu-1: NOTRUN -> [SKIP][202] ([i915#13049])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_crc@cursor-sliding-max-size:
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#3555]) +2 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-3/igt@kms_cursor_crc@cursor-sliding-max-size.html
- shard-dg1: NOTRUN -> [SKIP][204] ([i915#3555]) +2 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-17/igt@kms_cursor_crc@cursor-sliding-max-size.html
- shard-mtlp: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#8814])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-6/igt@kms_cursor_crc@cursor-sliding-max-size.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-tglu: NOTRUN -> [SKIP][206] ([i915#4103])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][207] ([i915#13046] / [i915#5354]) +1 other test skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
- shard-mtlp: NOTRUN -> [SKIP][208] ([i915#9809])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: NOTRUN -> [FAIL][209] ([i915#15804])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg2: NOTRUN -> [SKIP][210] ([i915#9067])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-3/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-rkl: NOTRUN -> [SKIP][211] ([i915#9067])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-2/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-dg1: NOTRUN -> [SKIP][212] ([i915#9067])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-13/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-tglu: NOTRUN -> [SKIP][213] ([i915#9067])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-10/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-mtlp: NOTRUN -> [SKIP][214] ([i915#9067])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-8/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-rkl: NOTRUN -> [SKIP][215] ([i915#4103])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-tglu: NOTRUN -> [SKIP][216] ([i915#9723])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-8/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-tglu: NOTRUN -> [SKIP][217] ([i915#13691])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-4/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-mtlp: NOTRUN -> [SKIP][218] ([i915#13707])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-7/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#13707]) +1 other test skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-5/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- shard-rkl: NOTRUN -> [SKIP][220] ([i915#13707]) +1 other test skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-7/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-basic:
- shard-tglu: NOTRUN -> [SKIP][221] ([i915#16361]) +3 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-9/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-basic-bigjoiner:
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#14544] / [i915#16361])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-6/igt@kms_dsc@dsc-basic-bigjoiner.html
* igt@kms_dsc@dsc-fractional-bpp-bigjoiner:
- shard-tglu-1: NOTRUN -> [SKIP][223] ([i915#16361]) +2 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp-bigjoiner.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][224] ([i915#16361])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
- shard-mtlp: NOTRUN -> [SKIP][225] ([i915#16361])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc-ultrajoiner:
- shard-dg1: NOTRUN -> [SKIP][226] ([i915#16361]) +1 other test skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-18/igt@kms_dsc@dsc-fractional-bpp-with-bpc-ultrajoiner.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-rkl: [PASS][227] -> [ABORT][228] ([i915#15132])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-2/igt@kms_fbcon_fbt@fbc-suspend.html
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-1/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr:
- shard-tglu-1: NOTRUN -> [SKIP][229] ([i915#3469])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-1/igt@kms_fbcon_fbt@psr.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: NOTRUN -> [SKIP][230] ([i915#3955])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-3/igt@kms_fbcon_fbt@psr-suspend.html
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#3469])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-8/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-3x:
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#16081]) +1 other test skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-2/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#16081])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-6/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2: NOTRUN -> [SKIP][234] ([i915#16599])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-3/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@hdr:
- shard-tglu: NOTRUN -> [SKIP][235] ([i915#16600])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-4/igt@kms_feature_discovery@hdr.html
* igt@kms_feature_discovery@psr2:
- shard-dg1: NOTRUN -> [SKIP][236] ([i915#658])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-13/igt@kms_feature_discovery@psr2.html
- shard-tglu: NOTRUN -> [SKIP][237] ([i915#658])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-7/igt@kms_feature_discovery@psr2.html
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#658])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-6/igt@kms_feature_discovery@psr2.html
- shard-rkl: NOTRUN -> [SKIP][239] ([i915#658])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-4/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-panning:
- shard-rkl: NOTRUN -> [SKIP][240] ([i915#9934]) +6 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-2/igt@kms_flip@2x-flip-vs-panning.html
- shard-dg1: NOTRUN -> [SKIP][241] ([i915#9934]) +5 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-14/igt@kms_flip@2x-flip-vs-panning.html
* igt@kms_flip@2x-flip-vs-rmfb:
- shard-mtlp: NOTRUN -> [SKIP][242] ([i915#3637] / [i915#9934]) +4 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-2/igt@kms_flip@2x-flip-vs-rmfb.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-tglu: NOTRUN -> [SKIP][243] ([i915#3637] / [i915#9934]) +4 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-4/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-tglu-1: NOTRUN -> [SKIP][244] ([i915#3637] / [i915#9934]) +2 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-1/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-dg2: NOTRUN -> [SKIP][245] ([i915#9934]) +6 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-5/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][246] ([i915#15643]) +3 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-tglu: NOTRUN -> [SKIP][247] ([i915#15643])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
- shard-mtlp: NOTRUN -> [SKIP][248] ([i915#15643]) +1 other test skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-rkl: NOTRUN -> [SKIP][249] ([i915#15643]) +2 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][250] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][251] ([i915#15643])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
- shard-dg1: NOTRUN -> [SKIP][252] ([i915#15643])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#15643] / [i915#5190]) +2 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][254] +47 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt:
- shard-dg2: NOTRUN -> [SKIP][255] ([i915#15991] / [i915#5354]) +20 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][256] ([i915#15990] / [i915#8708]) +6 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][257] ([i915#15990] / [i915#8708]) +1 other test skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-glk10: NOTRUN -> [INCOMPLETE][258] ([i915#10056] / [i915#16593])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-glk10/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][259] ([i915#15990]) +11 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-15/igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-shrfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][260] ([i915#15989]) +13 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][261] ([i915#15990]) +16 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-8/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-onoff:
- shard-tglu-1: NOTRUN -> [SKIP][262] ([i915#15989]) +9 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-1/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-spr-indfb-fullscreen:
- shard-mtlp: NOTRUN -> [SKIP][263] ([i915#15991]) +16 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-blt:
- shard-rkl: [PASS][264] -> [SKIP][265] ([i915#15989]) +7 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-1/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-blt.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-2/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-render:
- shard-dg2: NOTRUN -> [SKIP][266] ([i915#15989]) +11 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-5/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-snb: NOTRUN -> [SKIP][267] +166 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-snb4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
- shard-dg2: NOTRUN -> [SKIP][268] ([i915#15104] / [i915#15990]) +1 other test skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
- shard-dg1: NOTRUN -> [SKIP][269] ([i915#15104] / [i915#15990])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][270] ([i915#14544] / [i915#15102] / [i915#3023]) +2 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][271] ([i915#1825]) +8 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][272] ([i915#14544]) +7 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
- shard-mtlp: NOTRUN -> [SKIP][273] ([i915#15991] / [i915#1825]) +16 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][274] ([i915#15102]) +21 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-indfb-fliptrack-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][275] ([i915#15102]) +40 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-indfb-draw-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][276] ([i915#14544] / [i915#15102]) +1 other test skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-indfb-fliptrack-mmap-gtt:
- shard-glk10: NOTRUN -> [SKIP][277] +96 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-glk10/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][278] ([i915#15102]) +25 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-suspend.html
* igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-shrfb-draw-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][279] ([i915#15989]) +18 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-8/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][280] ([i915#15990]) +6 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-3/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][281] ([i915#15989]) +20 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-8/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@hdr-2p-primscrn-cur-indfb-draw-blt:
- shard-glk: [PASS][282] -> [SKIP][283] +8 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-glk8/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-cur-indfb-draw-blt.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-glk2/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@hdr-2p-primscrn-pri-shrfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][284] ([i915#15991]) +29 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-5/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@hdr-2p-primscrn-shrfb-msflip-blt:
- shard-tglu-1: NOTRUN -> [SKIP][285] +66 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-1/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][286] ([i915#15989]) +11 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-17/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][287] ([i915#15102]) +26 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
- shard-rkl: NOTRUN -> [SKIP][288] ([i915#15102] / [i915#3023]) +14 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][289] ([i915#14544] / [i915#1825])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][290] +100 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][291] +104 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][292] ([i915#15990] / [i915#8708]) +12 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move:
- shard-rkl: NOTRUN -> [SKIP][293] ([i915#15102]) +27 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-5/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move.html
* igt@kms_hdmi_inject@inject-audio:
- shard-tglu: [PASS][294] -> [FAIL][295] ([i915#16115])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-tglu-4/igt@kms_hdmi_inject@inject-audio.html
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-8/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-rkl: NOTRUN -> [SKIP][296] ([i915#16644] / [i915#3555] / [i915#8228])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-3/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@brightness-with-hdr:
- shard-rkl: NOTRUN -> [SKIP][297] ([i915#12713] / [i915#16644])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-4/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@static-toggle:
- shard-dg2: NOTRUN -> [SKIP][298] ([i915#16518] / [i915#3555] / [i915#8228]) +1 other test skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-4/igt@kms_hdr@static-toggle.html
- shard-tglu-1: NOTRUN -> [SKIP][299] ([i915#3555] / [i915#8228]) +1 other test skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-1/igt@kms_hdr@static-toggle.html
- shard-dg1: NOTRUN -> [SKIP][300] ([i915#3555] / [i915#8228])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-18/igt@kms_hdr@static-toggle.html
- shard-mtlp: NOTRUN -> [SKIP][301] ([i915#12713] / [i915#16490] / [i915#3555] / [i915#8228])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-2/igt@kms_hdr@static-toggle.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][302] ([i915#15458])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-8/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][303] ([i915#15459])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-dg1: NOTRUN -> [SKIP][304] ([i915#15458])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-14/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][305] ([i915#15458])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-5/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-dg2: NOTRUN -> [SKIP][306] ([i915#6301])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-4/igt@kms_panel_fitting@legacy.html
- shard-rkl: NOTRUN -> [SKIP][307] ([i915#6301])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-1/igt@kms_panel_fitting@legacy.html
- shard-tglu-1: NOTRUN -> [SKIP][308] ([i915#6301])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-1/igt@kms_panel_fitting@legacy.html
- shard-dg1: NOTRUN -> [SKIP][309] ([i915#6301])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-18/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
- shard-glk: [PASS][310] -> [INCOMPLETE][311] ([i915#12756] / [i915#13409] / [i915#13476])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-glk3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-glk8/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
* igt@kms_pipe_stress@stress-xrgb8888-xtiled:
- shard-glk: NOTRUN -> [DMESG-FAIL][312] ([i915#118]) +1 other test dmesg-fail
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-glk1/igt@kms_pipe_stress@stress-xrgb8888-xtiled.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-rkl: NOTRUN -> [SKIP][313] ([i915#14712])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-5/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier:
- shard-dg1: NOTRUN -> [SKIP][314] ([i915#15709]) +1 other test skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-12/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier:
- shard-tglu: NOTRUN -> [SKIP][315] ([i915#15709]) +4 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-7/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html
- shard-mtlp: NOTRUN -> [SKIP][316] ([i915#15709])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-7/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-a-plane-5:
- shard-dg2: NOTRUN -> [SKIP][317] ([i915#16386]) +1 other test skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping:
- shard-tglu-1: NOTRUN -> [SKIP][318] ([i915#15709]) +1 other test skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier:
- shard-dg2: NOTRUN -> [SKIP][319] ([i915#15709])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-5/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7:
- shard-tglu: NOTRUN -> [SKIP][320] ([i915#16386]) +1 other test skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-4/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7:
- shard-tglu-1: NOTRUN -> [SKIP][321] ([i915#16386]) +1 other test skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier:
- shard-rkl: NOTRUN -> [SKIP][322] ([i915#15709]) +5 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-8/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html
* igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y:
- shard-dg1: NOTRUN -> [SKIP][323] ([i915#16112])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-19/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][324] ([i915#13026]) +1 other test incomplete
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-glk6/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a:
- shard-rkl: [PASS][325] -> [INCOMPLETE][326] ([i915#14412]) +1 other test incomplete
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-4/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
* igt@kms_plane_alpha_blend@alpha-basic:
- shard-glk11: NOTRUN -> [FAIL][327] ([i915#12178])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-glk11/igt@kms_plane_alpha_blend@alpha-basic.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1:
- shard-glk11: NOTRUN -> [FAIL][328] ([i915#7862]) +1 other test fail
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-glk11/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-glk: NOTRUN -> [FAIL][329] ([i915#10647] / [i915#12177])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-glk2/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][330] ([i915#10647]) +1 other test fail
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-glk2/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-x:
- shard-mtlp: NOTRUN -> [SKIP][331] ([i915#11614] / [i915#3582]) +1 other test skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-8/igt@kms_plane_lowres@tiling-x.html
* igt@kms_plane_lowres@tiling-x@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][332] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-8/igt@kms_plane_lowres@tiling-x@pipe-c-edp-1.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][333] ([i915#13958])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-4/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][334] ([i915#13958])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-4/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_multiple@tiling-4:
- shard-rkl: NOTRUN -> [SKIP][335] ([i915#14259])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-4/igt@kms_plane_multiple@tiling-4.html
- shard-tglu-1: NOTRUN -> [SKIP][336] ([i915#14259])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-1/igt@kms_plane_multiple@tiling-4.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-rkl: [PASS][337] -> [SKIP][338] ([i915#6953])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-1/igt@kms_plane_scaling@intel-max-src-size.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-2/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b:
- shard-rkl: NOTRUN -> [SKIP][339] ([i915#15329]) +3 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][340] ([i915#15329]) +9 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
- shard-mtlp: NOTRUN -> [SKIP][341] ([i915#15329]) +4 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d:
- shard-dg1: NOTRUN -> [SKIP][342] ([i915#15329]) +4 other tests skip
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-15/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-tglu-1: NOTRUN -> [SKIP][343] ([i915#15329] / [i915#3555])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b:
- shard-tglu-1: NOTRUN -> [SKIP][344] ([i915#15329]) +3 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html
* igt@kms_pm_backlight@bad-brightness:
- shard-tglu-1: NOTRUN -> [SKIP][345] ([i915#12343] / [i915#9812])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-1/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@basic-brightness:
- shard-dg2: NOTRUN -> [SKIP][346] ([i915#12343] / [i915#5354])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-5/igt@kms_pm_backlight@basic-brightness.html
- shard-dg1: NOTRUN -> [SKIP][347] ([i915#12343] / [i915#5354])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-17/igt@kms_pm_backlight@basic-brightness.html
- shard-tglu: NOTRUN -> [SKIP][348] ([i915#12343] / [i915#9812])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-4/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][349] ([i915#12343])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-2/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-rkl: NOTRUN -> [SKIP][350] ([i915#12343] / [i915#5354]) +1 other test skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-3/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc5-psr:
- shard-tglu: NOTRUN -> [SKIP][351] ([i915#15948])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-7/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg1: NOTRUN -> [SKIP][352] ([i915#9340])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-17/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: [PASS][353] -> [SKIP][354] ([i915#15073])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-dg2-4/igt@kms_pm_rpm@dpms-lpsp.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-8/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: [PASS][355] -> [SKIP][356] ([i915#14544] / [i915#15073])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp-stress.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-dg1: [PASS][357] -> [SKIP][358] ([i915#15073]) +1 other test skip
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-dg1-12/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
- shard-tglu: NOTRUN -> [SKIP][359] ([i915#15073])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-pc8-residency-stress:
- shard-dg2: NOTRUN -> [SKIP][360] +9 other tests skip
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-5/igt@kms_pm_rpm@modeset-pc8-residency-stress.html
* igt@kms_prime@basic-crc-hybrid:
- shard-rkl: NOTRUN -> [SKIP][361] ([i915#6524]) +2 other tests skip
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-3/igt@kms_prime@basic-crc-hybrid.html
- shard-tglu-1: NOTRUN -> [SKIP][362] ([i915#6524]) +1 other test skip
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-1/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-dg1: NOTRUN -> [SKIP][363] ([i915#6524]) +1 other test skip
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-17/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_prime@d3hot:
- shard-dg2: NOTRUN -> [SKIP][364] ([i915#6524] / [i915#6805])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-4/igt@kms_prime@d3hot.html
- shard-mtlp: NOTRUN -> [SKIP][365] ([i915#6524])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-2/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf:
- shard-glk: NOTRUN -> [SKIP][366] ([i915#11520]) +6 other tests skip
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-glk8/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][367] ([i915#11520]) +9 other tests skip
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-3/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
- shard-tglu-1: NOTRUN -> [SKIP][368] ([i915#11520]) +4 other tests skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf:
- shard-glk10: NOTRUN -> [SKIP][369] ([i915#11520]) +2 other tests skip
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-glk10/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-snb: NOTRUN -> [SKIP][370] ([i915#11520]) +1 other test skip
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-snb7/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
- shard-dg1: NOTRUN -> [SKIP][371] ([i915#11520]) +2 other tests skip
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-19/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
- shard-tglu: NOTRUN -> [SKIP][372] ([i915#11520]) +4 other tests skip
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-7/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][373] ([i915#9808])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][374] ([i915#12316]) +2 other tests skip
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-b-edp-1.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-glk11: NOTRUN -> [SKIP][375] ([i915#11520]) +2 other tests skip
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-glk11/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][376] ([i915#11520]) +5 other tests skip
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-5/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2: NOTRUN -> [SKIP][377] ([i915#9683])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-4/igt@kms_psr2_su@page_flip-p010.html
- shard-rkl: NOTRUN -> [SKIP][378] ([i915#9683])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-1/igt@kms_psr2_su@page_flip-p010.html
- shard-tglu-1: NOTRUN -> [SKIP][379] ([i915#9683])
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-1/igt@kms_psr2_su@page_flip-p010.html
- shard-dg1: NOTRUN -> [SKIP][380] ([i915#9683])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-18/igt@kms_psr2_su@page_flip-p010.html
- shard-mtlp: NOTRUN -> [SKIP][381] ([i915#4348])
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-2/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-sprite-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][382] ([i915#1072] / [i915#9732]) +8 other tests skip
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-19/igt@kms_psr@fbc-pr-sprite-mmap-gtt.html
* igt@kms_psr@fbc-pr-sprite-plane-onoff:
- shard-rkl: NOTRUN -> [SKIP][383] ([i915#1072] / [i915#14544] / [i915#9732]) +1 other test skip
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-6/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr2-dpms:
- shard-mtlp: NOTRUN -> [SKIP][384] ([i915#9688]) +6 other tests skip
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-1/igt@kms_psr@fbc-psr2-dpms.html
* igt@kms_psr@pr-dpms:
- shard-tglu: NOTRUN -> [SKIP][385] ([i915#9732]) +16 other tests skip
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-2/igt@kms_psr@pr-dpms.html
* igt@kms_psr@psr-no-drrs:
- shard-dg2: NOTRUN -> [SKIP][386] ([i915#1072] / [i915#9732]) +12 other tests skip
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-7/igt@kms_psr@psr-no-drrs.html
* igt@kms_psr@psr2-cursor-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][387] ([i915#1072] / [i915#9732]) +23 other tests skip
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-2/igt@kms_psr@psr2-cursor-mmap-gtt.html
* igt@kms_psr@psr2-sprite-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][388] ([i915#9732]) +10 other tests skip
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-cpu.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-tglu: NOTRUN -> [SKIP][389] ([i915#15949])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2: NOTRUN -> [SKIP][390] ([i915#12755] / [i915#15867])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-6/igt@kms_rotation_crc@bad-tiling.html
- shard-mtlp: NOTRUN -> [SKIP][391] ([i915#12755] / [i915#15867])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-3/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-tglu: NOTRUN -> [SKIP][392] ([i915#5289]) +1 other test skip
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-mtlp: NOTRUN -> [SKIP][393] ([i915#5289])
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-rkl: NOTRUN -> [SKIP][394] ([i915#5289])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
- shard-dg1: NOTRUN -> [SKIP][395] ([i915#5289])
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-14/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_selftest@drm_framebuffer:
- shard-tglu: NOTRUN -> [ABORT][396] ([i915#13179]) +1 other test abort
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-9/igt@kms_selftest@drm_framebuffer.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-tglu-1: NOTRUN -> [SKIP][397] ([i915#8623])
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern.html
- shard-dg1: NOTRUN -> [SKIP][398] ([i915#8623])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-13/igt@kms_tiled_display@basic-test-pattern.html
- shard-glk: NOTRUN -> [FAIL][399] ([i915#10959])
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-glk4/igt@kms_tiled_display@basic-test-pattern.html
- shard-rkl: NOTRUN -> [SKIP][400] ([i915#8623])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-3/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@flip-basic-fastset:
- shard-tglu-1: NOTRUN -> [SKIP][401] ([i915#9906])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-1/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@flip-suspend:
- shard-mtlp: NOTRUN -> [SKIP][402] ([i915#3555] / [i915#8808])
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-5/igt@kms_vrr@flip-suspend.html
- shard-dg2: NOTRUN -> [SKIP][403] ([i915#15243] / [i915#3555])
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-5/igt@kms_vrr@flip-suspend.html
- shard-rkl: NOTRUN -> [SKIP][404] ([i915#15243] / [i915#3555])
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-4/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@max-min:
- shard-dg1: NOTRUN -> [SKIP][405] ([i915#9906])
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-12/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-tglu: NOTRUN -> [SKIP][406] ([i915#9906])
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-5/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@perf_pmu@busy-double-start:
- shard-mtlp: NOTRUN -> [FAIL][407] ([i915#4349]) +2 other tests fail
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-6/igt@perf_pmu@busy-double-start.html
* igt@prime_vgem@basic-fence-flip:
- shard-dg1: NOTRUN -> [SKIP][408] ([i915#3708]) +1 other test skip
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-12/igt@prime_vgem@basic-fence-flip.html
- shard-dg2: NOTRUN -> [SKIP][409] ([i915#3708])
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-6/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-read:
- shard-rkl: NOTRUN -> [SKIP][410] ([i915#3291] / [i915#3708]) +1 other test skip
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-2/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-gtt:
- shard-dg2: NOTRUN -> [SKIP][411] ([i915#3708] / [i915#4077])
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-6/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-write:
- shard-dg2: NOTRUN -> [SKIP][412] ([i915#3291] / [i915#3708])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-6/igt@prime_vgem@basic-write.html
- shard-mtlp: NOTRUN -> [SKIP][413] ([i915#10216] / [i915#3708])
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-4/igt@prime_vgem@basic-write.html
* igt@sriov_basic@bind-unbind-vf:
- shard-rkl: NOTRUN -> [SKIP][414] ([i915#9917]) +2 other tests skip
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-3/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-dg2: NOTRUN -> [SKIP][415] ([i915#9917])
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-4/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
- shard-tglu-1: NOTRUN -> [SKIP][416] ([i915#16066])
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-1/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
#### Possible fixes ####
* igt@gem_eio@hibernate:
- shard-tglu: [FAIL][417] ([i915#16594]) -> [PASS][418]
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-tglu-10/igt@gem_eio@hibernate.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-tglu-9/igt@gem_eio@hibernate.html
- shard-mtlp: [FAIL][419] ([i915#16594]) -> [PASS][420]
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-mtlp-2/igt@gem_eio@hibernate.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-1/igt@gem_eio@hibernate.html
- shard-rkl: [FAIL][421] ([i915#16594]) -> [PASS][422]
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-7/igt@gem_eio@hibernate.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-2/igt@gem_eio@hibernate.html
* igt@gem_exec_endless@dispatch@vcs0:
- shard-dg2: [TIMEOUT][423] ([i915#3778] / [i915#7016]) -> [PASS][424] +1 other test pass
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-dg2-6/igt@gem_exec_endless@dispatch@vcs0.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-1/igt@gem_exec_endless@dispatch@vcs0.html
* igt@gem_exec_suspend@basic-s0:
- shard-dg2: [INCOMPLETE][425] ([i915#13356]) -> [PASS][426] +1 other test pass
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-dg2-7/igt@gem_exec_suspend@basic-s0.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-4/igt@gem_exec_suspend@basic-s0.html
* igt@gem_workarounds@suspend-resume:
- shard-rkl: [INCOMPLETE][427] ([i915#13356]) -> [PASS][428]
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-6/igt@gem_workarounds@suspend-resume.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-8/igt@gem_workarounds@suspend-resume.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-rkl: [ABORT][429] ([i915#15132]) -> [PASS][430] +2 other tests pass
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-dg2: [SKIP][431] ([i915#15989]) -> [PASS][432]
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-dg2-5/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-pwrite.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-10/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-rte:
- shard-rkl: [SKIP][433] ([i915#15989]) -> [PASS][434] +10 other tests pass
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-2/igt@kms_frontbuffer_tracking@fbchdr-1p-rte.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-1p-rte.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-render:
- shard-glk: [SKIP][435] -> [PASS][436] +11 other tests pass
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-glk4/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-render.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-glk8/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_plane_cursor@viewport:
- shard-rkl: [FAIL][437] ([i915#15912]) -> [PASS][438]
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-3/igt@kms_plane_cursor@viewport.html
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-2/igt@kms_plane_cursor@viewport.html
* igt@kms_pm_rpm@i2c:
- shard-dg1: [DMESG-WARN][439] ([i915#4423]) -> [PASS][440] +1 other test pass
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-dg1-12/igt@kms_pm_rpm@i2c.html
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-17/igt@kms_pm_rpm@i2c.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg1: [SKIP][441] ([i915#15073]) -> [PASS][442] +1 other test pass
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp.html
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-19/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [SKIP][443] ([i915#15073]) -> [PASS][444] +1 other test pass
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-rkl: [INCOMPLETE][445] ([i915#14419]) -> [PASS][446]
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-4/igt@kms_pm_rpm@system-suspend-idle.html
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-8/igt@kms_pm_rpm@system-suspend-idle.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-rkl: [INCOMPLETE][447] ([i915#12276]) -> [PASS][448]
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-3/igt@kms_vblank@ts-continuation-suspend.html
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-5/igt@kms_vblank@ts-continuation-suspend.html
* igt@perf_pmu@most-busy-check-all@vcs0:
- shard-mtlp: [FAIL][449] ([i915#15997]) -> [PASS][450] +1 other test pass
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-mtlp-4/igt@perf_pmu@most-busy-check-all@vcs0.html
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-mtlp-8/igt@perf_pmu@most-busy-check-all@vcs0.html
#### Warnings ####
* igt@api_intel_bb@crc32:
- shard-rkl: [SKIP][451] ([i915#6230]) -> [SKIP][452] ([i915#14544] / [i915#6230])
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-7/igt@api_intel_bb@crc32.html
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-6/igt@api_intel_bb@crc32.html
* igt@gem_close_race@multigpu-basic-process:
- shard-rkl: [SKIP][453] ([i915#14544] / [i915#7697]) -> [SKIP][454] ([i915#7697])
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-6/igt@gem_close_race@multigpu-basic-process.html
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-1/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_exec_reloc@basic-concurrent16:
- shard-rkl: [SKIP][455] ([i915#3281]) -> [SKIP][456] ([i915#14544] / [i915#3281])
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-5/igt@gem_exec_reloc@basic-concurrent16.html
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-6/igt@gem_exec_reloc@basic-concurrent16.html
* igt@gem_exec_reloc@basic-gtt-read-active:
- shard-rkl: [SKIP][457] ([i915#14544] / [i915#3281]) -> [SKIP][458] ([i915#3281]) +1 other test skip
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-read-active.html
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-read-active.html
* igt@gem_partial_pwrite_pread@reads:
- shard-rkl: [SKIP][459] ([i915#3282]) -> [SKIP][460] ([i915#14544] / [i915#3282])
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-7/igt@gem_partial_pwrite_pread@reads.html
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-6/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_tiled_partial_pwrite_pread@writes-after-reads:
- shard-rkl: [SKIP][461] ([i915#14544] / [i915#3282]) -> [SKIP][462] ([i915#3282]) +1 other test skip
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-6/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-2/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-rkl: [SKIP][463] ([i915#14544] / [i915#3297]) -> [SKIP][464] ([i915#3297])
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-6/igt@gem_userptr_blits@create-destroy-unsync.html
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-1/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gen9_exec_parse@allowed-all:
- shard-rkl: [SKIP][465] ([i915#14544] / [i915#2527]) -> [SKIP][466] ([i915#2527])
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-6/igt@gen9_exec_parse@allowed-all.html
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-5/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@valid-registers:
- shard-rkl: [SKIP][467] ([i915#2527]) -> [SKIP][468] ([i915#14544] / [i915#2527])
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-2/igt@gen9_exec_parse@valid-registers.html
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-6/igt@gen9_exec_parse@valid-registers.html
* igt@i915_module_load@fault-injection:
- shard-dg1: [ABORT][469] ([i915#11814] / [i915#15481]) -> [ABORT][470] ([i915#11814]) +1 other test abort
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-dg1-12/igt@i915_module_load@fault-injection.html
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-16/igt@i915_module_load@fault-injection.html
* igt@i915_pm_freq_api@freq-reset:
- shard-rkl: [SKIP][471] ([i915#8399]) -> [SKIP][472] ([i915#14544] / [i915#8399])
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-8/igt@i915_pm_freq_api@freq-reset.html
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-6/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-rkl: [SKIP][473] ([i915#14498] / [i915#14544]) -> [SKIP][474] ([i915#14498])
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-6/igt@i915_pm_rc6_residency@rc6-idle.html
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-4/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-rkl: [SKIP][475] ([i915#14544] / [i915#5286]) -> [SKIP][476] ([i915#5286])
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
- shard-rkl: [SKIP][477] ([i915#14544] / [i915#3828]) -> [SKIP][478] ([i915#3828])
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-7/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
- shard-rkl: [SKIP][479] -> [SKIP][480] ([i915#14544]) +22 other tests skip
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-2/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-6/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-rkl: [SKIP][481] ([i915#14098] / [i915#6095]) -> [SKIP][482] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-2/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: [SKIP][483] ([i915#4423] / [i915#6095]) -> [SKIP][484] ([i915#6095]) +1 other test skip
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-dg1-16/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-4.html
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-18/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][485] ([i915#6095]) -> [SKIP][486] ([i915#14544] / [i915#6095]) +1 other test skip
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2.html
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][487] ([i915#14544] / [i915#6095]) -> [SKIP][488] ([i915#6095]) +2 other tests skip
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][489] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][490] ([i915#14098] / [i915#6095]) +3 other tests skip
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: [INCOMPLETE][491] ([i915#14694] / [i915#15582]) -> [INCOMPLETE][492] ([i915#15582]) +1 other test incomplete
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-glk1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-glk5/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][493] ([i915#12313] / [i915#14544]) -> [SKIP][494] ([i915#12313])
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-8/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:
- shard-rkl: [SKIP][495] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][496] ([i915#11151] / [i915#7828]) +1 other test skip
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-4/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_hpd@dp-hpd-storm:
- shard-rkl: [SKIP][497] ([i915#11151] / [i915#7828]) -> [SKIP][498] ([i915#11151] / [i915#14544] / [i915#7828]) +4 other tests skip
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-4/igt@kms_chamelium_hpd@dp-hpd-storm.html
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-storm.html
* igt@kms_content_protection@uevent-hdcp14:
- shard-rkl: [SKIP][499] ([i915#15865]) -> [SKIP][500] ([i915#14544] / [i915#15865])
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-7/igt@kms_content_protection@uevent-hdcp14.html
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-6/igt@kms_content_protection@uevent-hdcp14.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-rkl: [SKIP][501] ([i915#13049] / [i915#14544]) -> [SKIP][502] ([i915#13049])
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x170.html
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-3/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-rkl: [SKIP][503] ([i915#16361]) -> [SKIP][504] ([i915#14544] / [i915#16361]) +1 other test skip
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-1/igt@kms_dsc@dsc-with-output-formats.html
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-rkl: [SKIP][505] ([i915#14544] / [i915#16361]) -> [SKIP][506] ([i915#16361])
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_feature_discovery@psr1:
- shard-rkl: [SKIP][507] ([i915#14544] / [i915#658]) -> [SKIP][508] ([i915#658])
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-6/igt@kms_feature_discovery@psr1.html
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-2/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-rkl: [SKIP][509] ([i915#9934]) -> [SKIP][510] ([i915#14544] / [i915#9934]) +3 other tests skip
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-3/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-rkl: [SKIP][511] ([i915#14544] / [i915#9934]) -> [SKIP][512] ([i915#9934]) +2 other tests skip
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-6/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-3/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-glk: [INCOMPLETE][513] ([i915#12314] / [i915#12745] / [i915#4839] / [i915#6113]) -> [INCOMPLETE][514] ([i915#12745] / [i915#4839] / [i915#6113])
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-glk5/igt@kms_flip@flip-vs-suspend-interruptible.html
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-glk1/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-glk: [INCOMPLETE][515] ([i915#12314] / [i915#12745]) -> [INCOMPLETE][516] ([i915#12745])
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-glk5/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-glk1/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-rkl: [SKIP][517] ([i915#14544] / [i915#15643]) -> [SKIP][518] ([i915#15643])
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][519] ([i915#14544] / [i915#1825]) -> [SKIP][520] ([i915#1825])
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-gtt.html
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-pgflip-blt:
- shard-rkl: [SKIP][521] ([i915#14544]) -> [SKIP][522] +22 other tests skip
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-pgflip-blt.html
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-2/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-suspend:
- shard-rkl: [INCOMPLETE][523] ([i915#16056]) -> [SKIP][524] ([i915#15989])
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-suspend.html
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-3/igt@kms_frontbuffer_tracking@fbchdr-suspend.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-pwrite:
- shard-dg1: [SKIP][525] ([i915#4423]) -> [SKIP][526]
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-pwrite.html
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
- shard-dg2: [SKIP][527] ([i915#15102]) -> [SKIP][528] ([i915#10433] / [i915#15102]) +2 other tests skip
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render:
- shard-rkl: [SKIP][529] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][530] ([i915#15102] / [i915#3023]) +7 other tests skip
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render:
- shard-rkl: [SKIP][531] ([i915#15102] / [i915#3023]) -> [SKIP][532] ([i915#14544] / [i915#15102] / [i915#3023]) +3 other tests skip
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][533] ([i915#15102]) -> [SKIP][534] ([i915#14544] / [i915#15102]) +8 other tests skip
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-7/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-blt:
- shard-rkl: [SKIP][535] ([i915#14544] / [i915#15102]) -> [SKIP][536] ([i915#15102]) +7 other tests skip
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-blt.html
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-5/igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-blt.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-rkl: [SKIP][537] ([i915#14544] / [i915#15460]) -> [SKIP][538] ([i915#15460])
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-6/igt@kms_joiner@invalid-modeset-big-joiner.html
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-2/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-rkl: [SKIP][539] ([i915#14544] / [i915#15638] / [i915#15722]) -> [SKIP][540] ([i915#15638] / [i915#15722])
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-8/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][541] ([i915#14544] / [i915#15815]) -> [SKIP][542] ([i915#15815])
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier:
- shard-rkl: [SKIP][543] ([i915#14544] / [i915#15709]) -> [SKIP][544] ([i915#15709])
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-6/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-3/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
* igt@kms_pm_backlight@bad-brightness:
- shard-rkl: [SKIP][545] ([i915#12343] / [i915#14544] / [i915#5354]) -> [SKIP][546] ([i915#12343] / [i915#5354])
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-6/igt@kms_pm_backlight@bad-brightness.html
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-1/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_dc@dc5-pageflip-negative:
- shard-rkl: [SKIP][547] ([i915#14544] / [i915#9685]) -> [SKIP][548] ([i915#9685])
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-6/igt@kms_pm_dc@dc5-pageflip-negative.html
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-4/igt@kms_pm_dc@dc5-pageflip-negative.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-rkl: [SKIP][549] ([i915#8430]) -> [SKIP][550] ([i915#14544] / [i915#8430])
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-2/igt@kms_pm_lpsp@screens-disabled.html
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-6/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf:
- shard-rkl: [SKIP][551] ([i915#11520]) -> [SKIP][552] ([i915#11520] / [i915#14544])
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-4/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-rkl: [SKIP][553] ([i915#11520] / [i915#14544]) -> [SKIP][554] ([i915#11520])
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-8/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-rkl: [SKIP][555] ([i915#14544] / [i915#9683]) -> [SKIP][556] ([i915#9683])
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-6/igt@kms_psr2_su@page_flip-nv12.html
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-7/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-pr-primary-mmap-gtt:
- shard-rkl: [SKIP][557] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][558] ([i915#1072] / [i915#9732]) +3 other tests skip
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-6/igt@kms_psr@fbc-pr-primary-mmap-gtt.html
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-5/igt@kms_psr@fbc-pr-primary-mmap-gtt.html
* igt@kms_psr@fbc-psr-dpms:
- shard-rkl: [SKIP][559] ([i915#1072] / [i915#9732]) -> [SKIP][560] ([i915#1072] / [i915#14544] / [i915#9732]) +3 other tests skip
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-4/igt@kms_psr@fbc-psr-dpms.html
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-6/igt@kms_psr@fbc-psr-dpms.html
* igt@kms_psr@psr2-basic:
- shard-dg1: [SKIP][561] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][562] ([i915#1072] / [i915#9732])
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-dg1-16/igt@kms_psr@psr2-basic.html
[562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-14/igt@kms_psr@psr2-basic.html
* igt@kms_vrr@flip-dpms:
- shard-rkl: [SKIP][563] ([i915#15243] / [i915#3555]) -> [SKIP][564] ([i915#14544] / [i915#15243] / [i915#3555])
[563]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-2/igt@kms_vrr@flip-dpms.html
[564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-6/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-rkl: [SKIP][565] ([i915#9906]) -> [SKIP][566] ([i915#14544] / [i915#9906])
[565]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-8/igt@kms_vrr@seamless-rr-switch-virtual.html
[566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@perf@mi-rpc:
- shard-rkl: [SKIP][567] ([i915#14544] / [i915#2434]) -> [SKIP][568] ([i915#2434])
[567]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-6/igt@perf@mi-rpc.html
[568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-4/igt@perf@mi-rpc.html
* igt@perf_pmu@module-unload:
- shard-dg1: [ABORT][569] ([i915#15778]) -> [ABORT][570] ([i915#13029] / [i915#15778])
[569]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-dg1-18/igt@perf_pmu@module-unload.html
[570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-dg1-12/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6-suspend:
- shard-glk: [INCOMPLETE][571] ([i915#13356] / [i915#16236]) -> [INCOMPLETE][572] ([i915#13356] / [i915#14242] / [i915#16236])
[571]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-glk3/igt@perf_pmu@rc6-suspend.html
[572]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-glk9/igt@perf_pmu@rc6-suspend.html
* igt@prime_vgem@basic-read:
- shard-rkl: [SKIP][573] ([i915#3291] / [i915#3708]) -> [SKIP][574] ([i915#14544] / [i915#3291] / [i915#3708])
[573]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18848/shard-rkl-1/igt@prime_vgem@basic-read.html
[574]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/shard-rkl-6/igt@prime_vgem@basic-read.html
[i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
[i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216
[i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527
[i915#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118
[i915#11814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11814
[i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177
[i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178
[i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
[i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026
[i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363
[i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390
[i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409
[i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14242]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14242
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14412
[i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
[i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
[i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#14888]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14888
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
[i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
[i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
[i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
[i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460
[i915#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481
[i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
[i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722
[i915#15726]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15726
[i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
[i915#15792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15792
[i915#15804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15804
[i915#15815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15815
[i915#15840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15840
[i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
[i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
[i915#15912]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15912
[i915#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948
[i915#15949]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949
[i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989
[i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990
[i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991
[i915#15997]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15997
[i915#16056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16056
[i915#16066]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16066
[i915#16079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16079
[i915#16081]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16081
[i915#16109]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16109
[i915#16112]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16112
[i915#16115]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16115
[i915#16182]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16182
[i915#16193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16193
[i915#16226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16226
[i915#16236]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16236
[i915#16361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361
[i915#16386]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16386
[i915#16466]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16466
[i915#16471]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16471
[i915#16490]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16490
[i915#16518]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16518
[i915#16593]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16593
[i915#16594]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16594
[i915#16599]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16599
[i915#16600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16600
[i915#16644]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16644
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3778
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
[i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
[i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7016]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7016
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862
[i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9561]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9561
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
[i915#9979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9979
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_9014 -> IGTPW_15558
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_18848: 873ccbfe47432233b5667efa22db223fa174fefb @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15558: 15558
IGT_9014: 6d3784ab505ea6a7917b191c0e060d5b4b0c2be7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15558/index.html
[-- Attachment #2: Type: text/html, Size: 195316 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH 1/4] tests/intel/xe_oa: Allow disabling load helper from command line
2026-07-17 21:00 ` [PATCH 1/4] tests/intel/xe_oa: Allow disabling load helper from command line Umesh Nerlige Ramappa
@ 2026-07-20 19:37 ` Dixit, Ashutosh
0 siblings, 0 replies; 15+ messages in thread
From: Dixit, Ashutosh @ 2026-07-20 19:37 UTC (permalink / raw)
To: Umesh Nerlige Ramappa; +Cc: igt-dev
On Fri, 17 Jul 2026 14:00:29 -0700, Umesh Nerlige Ramappa wrote:
>
> In some test runs, it is useful to assess behavior with and without load
> helper. Add a command line switch to disable the load helper if needed.
>
> Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
> ---
> tests/intel/xe_oa.c | 29 +++++++++++++++++++++++++++--
> 1 file changed, 27 insertions(+), 2 deletions(-)
>
> diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c
> index 68c7537d3888..e7e4f5601b61 100644
> --- a/tests/intel/xe_oa.c
> +++ b/tests/intel/xe_oa.c
> @@ -1798,10 +1798,14 @@ static struct load_helper {
> bool exit;
> struct igt_helper_process igt_proc;
> struct intel_buf src, dst;
> + bool disabled;
> } lh = { 0, };
>
> static void load_helper_signal_handler(int sig)
> {
> + if (lh.disabled)
> + return;
> +
> if (sig == SIGUSR2)
> lh.load = lh.load == LOW ? HIGH : LOW;
> else
> @@ -1812,6 +1816,9 @@ static void load_helper_set_load(enum load load)
> {
> igt_assert(lh.igt_proc.running);
>
> + if (lh.disabled)
> + return;
> +
> if (lh.load == load)
> return;
>
> @@ -1821,6 +1828,9 @@ static void load_helper_set_load(enum load load)
>
> static void load_helper_run(enum load load)
> {
> + if (lh.disabled)
> + return;
> +
> if (!render_copy)
> return;
>
> @@ -1856,6 +1866,9 @@ static void load_helper_run(enum load load)
>
> static void load_helper_stop(void)
> {
> + if (lh.disabled)
> + return;
> +
> if (!render_copy)
> return;
>
> @@ -1865,6 +1878,9 @@ static void load_helper_stop(void)
>
> static void load_helper_init(void)
> {
> + if (lh.disabled)
> + return;
> +
> if (!render_copy) {
> igt_info("Running test without render_copy\n");
> return;
> @@ -1884,6 +1900,9 @@ static void load_helper_init(void)
>
> static void load_helper_fini(void)
> {
> + if (lh.disabled)
> + return;
> +
> if (!render_copy)
> return;
nit: maybe we can combine the 'lh.disabled' check with the following
'!render_copy' check and save some vertical real estate? But even otherwise
this is:
Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
> @@ -4981,6 +5000,10 @@ static int opt_handler(int opt, int opt_index, void *data)
> oa_trace = true;
> igt_debug("Trace enabled\n");
> break;
> + case 'd':
> + lh.disabled = true;
> + igt_info("Load helper disabled\n");
> + break;
> default:
> return IGT_OPT_HANDLER_ERROR;
> }
> @@ -4989,15 +5012,17 @@ static int opt_handler(int opt, int opt_index, void *data)
> }
>
> static const char *help_str = " --trace | -t\t\tEnable ftrace\n"
> - " --trace_buf_size_mb | -b\t\tSet ftrace buffer size in MB (default = 1, min = 1, max = 20)\n";
> + " --trace_buf_size_mb | -b\t\tSet ftrace buffer size in MB (default = 1, min = 1, max = 20)\n"
> + " --disable-load-helper | -d\t\tDisable load helper\n";
>
> static struct option long_options[] = {
> {"trace", 0, 0, 't'},
> {"trace_buf_size_mb", 0, 0, 'b'},
> + {"disable-load-helper", 0, 0, 'd'},
> { NULL, 0, 0, 0 }
> };
>
> -int igt_main_args("b:t", long_options, help_str, opt_handler, NULL)
> +int igt_main_args("b:td", long_options, help_str, opt_handler, NULL)
> {
> const struct sync_section {
> const char *name;
> --
> 2.51.0
>
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH 2/4] tests/intel/xe_oa: Do not assume OA buffer is prefilled with zeroes
2026-07-17 21:00 ` [PATCH 2/4] tests/intel/xe_oa: Do not assume OA buffer is prefilled with zeroes Umesh Nerlige Ramappa
@ 2026-07-20 19:42 ` Dixit, Ashutosh
2026-07-21 17:19 ` Umesh Nerlige Ramappa
0 siblings, 1 reply; 15+ messages in thread
From: Dixit, Ashutosh @ 2026-07-20 19:42 UTC (permalink / raw)
To: Umesh Nerlige Ramappa; +Cc: igt-dev
On Fri, 17 Jul 2026 14:00:30 -0700, Umesh Nerlige Ramappa wrote:
>
> The tail address test assumes that the OA buffer is preset to zeroes. Modify
> logic to be independent of this assumption.
Are we going to stop memset'ing OA buffer to 0 in the kernel? Even
otherwise, because this patch is a generalization of the OA buffer being 0:
Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
>
> Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
> ---
> tests/intel/xe_oa.c | 29 ++++++++++++++++++-----------
> 1 file changed, 18 insertions(+), 11 deletions(-)
>
> diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c
> index e7e4f5601b61..98f00d377a86 100644
> --- a/tests/intel/xe_oa.c
> +++ b/tests/intel/xe_oa.c
> @@ -4634,7 +4634,7 @@ static void closed_fd_and_unmapped_access(const struct drm_xe_oa_unit *oau)
> * format size is not a power of 2. This means that the last report will not be
> * broken down across the OA buffer end. Instead it will be written to the
> * beginning of the OA buffer. We will check the end of the buffer to ensure it
> - * has zeroes in it.
> + * has not been written into.
> */
> static void
> test_tail_address_wrap(const struct drm_xe_oa_unit *oau, size_t oa_buffer_size)
> @@ -4649,6 +4649,7 @@ test_tail_address_wrap(const struct drm_xe_oa_unit *oau, size_t oa_buffer_size)
> DRM_XE_OA_PROPERTY_OA_METRIC_SET, test_set->perf_oa_metrics_set,
> DRM_XE_OA_PROPERTY_OA_FORMAT, __ff(fmt),
> DRM_XE_OA_PROPERTY_OA_PERIOD_EXPONENT, exponent,
> + DRM_XE_OA_PROPERTY_OA_DISABLED, true,
> DRM_XE_OA_PROPERTY_OA_BUFFER_SIZE, buffer_size,
> };
> struct intel_xe_oa_open_prop param = {
> @@ -4656,25 +4657,31 @@ test_tail_address_wrap(const struct drm_xe_oa_unit *oau, size_t oa_buffer_size)
> .properties_ptr = to_user_pointer(properties),
> };
> u32 fmt_size = get_oa_format(fmt).size;
> - u32 zero_size = buffer_size % fmt_size;
> - u32 *zero_area, *buffer_end, *buffer_start;
> + u32 area_size = buffer_size % fmt_size;
> + u32 *area, *buffer_end, *buffer_start;
> + u32 *content = malloc(area_size);
>
> - igt_require(zero_size);
> + igt_require(area_size);
> + igt_require(content);
igt_assert(content);
>
> stream_fd = __perf_open(drm_fd, ¶m, false);
> set_fd_flags(stream_fd, O_CLOEXEC);
> -
> - wait_for_oa_buffer_overflow(stream_fd, 100);
> -
> buffer_start = mmap(0, buffer_size, PROT_READ, MAP_PRIVATE, stream_fd, 0);
> igt_assert(buffer_start);
>
> - zero_area = buffer_start + (buffer_size - zero_size) / 4;
> + area = buffer_start + (buffer_size - area_size) / 4;
> buffer_end = buffer_start + buffer_size / 4;
>
> - dump_report(zero_area, zero_size / 4, "zero_area");
> - while (zero_area < buffer_end)
> - igt_assert_eq(*zero_area++, 0);
> + memcpy(content, area, area_size);
> + dump_report(area, area_size / 4, "contents before");
> +
> + do_ioctl(stream_fd, DRM_XE_OBSERVATION_IOCTL_ENABLE, 0);
> + wait_for_oa_buffer_overflow(stream_fd, 100);
> + do_ioctl(stream_fd, DRM_XE_OBSERVATION_IOCTL_DISABLE, 0);
> +
> + dump_report(area, area_size / 4, "contents after");
> + while (area < buffer_end)
> + igt_assert_eq(*area++, *content++);
>
> munmap(buffer_start, buffer_size);
>
> --
> 2.51.0
>
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH 3/4] tests/intel/xe_oa: Enable capture just prior to reading OA data
2026-07-17 21:00 ` [PATCH 3/4] tests/intel/xe_oa: Enable capture just prior to reading OA data Umesh Nerlige Ramappa
@ 2026-07-20 20:22 ` Dixit, Ashutosh
0 siblings, 0 replies; 15+ messages in thread
From: Dixit, Ashutosh @ 2026-07-20 20:22 UTC (permalink / raw)
To: Umesh Nerlige Ramappa; +Cc: igt-dev
On Fri, 17 Jul 2026 14:00:31 -0700, Umesh Nerlige Ramappa wrote:
>
> When running the test in a loop, sometimes the buffer overflow error was
> seen with smaller buffer sizes.
> To make the non-zero-reason test more robust, enable capture just before
> reading the data and surround the read with the load helper calls.
Hmm, not sure why this patch should make a difference... Anyway, since you
seem to be saying it does, and because it is mostly equivalent to previous
code, this is:
Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
>
> Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
> ---
> tests/intel/xe_oa.c | 9 +++++----
> 1 file changed, 5 insertions(+), 4 deletions(-)
>
> diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c
> index 98f00d377a86..4f652b187bae 100644
> --- a/tests/intel/xe_oa.c
> +++ b/tests/intel/xe_oa.c
> @@ -2678,6 +2678,7 @@ test_non_zero_reason(const struct drm_xe_oa_unit *oau, size_t oa_buffer_size)
> DRM_XE_OA_PROPERTY_OA_METRIC_SET, test_set->perf_oa_metrics_set,
> DRM_XE_OA_PROPERTY_OA_FORMAT, __ff(fmt),
> DRM_XE_OA_PROPERTY_OA_PERIOD_EXPONENT, oa_exponent,
> + DRM_XE_OA_PROPERTY_OA_DISABLED, true,
> DRM_XE_OA_PROPERTY_OA_BUFFER_SIZE, oa_buffer_size ?: buffer_fill_size
> };
> struct intel_xe_oa_open_prop param = {
> @@ -2705,16 +2706,16 @@ test_non_zero_reason(const struct drm_xe_oa_unit *oau, size_t oa_buffer_size)
> igt_assert(buf);
>
> igt_debug("Ready to read about %u bytes\n", buf_size);
> -
> - load_helper_init();
> - load_helper_run(HIGH);
> -
> if (!oa_buffer_size)
> param.num_properties = param.num_properties - 1;
>
> stream_fd = __perf_open(drm_fd, ¶m, true /* prevent_pm */);
> set_fd_flags(stream_fd, O_CLOEXEC);
>
> + load_helper_init();
> + load_helper_run(HIGH);
> +
> + do_ioctl(stream_fd, DRM_XE_OBSERVATION_IOCTL_ENABLE, 0);
> while (total_len < buf_size &&
> ((len = read(stream_fd, &buf[total_len], buf_size - total_len)) > 0 ||
> (len == -1 && (errno == EINTR || errno == EIO)))) {
> --
> 2.51.0
>
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH 4/4] tests/intel/xe_oa: Cleanup blocking and polling tests
2026-07-17 21:00 ` [PATCH 4/4] tests/intel/xe_oa: Cleanup blocking and polling tests Umesh Nerlige Ramappa
@ 2026-07-20 21:08 ` Dixit, Ashutosh
2026-07-21 17:26 ` Umesh Nerlige Ramappa
0 siblings, 1 reply; 15+ messages in thread
From: Dixit, Ashutosh @ 2026-07-20 21:08 UTC (permalink / raw)
To: Umesh Nerlige Ramappa; +Cc: igt-dev
On Fri, 17 Jul 2026 14:00:32 -0700, Umesh Nerlige Ramappa wrote:
>
> 1) Drop set_kernel_timer since we don't support it anymore.
> 2) When running all tests, a failure in blocking/polling tests breaks
> all subsequent tests. Move __perf_close before the asserts.
Hmm, this should, in the future, be handled by having some sort of an
exit/assert handler, which will close the stream in the event of an
assert. Yeah this is annoying.
> 3) We cannot guarantee latency when reading OA reports as there are no
> guarantees how long it takes for reports to land in memory w.r.t
> any running workloads. Since OA reports are mostly used for
> post-processing, drop the latency checks in these tests.
>
> Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
> ---
> tests/intel/xe_oa.c | 153 +++++---------------------------------------
> 1 file changed, 17 insertions(+), 136 deletions(-)
>
> diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c
> index 4f652b187bae..9ebb18690ec7 100644
> --- a/tests/intel/xe_oa.c
> +++ b/tests/intel/xe_oa.c
> @@ -2127,8 +2127,6 @@ get_time(void)
> * kernelspace.
> */
> static void test_blocking(uint64_t requested_oa_period,
> - bool set_kernel_hrtimer,
> - uint64_t kernel_hrtimer,
> const struct drm_xe_oa_unit *oau)
> {
> int oa_exponent = max_oa_exponent_for_period_lte(requested_oa_period);
> @@ -2142,24 +2140,9 @@ static void test_blocking(uint64_t requested_oa_period,
> int64_t user_ns, kernel_ns;
> int64_t tick_ns = 1000000000 / sysconf(_SC_CLK_TCK);
> int64_t test_duration_ns = tick_ns * 100;
> - int max_iterations = (test_duration_ns / oa_period) + 2;
> - int n_extra_iterations = 0;
> int perf_fd;
> -
> - /* It's a bit tricky to put a lower limit here, but we expect a
> - * relatively low latency for seeing reports, while we don't currently
> - * give any control over this in the api.
> - *
> - * We assume a maximum latency of 6 millisecond to deliver a POLLIN and
> - * read() after a new sample is written (46ms per iteration) considering
> - * the knowledge that that the driver uses a 200Hz hrtimer (5ms period)
> - * to check for data and giving some time to read().
> - */
> - int min_iterations = (test_duration_ns / (oa_period + kernel_hrtimer + kernel_hrtimer / 5));
> int64_t start, end;
> - int n = 0;
> struct intel_xe_perf_metric_set *test_set = oa_unit_metric_set(oau);
> - size_t format_size = get_oa_format(test_set->perf_oa_format).size;
>
> ADD_PROPS(props, idx, SAMPLE_OA, true);
> ADD_PROPS(props, idx, OA_METRIC_SET, test_set->perf_oa_metrics_set);
> @@ -2174,13 +2157,8 @@ static void test_blocking(uint64_t requested_oa_period,
> perf_fd = __perf_open(drm_fd, ¶m, true /* prevent_pm */);
> set_fd_flags(perf_fd, O_CLOEXEC);
>
> - times(&start_times);
> -
> - igt_debug("tick length = %dns, test duration = %"PRIu64"ns, min iter. = %d,"
> - " estimated max iter. = %d, oa_period = %s\n",
> - (int)tick_ns, test_duration_ns,
> - min_iterations, max_iterations,
> - pretty_print_oa_period(oa_period));
> + igt_debug("tick length = %dns, test duration = %"PRIu64"ns, oa_period = %s\n",
> + (int)tick_ns, test_duration_ns, pretty_print_oa_period(oa_period));
>
> /* In the loop we perform blocking polls while the HW is sampling at
> * ~25Hz, with the expectation that we spend most of our time blocked
> @@ -2204,44 +2182,26 @@ static void test_blocking(uint64_t requested_oa_period,
> * the error delta.
> */
> start = get_time();
> + times(&start_times);
> do_ioctl(perf_fd, DRM_XE_OBSERVATION_IOCTL_ENABLE, 0);
> - for (/* nop */; ((end = get_time()) - start) < test_duration_ns; /* nop */) {
> - bool timer_report_read = false;
> - bool non_timer_report_read = false;
> + while (((end = get_time()) - start) < test_duration_ns) {
> int ret;
>
> while ((ret = read(perf_fd, buf, sizeof(buf))) < 0 &&
> (errno == EINTR || errno == EIO))
> ;
> igt_assert_lt(0, ret);
> -
> - for (int offset = 0; offset < ret; offset += format_size) {
> - uint32_t *report = (void *)(buf + offset);
> -
> - if (oa_report_is_periodic(report))
> - timer_report_read = true;
> - else
> - non_timer_report_read = true;
> - }
> -
> - if (non_timer_report_read && !timer_report_read)
> - n_extra_iterations++;
> -
> - n++;
> }
> -
> times(&end_times);
>
> + __perf_close(perf_fd);
> +
> /* Using nanosecond units is fairly silly here, given the tick in-
> * precision - ah well, it's consistent with the get_time() units.
> */
> user_ns = (end_times.tms_utime - start_times.tms_utime) * tick_ns;
> kernel_ns = (end_times.tms_stime - start_times.tms_stime) * tick_ns;
>
> - igt_debug("%d blocking reads during test with %"PRIu64" Hz OA sampling (expect no more than %d)\n",
> - n, NSEC_PER_SEC / oa_period, max_iterations);
> - igt_debug("%d extra iterations seen, not related to periodic sampling (e.g. context switches)\n",
> - n_extra_iterations);
> igt_debug("time in userspace = %"PRIu64"ns (+-%dns) (start utime = %d, end = %d)\n",
> user_ns, (int)tick_ns,
> (int)start_times.tms_utime, (int)end_times.tms_utime);
> @@ -2249,20 +2209,7 @@ static void test_blocking(uint64_t requested_oa_period,
> kernel_ns, (int)tick_ns,
> (int)start_times.tms_stime, (int)end_times.tms_stime);
>
> - /* With completely broken blocking (but also not returning an error) we
> - * could end up with an open loop,
> - */
> - igt_assert_lte(n, (max_iterations + n_extra_iterations));
> -
> - /* Make sure the driver is reporting new samples with a reasonably
> - * low latency...
> - */
> - igt_assert_lt((min_iterations + n_extra_iterations), n);
> -
> - if (!set_kernel_hrtimer)
> - igt_assert(kernel_ns <= (test_duration_ns / 100ull));
> -
> - __perf_close(perf_fd);
> + igt_assert(kernel_ns <= (test_duration_ns / 100ull));
This check (and the identical check in the polling test) is also sort of
arbitrary. Should we remove even this? Anyway, it's ok to leave if it is
passing everywhere. Therefore lgtm:
Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH 2/4] tests/intel/xe_oa: Do not assume OA buffer is prefilled with zeroes
2026-07-20 19:42 ` Dixit, Ashutosh
@ 2026-07-21 17:19 ` Umesh Nerlige Ramappa
0 siblings, 0 replies; 15+ messages in thread
From: Umesh Nerlige Ramappa @ 2026-07-21 17:19 UTC (permalink / raw)
To: Dixit, Ashutosh; +Cc: igt-dev
On Mon, Jul 20, 2026 at 12:42:44PM -0700, Dixit, Ashutosh wrote:
>On Fri, 17 Jul 2026 14:00:30 -0700, Umesh Nerlige Ramappa wrote:
>>
>> The tail address test assumes that the OA buffer is preset to zeroes. Modify
>> logic to be independent of this assumption.
>
>Are we going to stop memset'ing OA buffer to 0 in the kernel? Even
Yes, I am planning to remove the memset in the kernel.
>otherwise, because this patch is a generalization of the OA buffer being 0:
>
>Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
Thanks,
Umesh
>
>
>>
>> Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
>> ---
>> tests/intel/xe_oa.c | 29 ++++++++++++++++++-----------
>> 1 file changed, 18 insertions(+), 11 deletions(-)
>>
>> diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c
>> index e7e4f5601b61..98f00d377a86 100644
>> --- a/tests/intel/xe_oa.c
>> +++ b/tests/intel/xe_oa.c
>> @@ -4634,7 +4634,7 @@ static void closed_fd_and_unmapped_access(const struct drm_xe_oa_unit *oau)
>> * format size is not a power of 2. This means that the last report will not be
>> * broken down across the OA buffer end. Instead it will be written to the
>> * beginning of the OA buffer. We will check the end of the buffer to ensure it
>> - * has zeroes in it.
>> + * has not been written into.
>> */
>> static void
>> test_tail_address_wrap(const struct drm_xe_oa_unit *oau, size_t oa_buffer_size)
>> @@ -4649,6 +4649,7 @@ test_tail_address_wrap(const struct drm_xe_oa_unit *oau, size_t oa_buffer_size)
>> DRM_XE_OA_PROPERTY_OA_METRIC_SET, test_set->perf_oa_metrics_set,
>> DRM_XE_OA_PROPERTY_OA_FORMAT, __ff(fmt),
>> DRM_XE_OA_PROPERTY_OA_PERIOD_EXPONENT, exponent,
>> + DRM_XE_OA_PROPERTY_OA_DISABLED, true,
>> DRM_XE_OA_PROPERTY_OA_BUFFER_SIZE, buffer_size,
>> };
>> struct intel_xe_oa_open_prop param = {
>> @@ -4656,25 +4657,31 @@ test_tail_address_wrap(const struct drm_xe_oa_unit *oau, size_t oa_buffer_size)
>> .properties_ptr = to_user_pointer(properties),
>> };
>> u32 fmt_size = get_oa_format(fmt).size;
>> - u32 zero_size = buffer_size % fmt_size;
>> - u32 *zero_area, *buffer_end, *buffer_start;
>> + u32 area_size = buffer_size % fmt_size;
>> + u32 *area, *buffer_end, *buffer_start;
>> + u32 *content = malloc(area_size);
>>
>> - igt_require(zero_size);
>> + igt_require(area_size);
>> + igt_require(content);
>
>igt_assert(content);
>
>>
>> stream_fd = __perf_open(drm_fd, ¶m, false);
>> set_fd_flags(stream_fd, O_CLOEXEC);
>> -
>> - wait_for_oa_buffer_overflow(stream_fd, 100);
>> -
>> buffer_start = mmap(0, buffer_size, PROT_READ, MAP_PRIVATE, stream_fd, 0);
>> igt_assert(buffer_start);
>>
>> - zero_area = buffer_start + (buffer_size - zero_size) / 4;
>> + area = buffer_start + (buffer_size - area_size) / 4;
>> buffer_end = buffer_start + buffer_size / 4;
>>
>> - dump_report(zero_area, zero_size / 4, "zero_area");
>> - while (zero_area < buffer_end)
>> - igt_assert_eq(*zero_area++, 0);
>> + memcpy(content, area, area_size);
>> + dump_report(area, area_size / 4, "contents before");
>> +
>> + do_ioctl(stream_fd, DRM_XE_OBSERVATION_IOCTL_ENABLE, 0);
>> + wait_for_oa_buffer_overflow(stream_fd, 100);
>> + do_ioctl(stream_fd, DRM_XE_OBSERVATION_IOCTL_DISABLE, 0);
>> +
>> + dump_report(area, area_size / 4, "contents after");
>> + while (area < buffer_end)
>> + igt_assert_eq(*area++, *content++);
>>
>> munmap(buffer_start, buffer_size);
>>
>> --
>> 2.51.0
>>
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH 4/4] tests/intel/xe_oa: Cleanup blocking and polling tests
2026-07-20 21:08 ` Dixit, Ashutosh
@ 2026-07-21 17:26 ` Umesh Nerlige Ramappa
0 siblings, 0 replies; 15+ messages in thread
From: Umesh Nerlige Ramappa @ 2026-07-21 17:26 UTC (permalink / raw)
To: Dixit, Ashutosh; +Cc: igt-dev
On Mon, Jul 20, 2026 at 02:08:11PM -0700, Dixit, Ashutosh wrote:
>On Fri, 17 Jul 2026 14:00:32 -0700, Umesh Nerlige Ramappa wrote:
>>
>> 1) Drop set_kernel_timer since we don't support it anymore.
>> 2) When running all tests, a failure in blocking/polling tests breaks
>> all subsequent tests. Move __perf_close before the asserts.
>
>Hmm, this should, in the future, be handled by having some sort of an
>exit/assert handler, which will close the stream in the event of an
>assert. Yeah this is annoying.
I think this issue only affects the blocking/polling test since they use
a local perf_fd to open the stream. stream_fd is closed inside perf_open
for each new test, so other tests using stream_fd can assert before
closing the stream.
>
>> 3) We cannot guarantee latency when reading OA reports as there are no
>> guarantees how long it takes for reports to land in memory w.r.t
>> any running workloads. Since OA reports are mostly used for
>> post-processing, drop the latency checks in these tests.
>>
>> Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
>> ---
>> tests/intel/xe_oa.c | 153 +++++---------------------------------------
>> 1 file changed, 17 insertions(+), 136 deletions(-)
>>
>> diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c
>> index 4f652b187bae..9ebb18690ec7 100644
>> --- a/tests/intel/xe_oa.c
>> +++ b/tests/intel/xe_oa.c
>> @@ -2127,8 +2127,6 @@ get_time(void)
>> * kernelspace.
>> */
>> static void test_blocking(uint64_t requested_oa_period,
>> - bool set_kernel_hrtimer,
>> - uint64_t kernel_hrtimer,
>> const struct drm_xe_oa_unit *oau)
>> {
>> int oa_exponent = max_oa_exponent_for_period_lte(requested_oa_period);
>> @@ -2142,24 +2140,9 @@ static void test_blocking(uint64_t requested_oa_period,
>> int64_t user_ns, kernel_ns;
>> int64_t tick_ns = 1000000000 / sysconf(_SC_CLK_TCK);
>> int64_t test_duration_ns = tick_ns * 100;
>> - int max_iterations = (test_duration_ns / oa_period) + 2;
>> - int n_extra_iterations = 0;
>> int perf_fd;
>> -
>> - /* It's a bit tricky to put a lower limit here, but we expect a
>> - * relatively low latency for seeing reports, while we don't currently
>> - * give any control over this in the api.
>> - *
>> - * We assume a maximum latency of 6 millisecond to deliver a POLLIN and
>> - * read() after a new sample is written (46ms per iteration) considering
>> - * the knowledge that that the driver uses a 200Hz hrtimer (5ms period)
>> - * to check for data and giving some time to read().
>> - */
>> - int min_iterations = (test_duration_ns / (oa_period + kernel_hrtimer + kernel_hrtimer / 5));
>> int64_t start, end;
>> - int n = 0;
>> struct intel_xe_perf_metric_set *test_set = oa_unit_metric_set(oau);
>> - size_t format_size = get_oa_format(test_set->perf_oa_format).size;
>>
>> ADD_PROPS(props, idx, SAMPLE_OA, true);
>> ADD_PROPS(props, idx, OA_METRIC_SET, test_set->perf_oa_metrics_set);
>> @@ -2174,13 +2157,8 @@ static void test_blocking(uint64_t requested_oa_period,
>> perf_fd = __perf_open(drm_fd, ¶m, true /* prevent_pm */);
>> set_fd_flags(perf_fd, O_CLOEXEC);
>>
>> - times(&start_times);
>> -
>> - igt_debug("tick length = %dns, test duration = %"PRIu64"ns, min iter. = %d,"
>> - " estimated max iter. = %d, oa_period = %s\n",
>> - (int)tick_ns, test_duration_ns,
>> - min_iterations, max_iterations,
>> - pretty_print_oa_period(oa_period));
>> + igt_debug("tick length = %dns, test duration = %"PRIu64"ns, oa_period = %s\n",
>> + (int)tick_ns, test_duration_ns, pretty_print_oa_period(oa_period));
>>
>> /* In the loop we perform blocking polls while the HW is sampling at
>> * ~25Hz, with the expectation that we spend most of our time blocked
>> @@ -2204,44 +2182,26 @@ static void test_blocking(uint64_t requested_oa_period,
>> * the error delta.
>> */
>> start = get_time();
>> + times(&start_times);
>> do_ioctl(perf_fd, DRM_XE_OBSERVATION_IOCTL_ENABLE, 0);
>> - for (/* nop */; ((end = get_time()) - start) < test_duration_ns; /* nop */) {
>> - bool timer_report_read = false;
>> - bool non_timer_report_read = false;
>> + while (((end = get_time()) - start) < test_duration_ns) {
>> int ret;
>>
>> while ((ret = read(perf_fd, buf, sizeof(buf))) < 0 &&
>> (errno == EINTR || errno == EIO))
>> ;
>> igt_assert_lt(0, ret);
>> -
>> - for (int offset = 0; offset < ret; offset += format_size) {
>> - uint32_t *report = (void *)(buf + offset);
>> -
>> - if (oa_report_is_periodic(report))
>> - timer_report_read = true;
>> - else
>> - non_timer_report_read = true;
>> - }
>> -
>> - if (non_timer_report_read && !timer_report_read)
>> - n_extra_iterations++;
>> -
>> - n++;
>> }
>> -
>> times(&end_times);
>>
>> + __perf_close(perf_fd);
>> +
>> /* Using nanosecond units is fairly silly here, given the tick in-
>> * precision - ah well, it's consistent with the get_time() units.
>> */
>> user_ns = (end_times.tms_utime - start_times.tms_utime) * tick_ns;
>> kernel_ns = (end_times.tms_stime - start_times.tms_stime) * tick_ns;
>>
>> - igt_debug("%d blocking reads during test with %"PRIu64" Hz OA sampling (expect no more than %d)\n",
>> - n, NSEC_PER_SEC / oa_period, max_iterations);
>> - igt_debug("%d extra iterations seen, not related to periodic sampling (e.g. context switches)\n",
>> - n_extra_iterations);
>> igt_debug("time in userspace = %"PRIu64"ns (+-%dns) (start utime = %d, end = %d)\n",
>> user_ns, (int)tick_ns,
>> (int)start_times.tms_utime, (int)end_times.tms_utime);
>> @@ -2249,20 +2209,7 @@ static void test_blocking(uint64_t requested_oa_period,
>> kernel_ns, (int)tick_ns,
>> (int)start_times.tms_stime, (int)end_times.tms_stime);
>>
>> - /* With completely broken blocking (but also not returning an error) we
>> - * could end up with an open loop,
>> - */
>> - igt_assert_lte(n, (max_iterations + n_extra_iterations));
>> -
>> - /* Make sure the driver is reporting new samples with a reasonably
>> - * low latency...
>> - */
>> - igt_assert_lt((min_iterations + n_extra_iterations), n);
>> -
>> - if (!set_kernel_hrtimer)
>> - igt_assert(kernel_ns <= (test_duration_ns / 100ull));
>> -
>> - __perf_close(perf_fd);
>> + igt_assert(kernel_ns <= (test_duration_ns / 100ull));
>
>This check (and the identical check in the polling test) is also sort of
>arbitrary. Should we remove even this? Anyway, it's ok to leave if it is
>passing everywhere. Therefore lgtm:
I wanted to leave it since it still checks that CPU is minimally used in
these cases. Good to catch any regressions in OA implementation if we do
something CPU heavy.
>
>Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
Thanks,
Umesh
^ permalink raw reply [flat|nested] 15+ messages in thread
end of thread, other threads:[~2026-07-21 17:26 UTC | newest]
Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-17 21:00 [PATCH 0/4] Update some OA tests Umesh Nerlige Ramappa
2026-07-17 21:00 ` [PATCH 1/4] tests/intel/xe_oa: Allow disabling load helper from command line Umesh Nerlige Ramappa
2026-07-20 19:37 ` Dixit, Ashutosh
2026-07-17 21:00 ` [PATCH 2/4] tests/intel/xe_oa: Do not assume OA buffer is prefilled with zeroes Umesh Nerlige Ramappa
2026-07-20 19:42 ` Dixit, Ashutosh
2026-07-21 17:19 ` Umesh Nerlige Ramappa
2026-07-17 21:00 ` [PATCH 3/4] tests/intel/xe_oa: Enable capture just prior to reading OA data Umesh Nerlige Ramappa
2026-07-20 20:22 ` Dixit, Ashutosh
2026-07-17 21:00 ` [PATCH 4/4] tests/intel/xe_oa: Cleanup blocking and polling tests Umesh Nerlige Ramappa
2026-07-20 21:08 ` Dixit, Ashutosh
2026-07-21 17:26 ` Umesh Nerlige Ramappa
2026-07-17 22:49 ` ✓ Xe.CI.BAT: success for Update some OA tests Patchwork
2026-07-17 23:08 ` ✓ i915.CI.BAT: " Patchwork
2026-07-18 5:41 ` ✓ Xe.CI.FULL: " Patchwork
2026-07-18 14:11 ` ✗ i915.CI.Full: failure " Patchwork
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.