* [CI 1/2] lib/igt_kmod: Drop legacy kunit fallback
@ 2024-11-21 22:55 Lucas De Marchi
2024-11-21 22:55 ` [CI 2/2] lib/igt_kmod: Fix leaking subtest name Lucas De Marchi
` (5 more replies)
0 siblings, 6 replies; 7+ messages in thread
From: Lucas De Marchi @ 2024-11-21 22:55 UTC (permalink / raw)
To: igt-dev
Kunit has support for listing tests with debugfs for quite some time,
there's no need for the fallback to be happening: let's just start
failing the tests if we can't get the list of tests from debugfs.
Reviewed-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
---
lib/igt_kmod.c | 289 ++-----------------------------------------------
1 file changed, 12 insertions(+), 277 deletions(-)
diff --git a/lib/igt_kmod.c b/lib/igt_kmod.c
index 87036d06c..5224d36a4 100644
--- a/lib/igt_kmod.c
+++ b/lib/igt_kmod.c
@@ -959,121 +959,6 @@ static bool kunit_set_filtering(const char *filter_glob, const char *filter,
return ret;
}
-struct modprobe_data {
- struct kmod_module *kmod;
- const char *opts;
- int err;
- pthread_t parent;
- pthread_mutex_t lock;
- pthread_t thread;
-};
-
-static void *modprobe_task(void *arg)
-{
- struct modprobe_data *data = arg;
-
- data->err = modprobe(data->kmod, data->opts);
-
- if (igt_debug_on(data->err)) {
- bool once = false;
- int err;
-
- while (err = pthread_mutex_trylock(&data->lock),
- err && !igt_debug_on(err != EBUSY)) {
- igt_debug_on(pthread_kill(data->parent, SIGCHLD) &&
- !once);
- once = true;
- }
- } else {
- /* let main thread use mutex to detect modprobe completion */
- igt_debug_on(pthread_mutex_lock(&data->lock));
- }
-
- return NULL;
-}
-
-static void kunit_sigchld_handler(int signal)
-{
-}
-
-static int kunit_kmsg_result_get(struct igt_list_head *results,
- struct modprobe_data *modprobe,
- int fd, struct igt_ktap_results *ktap)
-{
- struct sigaction sigchld = { .sa_handler = kunit_sigchld_handler, },
- saved;
- char record[BUF_LEN + 1], *buf;
- unsigned long taints;
- int ret;
-
- do {
- int err;
-
- if (igt_debug_on(igt_kernel_tainted(&taints)))
- return -ENOTRECOVERABLE;
-
- if (modprobe) {
- err = igt_debug_on(sigaction(SIGCHLD, &sigchld, &saved));
- if (err == -1)
- return -errno;
- else if (unlikely(err))
- return err;
-
- err = pthread_mutex_lock(&modprobe->lock);
- switch (err) {
- case EOWNERDEAD:
- /* leave the mutex unrecoverable */
- igt_debug_on(pthread_mutex_unlock(&modprobe->lock));
- __attribute__ ((fallthrough));
- case ENOTRECOVERABLE:
- igt_debug_on(sigaction(SIGCHLD, &saved, NULL));
- if (igt_debug_on(modprobe->err))
- return modprobe->err;
- break;
- case 0:
- break;
- default:
- igt_debug("pthread_mutex_lock() error: %d\n", err);
- igt_debug_on(sigaction(SIGCHLD, &saved, NULL));
- return -err;
- }
- }
-
- ret = read(fd, record, BUF_LEN);
-
- if (modprobe && !err) { /* pthread_mutex_lock() succeeded */
- igt_debug_on(pthread_mutex_unlock(&modprobe->lock));
- igt_debug_on(sigaction(SIGCHLD, &saved, NULL));
- }
-
- if (igt_debug_on(!ret))
- return -ENODATA;
- if (igt_debug_on(ret == -1))
- return -errno;
- if (unlikely(igt_debug_on(ret < 0)))
- break;
-
- /* skip kmsg continuation lines */
- if (igt_debug_on(*record == ' '))
- continue;
-
- /* NULL-terminate the record */
- record[ret] = '\0';
-
- /* detect start of log message, continue if not found */
- buf = strchrnul(record, ';');
- if (igt_debug_on(*buf == '\0'))
- continue;
- buf++;
-
- ret = igt_ktap_parse(buf, ktap);
- if (!ret || igt_debug_on(ret != -EINPROGRESS))
- break;
- } while (igt_list_empty(results));
-
- return ret;
-}
-
static void kunit_result_free(struct igt_ktap_result **r,
char **suite_name, char **case_name)
{
@@ -1148,147 +1033,7 @@ out_fclose:
return err;
}
-static void __igt_kunit_legacy(struct igt_ktest *tst,
- const char *subtest,
- const char *opts)
-{
- struct modprobe_data modprobe = { tst->kmod, opts, 0, pthread_self(), };
- char *suite_name = NULL, *case_name = NULL;
- struct igt_ktap_results *ktap;
- struct igt_ktap_result *r;
- pthread_mutexattr_t attr;
- IGT_LIST_HEAD(results);
- unsigned long taints;
- int flags, ret;
-
- igt_skip_on_f(tst->kmsg < 0, "Could not open /dev/kmsg\n");
-
- igt_skip_on((flags = fcntl(tst->kmsg, F_GETFL, 0), flags < 0));
- igt_skip_on_f(fcntl(tst->kmsg, F_SETFL, flags & ~O_NONBLOCK) == -1,
- "Could not set /dev/kmsg to blocking mode\n");
-
- igt_skip_on(lseek(tst->kmsg, 0, SEEK_END) < 0);
-
- igt_skip_on(pthread_mutexattr_init(&attr));
- igt_skip_on(pthread_mutexattr_setrobust(&attr, PTHREAD_MUTEX_ROBUST));
- igt_skip_on(pthread_mutex_init(&modprobe.lock, &attr));
-
- ktap = igt_ktap_alloc(&results);
- igt_require(ktap);
-
- if (igt_debug_on(pthread_create(&modprobe.thread, NULL,
- modprobe_task, &modprobe))) {
- igt_ktap_free(&ktap);
- igt_skip("Failed to create a modprobe thread\n");
- }
-
- do {
- ret = kunit_kmsg_result_get(&results, &modprobe,
- tst->kmsg, ktap);
- if (igt_debug_on(ret && ret != -EINPROGRESS))
- break;
-
- if (igt_debug_on(igt_list_empty(&results)))
- break;
-
- r = igt_list_first_entry(&results, r, link);
-
- igt_dynamic_f("%s%s%s",
- strcmp(r->suite_name, subtest) ? r->suite_name : "",
- strcmp(r->suite_name, subtest) ? "-" : "",
- r->case_name) {
-
- if (r->code == IGT_EXIT_INVALID) {
- /* parametrized test case, get actual result */
- kunit_result_free(&r, &suite_name, &case_name);
-
- igt_assert(igt_list_empty(&results));
-
- ret = kunit_kmsg_result_get(&results, &modprobe,
- tst->kmsg, ktap);
- if (ret != -EINPROGRESS)
- igt_fail_on(ret);
-
- igt_fail_on(igt_list_empty(&results));
-
- r = igt_list_first_entry(&results, r, link);
-
- igt_fail_on_f(strcmp(r->suite_name, suite_name),
- "suite_name expected: %s, got: %s\n",
- suite_name, r->suite_name);
- igt_fail_on_f(strcmp(r->case_name, case_name),
- "case_name expected: %s, got: %s\n",
- case_name, r->case_name);
- }
-
- igt_assert_neq(r->code, IGT_EXIT_INVALID);
-
- if (r->msg && *r->msg) {
- igt_skip_on_f(r->code == IGT_EXIT_SKIP,
- "%s\n", r->msg);
- igt_fail_on_f(r->code == IGT_EXIT_FAILURE,
- "%s\n", r->msg);
- igt_abort_on_f(r->code == IGT_EXIT_ABORT,
- "%s\n", r->msg);
- } else {
- igt_skip_on(r->code == IGT_EXIT_SKIP);
- igt_fail_on(r->code == IGT_EXIT_FAILURE);
- if (r->code == IGT_EXIT_ABORT)
- igt_fail(r->code);
- }
- igt_assert_eq(r->code, IGT_EXIT_SUCCESS);
-
- switch (pthread_mutex_lock(&modprobe.lock)) {
- case 0:
- igt_debug_on(pthread_mutex_unlock(&modprobe.lock));
- break;
- case EOWNERDEAD:
- /* leave the mutex unrecoverable */
- igt_debug_on(pthread_mutex_unlock(&modprobe.lock));
- __attribute__ ((fallthrough));
- case ENOTRECOVERABLE:
- igt_assert_eq(modprobe.err, 0);
- break;
- default:
- igt_debug("pthread_mutex_lock() failed\n");
- break;
- }
-
- igt_assert_eq(igt_kernel_tainted(&taints), 0);
- }
-
- kunit_result_free(&r, &suite_name, &case_name);
-
- } while (ret == -EINPROGRESS);
-
- kunit_results_free(&results, &suite_name, &case_name);
-
- switch (pthread_mutex_lock(&modprobe.lock)) {
- case 0:
- igt_debug_on(pthread_cancel(modprobe.thread));
- igt_debug_on(pthread_mutex_unlock(&modprobe.lock));
- igt_debug_on(pthread_join(modprobe.thread, NULL));
- break;
- case EOWNERDEAD:
- /* leave the mutex unrecoverable */
- igt_debug_on(pthread_mutex_unlock(&modprobe.lock));
- break;
- case ENOTRECOVERABLE:
- break;
- default:
- igt_debug("pthread_mutex_lock() failed\n");
- igt_debug_on(pthread_join(modprobe.thread, NULL));
- break;
- }
-
- igt_ktap_free(&ktap);
-
- igt_skip_on(modprobe.err);
- igt_skip_on(igt_kernel_tainted(&taints));
- igt_skip_on_f(ret, "KTAP parser failed\n");
-}
-
-static bool kunit_get_tests(struct igt_list_head *tests,
+static void kunit_get_tests(struct igt_list_head *tests,
struct igt_ktest *tst,
const char *suite,
const char *opts,
@@ -1302,7 +1047,7 @@ static bool kunit_get_tests(struct igt_list_head *tests,
*debugfs_dir = opendir(debugfs_path);
if (igt_debug_on(!*debugfs_dir))
- return false;
+ return;
/*
* To get a list of test cases provided by a kunit test module, ask the
@@ -1313,7 +1058,7 @@ static bool kunit_get_tests(struct igt_list_head *tests,
* a free text list of unknown length from /dev/kmsg.
*/
if (igt_debug_on(!kunit_set_filtering(suite, "module=none", "skip")))
- return false;
+ return;
if (!suite) {
seekdir(*debugfs_dir, 2); /* directory itself and its parent */
@@ -1350,8 +1095,6 @@ static bool kunit_get_tests(struct igt_list_head *tests,
igt_list_for_each_entry_safe(r, rn, tests, link)
igt_require_f(r->code == IGT_EXIT_SKIP,
"Unexpected non-SKIP result while listing test cases\n");
-
- return true;
}
static void __igt_kunit(struct igt_ktest *tst,
@@ -1476,8 +1219,13 @@ void igt_kunit(const char *module_name, const char *suite, const char *opts)
}
}
+ /* We need the base KUnit module loaded if not built-in */
+ igt_ignore_warn(igt_kmod_load("kunit", NULL));
+ kunit_debugfs_path(debugfs_path);
+
igt_fixture {
igt_require(subtest);
+ igt_require(*debugfs_path);
igt_skip_on(igt_ktest_init(&tst, module_name));
igt_skip_on(igt_ktest_begin(&tst));
@@ -1485,30 +1233,17 @@ void igt_kunit(const char *module_name, const char *suite, const char *opts)
igt_assert(igt_list_empty(&tests));
}
- /* We need the base KUnit module loaded if not built-in */
- igt_ignore_warn(igt_kmod_load("kunit", NULL));
-
/*
* We need to use igt_subtest here, as otherwise it may crash with:
- * skipping is allowed only in fixtures, subtests or igt_simple_main
+ * "skipping is allowed only in fixtures, subtests or igt_simple_main"
* if used on igt_main. This is also needed in order to provide
* proper namespace for dynamic subtests, with is required for CI
* and for documentation.
*/
igt_subtest_with_dynamic(subtest) {
- /*
- * TODO: As soon as no longer needed by major Linux
- * distributions, replace the fallback to
- * __igt_kunit_legacy() processing path, required by
- * LTS kernels not capable of using KUnit filters for
- * listing test cases in KTAP format, with igt_require.
- */
- kunit_debugfs_path(debugfs_path);
- if (igt_debug_on(!*debugfs_path) ||
- !kunit_get_tests(&tests, &tst, suite, opts, debugfs_path, &debugfs_dir, &ktap))
- __igt_kunit_legacy(&tst, subtest, opts);
- else
- __igt_kunit(&tst, subtest, opts, debugfs_path, &tests, &ktap);
+ kunit_get_tests(&tests, &tst, suite, opts,
+ debugfs_path, &debugfs_dir, &ktap);
+ __igt_kunit(&tst, subtest, opts, debugfs_path, &tests, &ktap);
}
igt_fixture {
--
2.47.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [CI 2/2] lib/igt_kmod: Fix leaking subtest name
2024-11-21 22:55 [CI 1/2] lib/igt_kmod: Drop legacy kunit fallback Lucas De Marchi
@ 2024-11-21 22:55 ` Lucas De Marchi
2024-11-22 0:29 ` ✓ Xe.CI.BAT: success for series starting with [CI,1/2] lib/igt_kmod: Drop legacy kunit fallback Patchwork
` (4 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Lucas De Marchi @ 2024-11-21 22:55 UTC (permalink / raw)
To: igt-dev
Keep it simple, checking by !suite and then assigning subtest
accordingly. Since this is done only once, always call strdup()
and free().
Reviewed-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
---
lib/igt_kmod.c | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/lib/igt_kmod.c b/lib/igt_kmod.c
index 5224d36a4..3729a053c 100644
--- a/lib/igt_kmod.c
+++ b/lib/igt_kmod.c
@@ -1197,8 +1197,8 @@ void igt_kunit(const char *module_name, const char *suite, const char *opts)
char debugfs_path[PATH_MAX] = { '\0', };
struct igt_ktest tst = { .kmsg = -1, };
struct igt_ktap_results *ktap = NULL;
- const char *subtest = suite;
DIR *debugfs_dir = NULL;
+ char *subtest;
IGT_LIST_HEAD(tests);
/*
@@ -1206,7 +1206,9 @@ void igt_kunit(const char *module_name, const char *suite, const char *opts)
* we take the module name, drop the trailing "_test" or "_kunit"
* suffix, if any, and use the result as our IGT subtest name.
*/
- if (!subtest) {
+ if (suite) {
+ subtest = strdup(suite);
+ } else {
subtest = strdup(module_name);
if (!igt_debug_on(!subtest)) {
char *suffix = strstr(subtest, "_test");
@@ -1259,6 +1261,7 @@ void igt_kunit(const char *module_name, const char *suite, const char *opts)
igt_ktest_end(&tst);
}
+ free(subtest);
igt_ktest_fini(&tst);
}
--
2.47.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
* ✓ Xe.CI.BAT: success for series starting with [CI,1/2] lib/igt_kmod: Drop legacy kunit fallback
2024-11-21 22:55 [CI 1/2] lib/igt_kmod: Drop legacy kunit fallback Lucas De Marchi
2024-11-21 22:55 ` [CI 2/2] lib/igt_kmod: Fix leaking subtest name Lucas De Marchi
@ 2024-11-22 0:29 ` Patchwork
2024-11-22 0:32 ` ✓ i915.CI.BAT: " Patchwork
` (3 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-11-22 0:29 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1986 bytes --]
== Series Details ==
Series: series starting with [CI,1/2] lib/igt_kmod: Drop legacy kunit fallback
URL : https://patchwork.freedesktop.org/series/141680/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8121_BAT -> XEIGTPW_12168_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_12168_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@bad-pitch-0:
- bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#3429]) +31 other tests dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/bat-adlp-7/igt@kms_addfb_basic@bad-pitch-0.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/bat-adlp-7/igt@kms_addfb_basic@bad-pitch-0.html
#### Possible fixes ####
* igt@kms_frontbuffer_tracking@basic:
- bat-adlp-7: [FAIL][3] ([Intel XE#1861]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
[Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861
[Intel XE#3429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3429
Build changes
-------------
* IGT: IGT_8121 -> IGTPW_12168
* Linux: xe-2257-e46649e7764a9f6868ccbcba7b8b23b413303380 -> xe-2259-bb17c42521f57b592e9ad49daca1f9f9045d3199
IGTPW_12168: 12168
IGT_8121: 8121
xe-2257-e46649e7764a9f6868ccbcba7b8b23b413303380: e46649e7764a9f6868ccbcba7b8b23b413303380
xe-2259-bb17c42521f57b592e9ad49daca1f9f9045d3199: bb17c42521f57b592e9ad49daca1f9f9045d3199
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/index.html
[-- Attachment #2: Type: text/html, Size: 2584 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ i915.CI.BAT: success for series starting with [CI,1/2] lib/igt_kmod: Drop legacy kunit fallback
2024-11-21 22:55 [CI 1/2] lib/igt_kmod: Drop legacy kunit fallback Lucas De Marchi
2024-11-21 22:55 ` [CI 2/2] lib/igt_kmod: Fix leaking subtest name Lucas De Marchi
2024-11-22 0:29 ` ✓ Xe.CI.BAT: success for series starting with [CI,1/2] lib/igt_kmod: Drop legacy kunit fallback Patchwork
@ 2024-11-22 0:32 ` Patchwork
2024-11-22 17:36 ` ✗ Xe.CI.Full: failure " Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-11-22 0:32 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: igt-dev
== Series Details ==
Series: series starting with [CI,1/2] lib/igt_kmod: Drop legacy kunit fallback
URL : https://patchwork.freedesktop.org/series/141680/
State : success
== Summary ==
CI Bug Log - changes from IGT_8121 -> IGTPW_12168
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/index.html
Participating hosts (45 -> 44)
------------------------------
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_12168 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@dmabuf@all-tests@dma_fence_chain:
- fi-bsw-nick: [PASS][1] -> [INCOMPLETE][2] ([i915#12904]) +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8121/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html
* igt@i915_selftest@live@gt_mocs:
- bat-twl-2: [PASS][3] -> [ABORT][4] ([i915#12919]) +1 other test abort
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8121/bat-twl-2/igt@i915_selftest@live@gt_mocs.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/bat-twl-2/igt@i915_selftest@live@gt_mocs.html
#### Possible fixes ####
* igt@i915_module_load@load:
- {bat-mtlp-9}: [INCOMPLETE][5] -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8121/bat-mtlp-9/igt@i915_module_load@load.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/bat-mtlp-9/igt@i915_module_load@load.html
* igt@i915_pm_rpm@module-reload:
- bat-dg2-11: [FAIL][7] ([i915#12903]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8121/bat-dg2-11/igt@i915_pm_rpm@module-reload.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/bat-dg2-11/igt@i915_pm_rpm@module-reload.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- bat-dg2-13: [DMESG-WARN][9] ([i915#12253]) -> [PASS][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8121/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-dg2-11: [SKIP][11] ([i915#9197]) -> [PASS][12] +3 other tests pass
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8121/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
* igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-b-dp-1:
- bat-apl-1: [DMESG-WARN][13] -> [PASS][14] +1 other test pass
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8121/bat-apl-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-b-dp-1.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/bat-apl-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-b-dp-1.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12253]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12253
[i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903
[i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904
[i915#12915]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12915
[i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#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#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#9159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9159
[i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8121 -> IGTPW_12168
* Linux: CI_DRM_15725 -> CI_DRM_15727
CI-20190529: 20190529
CI_DRM_15725: e46649e7764a9f6868ccbcba7b8b23b413303380 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_15727: bb17c42521f57b592e9ad49daca1f9f9045d3199 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12168: 12168
IGT_8121: 8121
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/index.html
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ Xe.CI.Full: failure for series starting with [CI,1/2] lib/igt_kmod: Drop legacy kunit fallback
2024-11-21 22:55 [CI 1/2] lib/igt_kmod: Drop legacy kunit fallback Lucas De Marchi
` (2 preceding siblings ...)
2024-11-22 0:32 ` ✓ i915.CI.BAT: " Patchwork
@ 2024-11-22 17:36 ` Patchwork
2024-11-24 13:30 ` ✗ i915.CI.Full: " Patchwork
2024-12-02 21:59 ` [CI 1/2] " Lucas De Marchi
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-11-22 17:36 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 127856 bytes --]
== Series Details ==
Series: series starting with [CI,1/2] lib/igt_kmod: Drop legacy kunit fallback
URL : https://patchwork.freedesktop.org/series/141680/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8121_full -> XEIGTPW_12168_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12168_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12168_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12168_full:
### IGT changes ###
#### Possible regressions ####
* igt@core_hotunplug@hotreplug:
- shard-bmg: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@core_hotunplug@hotreplug.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-6/igt@core_hotunplug@hotreplug.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-edp-1:
- shard-lnl: [PASS][3] -> [DMESG-WARN][4] +3 other tests dmesg-warn
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-1/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-edp-1.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-lnl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-edp-1.html
* igt@kms_flip@flip-vs-suspend@b-dp4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][5]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-463/igt@kms_flip@flip-vs-suspend@b-dp4.html
* igt@kms_flip@flip-vs-suspend@b-hdmi-a6:
- shard-dg2-set2: NOTRUN -> [DMESG-FAIL][6]
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-463/igt@kms_flip@flip-vs-suspend@b-hdmi-a6.html
* igt@xe_evict@evict-beng-threads-large:
- shard-bmg: [PASS][7] -> [DMESG-WARN][8] +4 other tests dmesg-warn
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@xe_evict@evict-beng-threads-large.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-6/igt@xe_evict@evict-beng-threads-large.html
* igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-rebind:
- shard-lnl: [PASS][9] -> [FAIL][10]
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-4/igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-rebind.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-lnl-6/igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-rebind.html
#### Warnings ####
* igt@kms_hdmi_inject@inject-audio:
- shard-dg2-set2: [SKIP][11] ([Intel XE#2423] / [i915#2575]) -> [FAIL][12]
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_hdmi_inject@inject-audio.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-463/igt@kms_hdmi_inject@inject-audio.html
* igt@xe_live_ktest@xe_bo:
- shard-dg2-set2: [TIMEOUT][13] ([Intel XE#2961] / [Intel XE#3191]) -> [INCOMPLETE][14] +1 other test incomplete
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@xe_live_ktest@xe_bo.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-434/igt@xe_live_ktest@xe_bo.html
Known issues
------------
Here are the changes found in XEIGTPW_12168_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_getversion@all-cards:
- shard-dg2-set2: [PASS][15] -> [FAIL][16] ([Intel XE#3440]) +1 other test fail
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@core_getversion@all-cards.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-434/igt@core_getversion@all-cards.html
* igt@core_hotunplug@hotunbind-rebind:
- shard-dg2-set2: [PASS][17] -> [SKIP][18] ([Intel XE#1885])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@core_hotunplug@hotunbind-rebind.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-466/igt@core_hotunplug@hotunbind-rebind.html
* igt@core_setmaster@master-drop-set-root:
- shard-dg2-set2: [PASS][19] -> [FAIL][20] ([Intel XE#3249])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@core_setmaster@master-drop-set-root.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-434/igt@core_setmaster@master-drop-set-root.html
* igt@core_setmaster@master-drop-set-shared-fd:
- shard-dg2-set2: [PASS][21] -> [SKIP][22] ([Intel XE#3453])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@core_setmaster@master-drop-set-shared-fd.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-466/igt@core_setmaster@master-drop-set-shared-fd.html
* igt@core_setmaster@master-drop-set-user:
- shard-dg2-set2: [PASS][23] -> [FAIL][24] ([Intel XE#3339])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@core_setmaster@master-drop-set-user.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-466/igt@core_setmaster@master-drop-set-user.html
* igt@fbdev@eof:
- shard-dg2-set2: [PASS][25] -> [SKIP][26] ([Intel XE#2134]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@fbdev@eof.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-434/igt@fbdev@eof.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-3:
- shard-bmg: [PASS][27] -> [INCOMPLETE][28] ([Intel XE#3468])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-3.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-2/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-3.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#2550]) +23 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-436/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-lnl: NOTRUN -> [FAIL][30] ([Intel XE#3162])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-lnl-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2327])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-1/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#1407])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-lnl-6/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-0:
- shard-bmg: [PASS][33] -> [DMESG-FAIL][34] ([Intel XE#3468]) +12 other tests dmesg-fail
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_big_fb@x-tiled-16bpp-rotate-0.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-2/igt@kms_big_fb@x-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-bmg: [PASS][35] -> [DMESG-FAIL][36] ([Intel XE#2705] / [Intel XE#3468]) +1 other test dmesg-fail
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0:
- shard-dg2-set2: [PASS][37] -> [SKIP][38] ([Intel XE#2136]) +40 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-466/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#1124]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-1/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#1124]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-463/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#1124]) +2 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-lnl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-bmg: [PASS][42] -> [SKIP][43] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#455] / [Intel XE#787]) +11 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-433/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [PASS][45] -> [SKIP][46] ([Intel XE#2136] / [Intel XE#2351]) +12 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2887])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-4/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#2887])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-lnl-3/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [PASS][49] -> [INCOMPLETE][50] ([Intel XE#1727]) +3 other tests incomplete
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-433/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs@pipe-b-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2652] / [Intel XE#787]) +4 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs@pipe-b-hdmi-a-3.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#787]) +83 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-463/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#2907])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4:
- shard-dg2-set2: [PASS][54] -> [INCOMPLETE][55] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html
* igt@kms_chamelium_edid@dp-edid-resolution-list:
- shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#373]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-lnl-3/igt@kms_chamelium_edid@dp-edid-resolution-list.html
* igt@kms_chamelium_hpd@dp-hpd-after-hibernate:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2252]) +3 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-2/igt@kms_chamelium_hpd@dp-hpd-after-hibernate.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#373])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-463/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_color@deep-color@pipe-a-edp-1-ctm:
- shard-lnl: [PASS][59] -> [DMESG-WARN][60] ([Intel XE#2929]) +1 other test dmesg-warn
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-6/igt@kms_color@deep-color@pipe-a-edp-1-ctm.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-lnl-2/igt@kms_color@deep-color@pipe-a-edp-1-ctm.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2390])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-6/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#307])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-lnl-6/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@srm@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][63] ([Intel XE#1178])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-1/igt@kms_content_protection@srm@pipe-a-dp-2.html
* igt@kms_content_protection@uevent@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][64] ([Intel XE#1188])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-433/igt@kms_content_protection@uevent@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#2321])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-lnl-2/igt@kms_cursor_crc@cursor-offscreen-512x170.html
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2321])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-4/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-64x21:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2320]) +2 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-2/igt@kms_cursor_crc@cursor-random-64x21.html
- shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#1424])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-lnl-6/igt@kms_cursor_crc@cursor-random-64x21.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-bmg: [PASS][69] -> [INCOMPLETE][70] ([Intel XE#1727] / [Intel XE#3226] / [Intel XE#3468])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-8/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-1/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#2423] / [i915#2575]) +15 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-466/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-bmg: [PASS][72] -> [SKIP][73] ([Intel XE#2291]) +2 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#309]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-lnl-3/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#1340])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
* igt@kms_draw_crc@draw-method-mmap-wc@rgb565-4tiled:
- shard-bmg: [PASS][76] -> [INCOMPLETE][77] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3468])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_draw_crc@draw-method-mmap-wc@rgb565-4tiled.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-1/igt@kms_draw_crc@draw-method-mmap-wc@rgb565-4tiled.html
* igt@kms_dsc@dsc-with-bpc:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#2244])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-lnl-1/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#455]) +4 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-436/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3:
- shard-bmg: [PASS][80] -> [FAIL][81] ([Intel XE#3321] / [Intel XE#3486])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][82] ([Intel XE#301]) +5 other tests fail
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-bmg: [PASS][83] -> [SKIP][84] ([Intel XE#2316]) +6 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@dpms-off-confusion-interruptible@b-hdmi-a3:
- shard-bmg: NOTRUN -> [DMESG-WARN][85] ([Intel XE#3468]) +18 other tests dmesg-warn
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-2/igt@kms_flip@dpms-off-confusion-interruptible@b-hdmi-a3.html
* igt@kms_flip@flip-vs-expired-vblank@a-edp1:
- shard-lnl: [PASS][86] -> [FAIL][87] ([Intel XE#886]) +3 other tests fail
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [PASS][88] -> [DMESG-FAIL][89] ([Intel XE#1727] / [Intel XE#3468]) +6 other tests dmesg-fail
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@kms_flip@flip-vs-suspend-interruptible.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-2/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend@a-dp4:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][90] ([Intel XE#1727] / [Intel XE#3468])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-463/igt@kms_flip@flip-vs-suspend@a-dp4.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a6:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][91] ([Intel XE#3468])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-463/igt@kms_flip@flip-vs-suspend@a-hdmi-a6.html
* igt@kms_flip@flip-vs-suspend@c-hdmi-a6:
- shard-dg2-set2: NOTRUN -> [DMESG-FAIL][92] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-fail
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-463/igt@kms_flip@flip-vs-suspend@c-hdmi-a6.html
* igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3:
- shard-bmg: [PASS][93] -> [DMESG-WARN][94] ([Intel XE#3468]) +74 other tests dmesg-warn
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-2/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-valid-mode:
- shard-bmg: [PASS][95] -> [DMESG-WARN][96] ([Intel XE#1727] / [Intel XE#3468]) +10 other tests dmesg-warn
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-valid-mode.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-modesetfrombusy:
- shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#651]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2312]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [FAIL][99] ([Intel XE#2333]) +2 other tests fail
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#651])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#656]) +2 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2311]) +4 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#2136] / [Intel XE#2351]) +5 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move:
- shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#653])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
* igt@kms_hdr@static-toggle-dpms:
- shard-dg2-set2: [PASS][105] -> [DMESG-WARN][106] ([Intel XE#1727]) +4 other tests dmesg-warn
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_hdr@static-toggle-dpms.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-435/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_hdr@static-toggle-dpms@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [DMESG-WARN][107] ([Intel XE#1727]) +1 other test dmesg-warn
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-1/igt@kms_hdr@static-toggle-dpms@pipe-a-dp-2.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#2934])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-1/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-bmg: [PASS][109] -> [SKIP][110] ([Intel XE#3012])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-8/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#2927])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#2486])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-1/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][113] ([Intel XE#1727] / [Intel XE#3468])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-433/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-6.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b:
- shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#2763]) +11 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-435/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d:
- shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#870])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-433/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [PASS][117] -> [FAIL][118] ([Intel XE#718])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-lnl-7/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_dc@dc5-psr:
- shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2392])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-1/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-bmg: [PASS][120] -> [INCOMPLETE][121] ([Intel XE#1727] / [Intel XE#3468]) +1 other test incomplete
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@universal-planes:
- shard-dg2-set2: [PASS][122] -> [SKIP][123] ([Intel XE#2446]) +3 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_pm_rpm@universal-planes.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-466/igt@kms_pm_rpm@universal-planes.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#2893]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-lnl-3/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-update-sf:
- shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#1489]) +2 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-2/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#2136]) +13 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-466/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr2-sprite-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-433/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
* igt@kms_psr@psr2-cursor-blt:
- shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-2/igt@kms_psr@psr2-cursor-blt.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#3414]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-lnl-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@sprite-rotation-180:
- shard-dg2-set2: [PASS][130] -> [SKIP][131] ([Intel XE#2423] / [i915#2575]) +118 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_rotation_crc@sprite-rotation-180.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-466/igt@kms_rotation_crc@sprite-rotation-180.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#3414]) +1 other test skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-2/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#2413])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-4/igt@kms_scaling_modes@scaling-mode-none.html
- shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#2413] / [Intel XE#374])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-lnl-8/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#374]) +2 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-lnl-8/igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-bmg: [PASS][136] -> [SKIP][137] ([Intel XE#1435]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_setmode@clone-exclusive-crtc.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- shard-lnl: [PASS][138] -> [FAIL][139] ([Intel XE#899])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-3/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@kms_vblank@query-idle-hang@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [DMESG-FAIL][140] ([Intel XE#3468])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-4/igt@kms_vblank@query-idle-hang@pipe-a-dp-2.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [PASS][141] -> [FAIL][142] ([Intel XE#2159]) +1 other test fail
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-lnl-7/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@kms_vrr@negative-basic:
- shard-bmg: [PASS][143] -> [SKIP][144] ([Intel XE#1499])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_vrr@negative-basic.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-6/igt@kms_vrr@negative-basic.html
* igt@xe_eudebug@basic-read-event:
- shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#2905]) +2 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-6/igt@xe_eudebug@basic-read-event.html
* igt@xe_eudebug@basic-vms:
- shard-dg2-set2: NOTRUN -> [SKIP][146] ([Intel XE#2905])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-435/igt@xe_eudebug@basic-vms.html
* igt@xe_eudebug@multigpu-basic-client-many:
- shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#2905]) +2 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-lnl-4/igt@xe_eudebug@multigpu-basic-client-many.html
* igt@xe_evict@evict-small-cm:
- shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#688]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-lnl-1/igt@xe_evict@evict-small-cm.html
* igt@xe_exec_balancer@many-cm-virtual-userptr-invalidate-race:
- shard-bmg: [PASS][149] -> [DMESG-WARN][150] ([Intel XE#1727]) +2 other tests dmesg-warn
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@xe_exec_balancer@many-cm-virtual-userptr-invalidate-race.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-1/igt@xe_exec_balancer@many-cm-virtual-userptr-invalidate-race.html
* igt@xe_exec_balancer@once-parallel-rebind:
- shard-dg2-set2: [PASS][151] -> [SKIP][152] ([Intel XE#1130]) +231 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@xe_exec_balancer@once-parallel-rebind.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-434/igt@xe_exec_balancer@once-parallel-rebind.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null:
- shard-bmg: NOTRUN -> [SKIP][153] ([Intel XE#2322]) +1 other test skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null.html
* igt@xe_exec_fault_mode@many-execqueues-invalid-fault:
- shard-dg2-set2: NOTRUN -> [SKIP][154] ([Intel XE#288]) +1 other test skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-463/igt@xe_exec_fault_mode@many-execqueues-invalid-fault.html
* igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready:
- shard-bmg: [PASS][155] -> [DMESG-WARN][156] ([Intel XE#3467] / [Intel XE#3468])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init:
- shard-bmg: [PASS][157] -> [DMESG-WARN][158] ([Intel XE#3343])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init:
- shard-dg2-set2: [PASS][159] -> [DMESG-WARN][160] ([Intel XE#3467])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-435/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html
* igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare:
- shard-bmg: NOTRUN -> [DMESG-FAIL][161] ([Intel XE#3467])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
* igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind:
- shard-dg2-set2: NOTRUN -> [SKIP][162] ([Intel XE#1130]) +24 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-434/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html
* igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch:
- shard-bmg: [PASS][163] -> [DMESG-WARN][164] ([Intel XE#3467]) +2 other tests dmesg-warn
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-8/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-6/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html
* igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit:
- shard-dg2-set2: [PASS][165] -> [SKIP][166] ([Intel XE#2229]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-434/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
- shard-bmg: [PASS][167] -> [INCOMPLETE][168] ([Intel XE#2998]) +1 other test incomplete
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-8/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-4/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
* igt@xe_module_load@force-load:
- shard-bmg: NOTRUN -> [SKIP][169] ([Intel XE#2457])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-6/igt@xe_module_load@force-load.html
* igt@xe_module_load@many-reload:
- shard-dg2-set2: [PASS][170] -> [FAIL][171] ([Intel XE#3546])
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@xe_module_load@many-reload.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-434/igt@xe_module_load@many-reload.html
* igt@xe_oa@syncs-ufence-wait-cfg:
- shard-dg2-set2: NOTRUN -> [SKIP][172] ([Intel XE#3573])
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-463/igt@xe_oa@syncs-ufence-wait-cfg.html
* igt@xe_oa@unprivileged-single-ctx-counters:
- shard-bmg: NOTRUN -> [SKIP][173] ([Intel XE#2248])
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-6/igt@xe_oa@unprivileged-single-ctx-counters.html
* igt@xe_pm@s2idle-exec-after:
- shard-dg2-set2: [PASS][174] -> [DMESG-WARN][175] ([Intel XE#1727] / [Intel XE#3468])
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@xe_pm@s2idle-exec-after.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-436/igt@xe_pm@s2idle-exec-after.html
* igt@xe_pm@s2idle-multiple-execs:
- shard-bmg: [PASS][176] -> [DMESG-WARN][177] ([Intel XE#1616] / [Intel XE#1727] / [Intel XE#3468])
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@xe_pm@s2idle-multiple-execs.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-1/igt@xe_pm@s2idle-multiple-execs.html
* igt@xe_pm@s2idle-vm-bind-prefetch:
- shard-bmg: [PASS][178] -> [DMESG-WARN][179] ([Intel XE#1616] / [Intel XE#3468])
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@xe_pm@s2idle-vm-bind-prefetch.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-6/igt@xe_pm@s2idle-vm-bind-prefetch.html
* igt@xe_pm@s3-basic:
- shard-bmg: [PASS][180] -> [DMESG-WARN][181] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569])
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@xe_pm@s3-basic.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-2/igt@xe_pm@s3-basic.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-bmg: [PASS][182] -> [ABORT][183] ([Intel XE#1794])
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@xe_pm@s4-vm-bind-unbind-all.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-4/igt@xe_pm@s4-vm-bind-unbind-all.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-lnl: NOTRUN -> [SKIP][184] ([Intel XE#3342])
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-lnl-1/igt@xe_sriov_flr@flr-vf1-clear.html
- shard-bmg: NOTRUN -> [SKIP][185] ([Intel XE#3342])
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-1/igt@xe_sriov_flr@flr-vf1-clear.html
#### Possible fixes ####
* igt@core_hotunplug@hotrebind-lateclose:
- shard-lnl: [DMESG-WARN][186] -> [PASS][187]
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-3/igt@core_hotunplug@hotrebind-lateclose.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-lnl-3/igt@core_hotunplug@hotrebind-lateclose.html
* igt@core_hotunplug@hotreplug:
- shard-dg2-set2: [SKIP][188] ([Intel XE#1885]) -> [PASS][189]
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@core_hotunplug@hotreplug.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-433/igt@core_hotunplug@hotreplug.html
* igt@fbdev@write:
- shard-dg2-set2: [SKIP][190] ([Intel XE#2134]) -> [PASS][191] +1 other test pass
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@fbdev@write.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-463/igt@fbdev@write.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-bmg: [DMESG-WARN][192] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][193]
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-bmg: [DMESG-WARN][194] -> [PASS][195]
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-bmg: [SKIP][196] ([Intel XE#2291]) -> [PASS][197] +3 other tests pass
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_dp_aux_dev:
- shard-dg2-set2: [SKIP][198] ([Intel XE#2423]) -> [PASS][199] +1 other test pass
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_dp_aux_dev.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-463/igt@kms_dp_aux_dev.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-bmg: [SKIP][200] ([Intel XE#2316]) -> [PASS][201] +4 other tests pass
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-1/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3:
- shard-bmg: [FAIL][202] ([Intel XE#3486]) -> [PASS][203] +1 other test pass
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1:
- shard-lnl: [FAIL][204] ([Intel XE#886]) -> [PASS][205] +1 other test pass
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-lnl-1/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a6:
- shard-dg2-set2: [FAIL][206] ([Intel XE#301]) -> [PASS][207]
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a6.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a6.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling:
- shard-bmg: [INCOMPLETE][208] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][209] +1 other test pass
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html
- shard-dg2-set2: [INCOMPLETE][210] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][211] +1 other test pass
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html
* igt@kms_force_connector_basic@force-edid:
- shard-dg2-set2: [DMESG-WARN][212] ([Intel XE#1727]) -> [PASS][213] +2 other tests pass
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@kms_force_connector_basic@force-edid.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-436/igt@kms_force_connector_basic@force-edid.html
* igt@kms_frontbuffer_tracking@basic:
- shard-dg2-set2: [SKIP][214] ([Intel XE#2351]) -> [PASS][215]
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_frontbuffer_tracking@basic.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-433/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][216] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][217] +6 other tests pass
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move:
- shard-dg2-set2: [SKIP][218] ([Intel XE#2136]) -> [PASS][219] +18 other tests pass
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html
* igt@kms_lease@invalid-create-leases:
- shard-dg2-set2: [SKIP][220] ([Intel XE#2423] / [i915#2575]) -> [PASS][221] +60 other tests pass
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_lease@invalid-create-leases.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-463/igt@kms_lease@invalid-create-leases.html
* igt@kms_plane@pixel-format@pipe-b-plane-3:
- shard-bmg: [DMESG-WARN][222] ([Intel XE#877]) -> [PASS][223] +1 other test pass
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_plane@pixel-format@pipe-b-plane-3.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-1/igt@kms_plane@pixel-format@pipe-b-plane-3.html
* igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64:
- shard-dg2-set2: [FAIL][224] ([Intel XE#616]) -> [PASS][225] +1 other test pass
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-463/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
* igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-256:
- shard-bmg: [DMESG-FAIL][226] -> [PASS][227]
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-256.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-1/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-256.html
* igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-64:
- shard-bmg: [DMESG-FAIL][228] ([Intel XE#3468]) -> [PASS][229] +6 other tests pass
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-64.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-1/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-64.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-bmg: [SKIP][230] ([Intel XE#2571]) -> [PASS][231]
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [FAIL][232] ([Intel XE#1430]) -> [PASS][233]
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-6/igt@kms_pm_dc@dc6-psr.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2-set2: [SKIP][234] ([Intel XE#2446]) -> [PASS][235] +2 other tests pass
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-463/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-3:
- shard-bmg: [FAIL][236] ([Intel XE#3559]) -> [PASS][237] +1 other test pass
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_setmode@basic@pipe-a-hdmi-a-3.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-6/igt@kms_setmode@basic@pipe-a-hdmi-a-3.html
* igt@kms_vblank@ts-continuation-dpms-rpm@pipe-a-dp-2:
- shard-bmg: [DMESG-WARN][238] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][239] +2 other tests pass
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-a-dp-2.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-1/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-a-dp-2.html
* igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-3:
- shard-bmg: [DMESG-WARN][240] ([Intel XE#3468]) -> [PASS][241] +35 other tests pass
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-3.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-1/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-3.html
* igt@xe_compute@ccs-mode-basic:
- shard-bmg: [INCOMPLETE][242] ([Intel XE#1727]) -> [PASS][243]
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@xe_compute@ccs-mode-basic.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-2/igt@xe_compute@ccs-mode-basic.html
* igt@xe_evict@evict-large-multi-vm-cm:
- shard-bmg: [FAIL][244] ([Intel XE#2364]) -> [PASS][245]
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@xe_evict@evict-large-multi-vm-cm.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-6/igt@xe_evict@evict-large-multi-vm-cm.html
* igt@xe_exec_balancer@twice-virtual-basic:
- shard-dg2-set2: [SKIP][246] ([Intel XE#1130]) -> [PASS][247] +141 other tests pass
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@xe_exec_balancer@twice-virtual-basic.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-433/igt@xe_exec_balancer@twice-virtual-basic.html
* igt@xe_exercise_blt@fast-copy:
- shard-bmg: [INCOMPLETE][248] -> [PASS][249]
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@xe_exercise_blt@fast-copy.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-6/igt@xe_exercise_blt@fast-copy.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
- shard-bmg: [DMESG-WARN][250] ([Intel XE#3467] / [Intel XE#3468]) -> [PASS][251] +1 other test pass
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init:
- shard-bmg: [DMESG-WARN][252] ([Intel XE#3343]) -> [PASS][253]
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
* igt@xe_fault_injection@vm-create-fail-xe_pt_create:
- shard-bmg: [DMESG-WARN][254] ([Intel XE#3467]) -> [PASS][255]
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-1/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html
* igt@xe_gt_freq@freq_reset_multiple:
- shard-lnl: [DMESG-WARN][256] ([Intel XE#3184]) -> [PASS][257]
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-2/igt@xe_gt_freq@freq_reset_multiple.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-lnl-8/igt@xe_gt_freq@freq_reset_multiple.html
* igt@xe_module_load@unload:
- shard-dg2-set2: [DMESG-WARN][258] ([Intel XE#3467]) -> [PASS][259]
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@xe_module_load@unload.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-434/igt@xe_module_load@unload.html
* igt@xe_oa@oa-regs-whitelisted:
- shard-lnl: [FAIL][260] ([Intel XE#2514]) -> [PASS][261] +1 other test pass
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-7/igt@xe_oa@oa-regs-whitelisted.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-lnl-1/igt@xe_oa@oa-regs-whitelisted.html
* igt@xe_oa@oa-regs-whitelisted@ccs-0:
- shard-bmg: [FAIL][262] ([Intel XE#2514]) -> [PASS][263]
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@xe_oa@oa-regs-whitelisted@ccs-0.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-4/igt@xe_oa@oa-regs-whitelisted@ccs-0.html
* igt@xe_pm@s3-vm-bind-unbind-all:
- shard-bmg: [DMESG-WARN][264] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [PASS][265]
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@xe_pm@s3-vm-bind-unbind-all.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-4/igt@xe_pm@s3-vm-bind-unbind-all.html
* igt@xe_pm@s4-basic:
- shard-lnl: [ABORT][266] ([Intel XE#1358] / [Intel XE#1607]) -> [PASS][267]
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-2/igt@xe_pm@s4-basic.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-lnl-1/igt@xe_pm@s4-basic.html
* igt@xe_pm@s4-mocs:
- shard-dg2-set2: [DMESG-WARN][268] ([Intel XE#1727] / [Intel XE#2280] / [Intel XE#3468]) -> [PASS][269]
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@xe_pm@s4-mocs.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-463/igt@xe_pm@s4-mocs.html
#### Warnings ####
* igt@core_hotunplug@hotrebind-lateclose:
- shard-dg2-set2: [DMESG-WARN][270] ([Intel XE#3468]) -> [SKIP][271] ([Intel XE#1885])
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@core_hotunplug@hotrebind-lateclose.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-434/igt@core_hotunplug@hotrebind-lateclose.html
* igt@core_hotunplug@unbind-rebind:
- shard-dg2-set2: [SKIP][272] ([Intel XE#1885]) -> [DMESG-WARN][273] ([Intel XE#3468])
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@core_hotunplug@unbind-rebind.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-436/igt@core_hotunplug@unbind-rebind.html
- shard-bmg: [INCOMPLETE][274] ([Intel XE#3468]) -> [DMESG-WARN][275] ([Intel XE#3468])
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@core_hotunplug@unbind-rebind.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-6/igt@core_hotunplug@unbind-rebind.html
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-bmg: [FAIL][276] ([Intel XE#827]) -> [INCOMPLETE][277] ([Intel XE#1727] / [Intel XE#3468])
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-2/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2:
- shard-bmg: [FAIL][278] ([Intel XE#827]) -> [DMESG-FAIL][279] ([Intel XE#1727] / [Intel XE#3468])
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-2/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][280] ([Intel XE#2136]) -> [SKIP][281] ([Intel XE#316]) +1 other test skip
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-433/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-dg2-set2: [SKIP][282] ([Intel XE#316]) -> [SKIP][283] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-466/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-dg2-set2: [SKIP][284] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][285] ([Intel XE#316]) +1 other test skip
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_big_fb@linear-64bpp-rotate-270.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-433/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][286] ([Intel XE#316]) -> [SKIP][287] ([Intel XE#2136]) +4 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180:
- shard-dg2-set2: [SKIP][288] ([Intel XE#2136]) -> [DMESG-WARN][289] ([Intel XE#1727])
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-436/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: [SKIP][290] ([Intel XE#607]) -> [SKIP][291] ([Intel XE#2136] / [Intel XE#2351])
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg2-set2: [SKIP][292] ([Intel XE#1124]) -> [SKIP][293] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0:
- shard-dg2-set2: [SKIP][294] ([Intel XE#2136]) -> [SKIP][295] ([Intel XE#1124]) +4 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-435/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-dg2-set2: [SKIP][296] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][297] ([Intel XE#1124]) +2 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-435/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-dg2-set2: [SKIP][298] ([Intel XE#1124]) -> [SKIP][299] ([Intel XE#2136]) +8 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
- shard-dg2-set2: [SKIP][300] ([Intel XE#2423] / [i915#2575]) -> [SKIP][301] ([Intel XE#2191]) +2 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-435/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- shard-dg2-set2: [SKIP][302] ([Intel XE#2191]) -> [SKIP][303] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-466/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-1-displays-1920x1080p:
- shard-dg2-set2: [SKIP][304] ([Intel XE#367]) -> [SKIP][305] ([Intel XE#2423] / [i915#2575]) +4 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-466/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-dg2-set2: [SKIP][306] ([Intel XE#2423] / [i915#2575]) -> [SKIP][307] ([Intel XE#367]) +3 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-433/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc:
- shard-dg2-set2: [SKIP][308] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][309] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-434/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@bad-pixel-format-yf-tiled-ccs:
- shard-dg2-set2: [SKIP][310] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][311] ([Intel XE#2136]) +14 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-434/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-dg2-set2: [SKIP][312] ([Intel XE#2136]) -> [SKIP][313] ([Intel XE#2907]) +1 other test skip
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-436/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs:
- shard-dg2-set2: [SKIP][314] ([Intel XE#2136]) -> [SKIP][315] ([Intel XE#455] / [Intel XE#787]) +8 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-433/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][316] ([Intel XE#3442]) -> [SKIP][317] ([Intel XE#2136])
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-dg2-set2: [SKIP][318] ([Intel XE#2136]) -> [SKIP][319] ([Intel XE#3442])
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs:
- shard-dg2-set2: [SKIP][320] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][321] ([Intel XE#455] / [Intel XE#787]) +2 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-436/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-dg2-set2: [SKIP][322] ([Intel XE#2907]) -> [SKIP][323] ([Intel XE#2136]) +1 other test skip
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-dg2-set2: [SKIP][324] ([Intel XE#2423] / [i915#2575]) -> [SKIP][325] ([Intel XE#373]) +9 other tests skip
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_chamelium_audio@hdmi-audio-edid.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-435/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-dg2-set2: [SKIP][326] ([Intel XE#306]) -> [SKIP][327] ([Intel XE#2423] / [i915#2575])
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@kms_chamelium_color@ctm-green-to-red.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-434/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-dg2-set2: [SKIP][328] ([Intel XE#2423] / [i915#2575]) -> [SKIP][329] ([Intel XE#306]) +1 other test skip
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_chamelium_color@ctm-red-to-blue.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-436/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-dg2-set2: [SKIP][330] ([Intel XE#373]) -> [SKIP][331] ([Intel XE#2423] / [i915#2575]) +16 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_content_protection@atomic:
- shard-bmg: [FAIL][332] ([Intel XE#1178]) -> [INCOMPLETE][333] ([Intel XE#2715] / [Intel XE#3468]) +1 other test incomplete
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@kms_content_protection@atomic.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-2/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@lic-type-1:
- shard-dg2-set2: [SKIP][334] ([Intel XE#2423] / [i915#2575]) -> [SKIP][335] ([Intel XE#455]) +5 other tests skip
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_content_protection@lic-type-1.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-433/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@srm:
- shard-bmg: [SKIP][336] ([Intel XE#2341]) -> [FAIL][337] ([Intel XE#1178])
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_content_protection@srm.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-1/igt@kms_content_protection@srm.html
* igt@kms_content_protection@uevent:
- shard-dg2-set2: [SKIP][338] ([Intel XE#2423] / [i915#2575]) -> [FAIL][339] ([Intel XE#1188])
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_content_protection@uevent.html
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-433/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2-set2: [SKIP][340] ([Intel XE#308]) -> [SKIP][341] ([Intel XE#2423] / [i915#2575]) +4 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_cursor_crc@cursor-offscreen-512x512.html
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-434/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-dg2-set2: [SKIP][342] ([Intel XE#323]) -> [SKIP][343] ([Intel XE#2423] / [i915#2575])
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-466/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [DMESG-WARN][344] ([Intel XE#877]) -> [SKIP][345] ([Intel XE#2291])
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-bmg: [SKIP][346] ([Intel XE#2291]) -> [DMESG-WARN][347] ([Intel XE#3468]) +1 other test dmesg-warn
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2-set2: [SKIP][348] ([Intel XE#2423] / [i915#2575]) -> [SKIP][349] ([Intel XE#323])
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-463/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2-set2: [SKIP][350] ([Intel XE#2423] / [i915#2575]) -> [SKIP][351] ([Intel XE#307])
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_display_modes@mst-extended-mode-negative.html
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-433/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg2-set2: [SKIP][352] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][353] ([Intel XE#455])
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-435/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2-set2: [SKIP][354] ([Intel XE#2136]) -> [SKIP][355] ([Intel XE#776])
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_fbcon_fbt@psr.html
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-436/igt@kms_fbcon_fbt@psr.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2-set2: [SKIP][356] ([Intel XE#776]) -> [SKIP][357] ([Intel XE#2136])
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_fbcon_fbt@psr-suspend.html
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-466/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2-set2: [SKIP][358] ([Intel XE#701]) -> [SKIP][359] ([Intel XE#2423] / [i915#2575])
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@kms_feature_discovery@chamelium.html
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-466/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2-set2: [SKIP][360] ([Intel XE#1138]) -> [SKIP][361] ([Intel XE#2423] / [i915#2575])
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_feature_discovery@display-4x.html
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-434/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@psr1:
- shard-dg2-set2: [SKIP][362] ([Intel XE#1135]) -> [SKIP][363] ([Intel XE#2423] / [i915#2575])
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_feature_discovery@psr1.html
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-466/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-bmg: [FAIL][364] ([Intel XE#2882]) -> [SKIP][365] ([Intel XE#2316])
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank.html
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank.html
- shard-dg2-set2: [SKIP][366] ([Intel XE#2423] / [i915#2575]) -> [FAIL][367] ([Intel XE#301])
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank.html
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@flip-vs-suspend:
- shard-dg2-set2: [SKIP][368] ([Intel XE#2423] / [i915#2575]) -> [INCOMPLETE][369] ([Intel XE#1727] / [Intel XE#2049] / [Intel XE#2597] / [Intel XE#3468])
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_flip@flip-vs-suspend.html
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-463/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-bmg: [INCOMPLETE][370] ([Intel XE#1727] / [Intel XE#3468]) -> [DMESG-WARN][371] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-dg2-set2: [SKIP][372] ([Intel XE#2136]) -> [SKIP][373] ([Intel XE#455]) +4 other tests skip
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2-set2: [SKIP][374] ([Intel XE#455]) -> [SKIP][375] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2-set2: [SKIP][376] ([Intel XE#455]) -> [SKIP][377] ([Intel XE#2136]) +7 other tests skip
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][378] ([Intel XE#2311]) -> [SKIP][379] ([Intel XE#2312]) +14 other tests skip
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-slowdraw:
- shard-dg2-set2: [SKIP][380] ([Intel XE#651]) -> [SKIP][381] ([Intel XE#2136] / [Intel XE#2351]) +10 other tests skip
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-slowdraw.html
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-slowdraw.html
* igt@kms_frontbuffer_tracking@drrs-suspend:
- shard-dg2-set2: [SKIP][382] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][383] ([Intel XE#651]) +6 other tests skip
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-suspend.html
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-suspend.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [FAIL][384] ([Intel XE#2333]) -> [DMESG-FAIL][385] ([Intel XE#3468]) +5 other tests dmesg-fail
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][386] ([Intel XE#2312]) -> [FAIL][387] ([Intel XE#2333]) +4 other tests fail
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render:
- shard-bmg: [FAIL][388] ([Intel XE#2333]) -> [SKIP][389] ([Intel XE#2312]) +2 other tests skip
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-rte:
- shard-bmg: [DMESG-FAIL][390] ([Intel XE#3468]) -> [SKIP][391] ([Intel XE#2312])
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt:
- shard-dg2-set2: [INCOMPLETE][392] ([Intel XE#1727]) -> [SKIP][393] ([Intel XE#2136])
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [DMESG-FAIL][394] ([Intel XE#3468]) -> [FAIL][395] ([Intel XE#2333]) +3 other tests fail
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2-set2: [SKIP][396] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][397] ([Intel XE#658])
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte:
- shard-dg2-set2: [SKIP][398] ([Intel XE#651]) -> [SKIP][399] ([Intel XE#2136]) +37 other tests skip
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-render:
- shard-dg2-set2: [SKIP][400] ([Intel XE#2136]) -> [SKIP][401] ([Intel XE#651]) +16 other tests skip
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-render.html
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][402] ([Intel XE#2312]) -> [SKIP][403] ([Intel XE#2311]) +8 other tests skip
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt:
- shard-dg2-set2: [SKIP][404] ([Intel XE#653]) -> [SKIP][405] ([Intel XE#2136] / [Intel XE#2351]) +6 other tests skip
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][406] ([Intel XE#2312]) -> [SKIP][407] ([Intel XE#2313]) +7 other tests skip
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][408] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][409] ([Intel XE#653]) +5 other tests skip
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt:
- shard-dg2-set2: [SKIP][410] ([Intel XE#2136]) -> [SKIP][411] ([Intel XE#653]) +22 other tests skip
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][412] ([Intel XE#2313]) -> [SKIP][413] ([Intel XE#2312]) +10 other tests skip
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@psr-slowdraw:
- shard-dg2-set2: [SKIP][414] ([Intel XE#653]) -> [SKIP][415] ([Intel XE#2136]) +33 other tests skip
[414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-slowdraw.html
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-slowdraw.html
* igt@kms_joiner@basic-big-joiner:
- shard-dg2-set2: [SKIP][416] ([Intel XE#346]) -> [SKIP][417] ([Intel XE#2136])
[416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_joiner@basic-big-joiner.html
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-466/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-dg2-set2: [SKIP][418] ([Intel XE#2136]) -> [SKIP][419] ([Intel XE#2925]) +1 other test skip
[418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_joiner@basic-force-ultra-joiner.html
[419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-436/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-dg2-set2: [SKIP][420] ([Intel XE#2423] / [i915#2575]) -> [INCOMPLETE][421] ([Intel XE#1727] / [Intel XE#3468])
[420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_pipe_crc_basic@suspend-read-crc.html
[421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-433/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
- shard-dg2-set2: [SKIP][422] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][423] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
[423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-dg2-set2: [SKIP][424] ([Intel XE#2423] / [i915#2575]) -> [SKIP][425] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip
[424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
[425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_pm_backlight@bad-brightness:
- shard-dg2-set2: [SKIP][426] ([Intel XE#870]) -> [SKIP][427] ([Intel XE#2136])
[426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_pm_backlight@bad-brightness.html
[427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-466/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-dg2-set2: [SKIP][428] ([Intel XE#2938]) -> [SKIP][429] ([Intel XE#2136])
[428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@kms_pm_backlight@brightness-with-dpms.html
[429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-466/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg2-set2: [SKIP][430] ([Intel XE#2136]) -> [SKIP][431] ([Intel XE#870]) +1 other test skip
[430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_pm_backlight@fade-with-suspend.html
[431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-463/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2-set2: [SKIP][432] ([Intel XE#908]) -> [SKIP][433] ([Intel XE#2136] / [Intel XE#2351])
[432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_pm_dc@dc6-dpms.html
[433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-466/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2-set2: [FAIL][434] ([Intel XE#3527]) -> [SKIP][435] ([Intel XE#2136])
[434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_pm_lpsp@kms-lpsp.html
[435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-466/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@modeset-stress-extra-wait:
- shard-dg2-set2: [DMESG-WARN][436] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][437] ([Intel XE#2446])
[436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_pm_rpm@modeset-stress-extra-wait.html
[437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-434/igt@kms_pm_rpm@modeset-stress-extra-wait.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: [SKIP][438] ([Intel XE#1489]) -> [SKIP][439] ([Intel XE#2136]) +10 other tests skip
[438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
[439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-466/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-dg2-set2: [SKIP][440] ([Intel XE#2136]) -> [SKIP][441] ([Intel XE#1489]) +6 other tests skip
[440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
[441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-463/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2-set2: [SKIP][442] ([Intel XE#2136]) -> [SKIP][443] ([Intel XE#1122]) +1 other test skip
[442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_psr2_su@page_flip-nv12.html
[443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-463/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2-set2: [SKIP][444] ([Intel XE#1122]) -> [SKIP][445] ([Intel XE#2136])
[444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_psr2_su@page_flip-p010.html
[445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-466/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr-sprite-render:
- shard-dg2-set2: [SKIP][446] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][447] ([Intel XE#2136]) +15 other tests skip
[446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_psr@fbc-psr-sprite-render.html
[447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-434/igt@kms_psr@fbc-psr-sprite-render.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2-set2: [SKIP][448] ([Intel XE#2136]) -> [SKIP][449] ([Intel XE#2850] / [Intel XE#929]) +9 other tests skip
[448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-plane-move.html
[449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-435/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@pr-dpms:
- shard-dg2-set2: [SKIP][450] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][451] ([Intel XE#2850] / [Intel XE#929]) +5 other tests skip
[450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_psr@pr-dpms.html
[451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-433/igt@kms_psr@pr-dpms.html
* igt@kms_psr@pr-primary-page-flip:
- shard-dg2-set2: [SKIP][452] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][453] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip
[452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_psr@pr-primary-page-flip.html
[453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-434/igt@kms_psr@pr-primary-page-flip.html
* igt@kms_psr@psr-primary-page-flip:
- shard-dg2-set2: [SKIP][454] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][455] ([Intel XE#2351]) +1 other test skip
[454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_psr@psr-primary-page-flip.html
[455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-434/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2-set2: [SKIP][456] ([Intel XE#2423] / [i915#2575]) -> [SKIP][457] ([Intel XE#3414])
[456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
[457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-463/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-dg2-set2: [SKIP][458] ([Intel XE#3414]) -> [SKIP][459] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_rotation_crc@sprite-rotation-270.html
[459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-466/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: [SKIP][460] ([Intel XE#362]) -> [SKIP][461] ([Intel XE#2423] / [i915#2575])
[460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html
[461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-set2: [SKIP][462] ([Intel XE#2423] / [i915#2575]) -> [SKIP][463] ([Intel XE#1500])
[462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-436/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vblank@ts-continuation-dpms-rpm:
- shard-dg2-set2: [DMESG-WARN][464] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][465] ([Intel XE#2423] / [i915#2575])
[464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@kms_vblank@ts-continuation-dpms-rpm.html
[465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-466/igt@kms_vblank@ts-continuation-dpms-rpm.html
* igt@kms_vrr@flip-basic-fastset:
- shard-dg2-set2: [SKIP][466] ([Intel XE#455]) -> [SKIP][467] ([Intel XE#2423] / [i915#2575]) +4 other tests skip
[466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_vrr@flip-basic-fastset.html
[467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-434/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@lobf:
- shard-dg2-set2: [SKIP][468] ([Intel XE#2168]) -> [SKIP][469] ([Intel XE#2423] / [i915#2575])
[468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_vrr@lobf.html
[469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-466/igt@kms_vrr@lobf.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2-set2: [SKIP][470] ([Intel XE#756]) -> [SKIP][471] ([Intel XE#2423] / [i915#2575])
[470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
[471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-434/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@xe_compute_preempt@compute-threadgroup-preempt:
- shard-dg2-set2: [SKIP][472] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][473] ([Intel XE#1130])
[472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@xe_compute_preempt@compute-threadgroup-preempt.html
[473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-466/igt@xe_compute_preempt@compute-threadgroup-preempt.html
* igt@xe_copy_basic@mem-copy-linear-0xfffe:
- shard-dg2-set2: [SKIP][474] ([Intel XE#1123]) -> [SKIP][475] ([Intel XE#1130]) +1 other test skip
[474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
[475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
* igt@xe_copy_basic@mem-set-linear-0xfd:
- shard-dg2-set2: [SKIP][476] ([Intel XE#1130]) -> [SKIP][477] ([Intel XE#1126]) +1 other test skip
[476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0xfd.html
[477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-463/igt@xe_copy_basic@mem-set-linear-0xfd.html
* igt@xe_copy_basic@mem-set-linear-0xfffe:
- shard-dg2-set2: [SKIP][478] ([Intel XE#1126]) -> [SKIP][479] ([Intel XE#1130])
[478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@xe_copy_basic@mem-set-linear-0xfffe.html
[479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0xfffe.html
* igt@xe_eudebug@multiple-sessions:
- shard-dg2-set2: [SKIP][480] ([Intel XE#1130]) -> [SKIP][481] ([Intel XE#2905]) +11 other tests skip
[480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@xe_eudebug@multiple-sessions.html
[481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-463/igt@xe_eudebug@multiple-sessions.html
* igt@xe_eudebug_online@preempt-breakpoint:
- shard-dg2-set2: [SKIP][482] ([Intel XE#2905]) -> [SKIP][483] ([Intel XE#1130]) +16 other tests skip
[482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@xe_eudebug_online@preempt-breakpoint.html
[483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-466/igt@xe_eudebug_online@preempt-breakpoint.html
* igt@xe_exec_balancer@no-exec-cm-virtual-userptr-invalidate:
- shard-dg2-set2: [DMESG-WARN][484] ([Intel XE#1727]) -> [SKIP][485] ([Intel XE#1130])
[484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@xe_exec_balancer@no-exec-cm-virtual-userptr-invalidate.html
[485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-466/igt@xe_exec_balancer@no-exec-cm-virtual-userptr-invalidate.html
* igt@xe_exec_basic@multigpu-no-exec-null-defer-bind:
- shard-dg2-set2: [SKIP][486] ([Intel XE#1130]) -> [DMESG-WARN][487] ([Intel XE#1727]) +1 other test dmesg-warn
[486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html
[487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-435/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html
* igt@xe_exec_fault_mode@once-bindexecqueue-imm:
- shard-dg2-set2: [SKIP][488] ([Intel XE#288]) -> [SKIP][489] ([Intel XE#1130]) +35 other tests skip
[488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html
[489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-434/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html
* igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
- shard-dg2-set2: [SKIP][490] ([Intel XE#1130]) -> [SKIP][491] ([Intel XE#288]) +25 other tests skip
[490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
[491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-463/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence:
- shard-dg2-set2: [SKIP][492] ([Intel XE#1130]) -> [SKIP][493] ([Intel XE#2360])
[492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html
[493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-436/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-lr:
- shard-dg2-set2: [SKIP][494] ([Intel XE#2360]) -> [SKIP][495] ([Intel XE#1130])
[494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html
[495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-466/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html
* igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate:
- shard-bmg: [DMESG-WARN][496] ([Intel XE#3371] / [Intel XE#3515]) -> [DMESG-FAIL][497] ([Intel XE#3371])
[496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html
[497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-4/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init:
- shard-dg2-set2: [SKIP][498] ([Intel XE#1130]) -> [DMESG-WARN][499] ([Intel XE#3343]) +2 other tests dmesg-warn
[498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html
[499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-433/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create:
- shard-dg2-set2: [DMESG-WARN][500] ([Intel XE#3467]) -> [SKIP][501] ([Intel XE#1130]) +2 other tests skip
[500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html
[501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-434/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html
* igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc:
- shard-bmg: [DMESG-FAIL][502] ([Intel XE#3467] / [Intel XE#3468]) -> [FAIL][503] ([Intel XE#3499])
[502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
[503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
* igt@xe_fault_injection@vm-create-fail-xe_pt_create:
- shard-dg2-set2: [SKIP][504] ([Intel XE#1130]) -> [DMESG-WARN][505] ([Intel XE#3467])
[504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html
[505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-436/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html
* igt@xe_live_ktest@xe_eudebug:
- shard-bmg: [SKIP][506] ([Intel XE#1192]) -> [SKIP][507] ([Intel XE#2833])
[506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@xe_live_ktest@xe_eudebug.html
[507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-6/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_media_fill@media-fill:
- shard-dg2-set2: [SKIP][508] ([Intel XE#1130]) -> [SKIP][509] ([Intel XE#560])
[508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@xe_media_fill@media-fill.html
[509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-463/igt@xe_media_fill@media-fill.html
* igt@xe_mmap@small-bar:
- shard-dg2-set2: [SKIP][510] ([Intel XE#512]) -> [SKIP][511] ([Intel XE#1130])
[510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@xe_mmap@small-bar.html
[511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-434/igt@xe_mmap@small-bar.html
* igt@xe_module_load@reload:
- shard-dg2-set2: [FAIL][512] ([Intel XE#3546]) -> [DMESG-WARN][513] ([Intel XE#3467])
[512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@xe_module_load@reload.html
[513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-463/igt@xe_module_load@reload.html
- shard-bmg: [DMESG-WARN][514] ([Intel XE#3467]) -> [DMESG-WARN][515] ([Intel XE#3467] / [Intel XE#3468])
[514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-8/igt@xe_module_load@reload.html
[515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-2/igt@xe_module_load@reload.html
* igt@xe_oa@non-privileged-map-oa-buffer:
- shard-dg2-set2: [SKIP][516] ([Intel XE#1130]) -> [SKIP][517] ([Intel XE#3573]) +10 other tests skip
[516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@xe_oa@non-privileged-map-oa-buffer.html
[517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-463/igt@xe_oa@non-privileged-map-oa-buffer.html
* igt@xe_oa@oa-regs-whitelisted:
- shard-bmg: [FAIL][518] ([Intel XE#2514]) -> [DMESG-WARN][519] ([Intel XE#3468])
[518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@xe_oa@oa-regs-whitelisted.html
[519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-bmg-4/igt@xe_oa@oa-regs-whitelisted.html
* igt@xe_oa@oa-unit-exclusive-stream-sample-oa:
- shard-dg2-set2: [SKIP][520] ([Intel XE#3573]) -> [SKIP][521] ([Intel XE#1130]) +10 other tests skip
[520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
[521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-466/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
* igt@xe_pat@display-vs-wb-transient:
- shard-dg2-set2: [SKIP][522] ([Intel XE#1337]) -> [SKIP][523] ([Intel XE#1130])
[522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@xe_pat@display-vs-wb-transient.html
[523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-434/igt@xe_pat@display-vs-wb-transient.html
* igt@xe_pat@pat-index-xe2:
- shard-dg2-set2: [SKIP][524] ([Intel XE#1130]) -> [SKIP][525] ([Intel XE#977])
[524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@xe_pat@pat-index-xe2.html
[525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-436/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xehpc:
- shard-dg2-set2: [SKIP][526] ([Intel XE#2838] / [Intel XE#979]) -> [SKIP][527] ([Intel XE#1130])
[526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@xe_pat@pat-index-xehpc.html
[527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-466/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-dg2-set2: [SKIP][528] ([Intel XE#1130]) -> [SKIP][529] ([Intel XE#2284] / [Intel XE#366]) +3 other tests skip
[528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@xe_pm@d3cold-mmap-vram.html
[529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-463/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_pm@d3hot-mmap-vram:
- shard-dg2-set2: [DMESG-WARN][530] ([Intel XE#3468]) -> [SKIP][531] ([Intel XE#1130])
[530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@xe_pm@d3hot-mmap-vram.html
[531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-466/igt@xe_pm@d3hot-mmap-vram.html
* igt@xe_pm@s2idle-basic-exec:
- shard-dg2-set2: [DMESG-WARN][532] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][533] ([Intel XE#1130]) +1 other test skip
[532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@xe_pm@s2idle-basic-exec.html
[533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-434/igt@xe_pm@s2idle-basic-exec.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-dg2-set2: [SKIP][534] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][535] ([Intel XE#1130]) +1 other test skip
[534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@xe_pm@s2idle-d3cold-basic-exec.html
[535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-466/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pm@s2idle-multiple-execs:
- shard-dg2-set2: [SKIP][536] ([Intel XE#1130]) -> [DMESG-WARN][537] ([Intel XE#1727] / [Intel XE#3468])
[536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@xe_pm@s2idle-multiple-execs.html
[537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-435/igt@xe_pm@s2idle-multiple-execs.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-dg2-set2: [SKIP][538] ([Intel XE#1130]) -> [SKIP][539] ([Intel XE#944]) +1 other test skip
[538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@xe_query@multigpu-query-invalid-cs-cycles.html
[539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-436/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_query@multigpu-query-topology:
- shard-dg2-set2: [SKIP][540] ([Intel XE#944]) -> [SKIP][541] ([Intel XE#1130]) +4 other tests skip
[540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@xe_query@multigpu-query-topology.html
[541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-466/igt@xe_query@multigpu-query-topology.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-dg2-set2: [SKIP][542] ([Intel XE#3342]) -> [SKIP][543] ([Intel XE#1130])
[542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@xe_sriov_flr@flr-each-isolation.html
[543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-434/igt@xe_sriov_flr@flr-each-isolation.html
* igt@xe_tlb@basic-tlb:
- shard-dg2-set2: [FAIL][544] ([Intel XE#2922]) -> [SKIP][545] ([Intel XE#1130])
[544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@xe_tlb@basic-tlb.html
[545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-434/igt@xe_tlb@basic-tlb.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-dg2-set2: [SKIP][546] ([Intel XE#1130]) -> [ABORT][547] ([Intel XE#3421])
[546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@xe_wedged@wedged-at-any-timeout.html
[547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/shard-dg2-435/igt@xe_wedged@wedged-at-any-timeout.html
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[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#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
[Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[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#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
[Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2514
[Intel XE#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550
[Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2922]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2922
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2929
[Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
[Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
[Intel XE#2961]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2961
[Intel XE#2998]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2998
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3162
[Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184
[Intel XE#3191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3191
[Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3339
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343
[Intel XE#3371]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3371
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3421
[Intel XE#3440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3440
[Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
[Intel XE#3453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3453
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467
[Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468
[Intel XE#3486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3486
[Intel XE#3499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3499
[Intel XE#3515]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3515
[Intel XE#3527]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3527
[Intel XE#3546]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546
[Intel XE#3559]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3559
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/374
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
Build changes
-------------
* IGT: IGT_8121 -> IGTPW_12168
* Linux: xe-2257-e46649e7764a9f6868ccbcba7b8b23b413303380 -> xe-2259-bb17c42521f57b592e9ad49daca1f9f9045d3199
IGTPW_12168: 12168
IGT_8121: 8121
xe-2257-e46649e7764a9f6868ccbcba7b8b23b413303380: e46649e7764a9f6868ccbcba7b8b23b413303380
xe-2259-bb17c42521f57b592e9ad49daca1f9f9045d3199: bb17c42521f57b592e9ad49daca1f9f9045d3199
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12168/index.html
[-- Attachment #2: Type: text/html, Size: 163593 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ i915.CI.Full: failure for series starting with [CI,1/2] lib/igt_kmod: Drop legacy kunit fallback
2024-11-21 22:55 [CI 1/2] lib/igt_kmod: Drop legacy kunit fallback Lucas De Marchi
` (3 preceding siblings ...)
2024-11-22 17:36 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2024-11-24 13:30 ` Patchwork
2024-12-02 21:59 ` [CI 1/2] " Lucas De Marchi
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-11-24 13:30 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: igt-dev
== Series Details ==
Series: series starting with [CI,1/2] lib/igt_kmod: Drop legacy kunit fallback
URL : https://patchwork.freedesktop.org/series/141680/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15727_full -> IGTPW_12168_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12168_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12168_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_12168/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_12168_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_tiled_swapping@non-threaded:
- shard-snb: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-snb2/igt@gem_tiled_swapping@non-threaded.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-snb4/igt@gem_tiled_swapping@non-threaded.html
* igt@i915_pm_rpm@gem-execbuf:
- shard-rkl: [PASS][3] -> [SKIP][4] +1 other test skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-rkl-7/igt@i915_pm_rpm@gem-execbuf.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-3/igt@i915_pm_rpm@gem-execbuf.html
* igt@i915_pm_rpm@reg-read-ioctl:
- shard-dg2: [PASS][5] -> [SKIP][6] +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-1/igt@i915_pm_rpm@reg-read-ioctl.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-11/igt@i915_pm_rpm@reg-read-ioctl.html
* igt@i915_selftest@live@objects:
- shard-dg2: NOTRUN -> [FAIL][7] +37 other tests fail
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-11/igt@i915_selftest@live@objects.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-dg2: [PASS][8] -> [INCOMPLETE][9]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-2/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [INCOMPLETE][10] +1 other test incomplete
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-offscreen-64x64@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [DMESG-WARN][11] +9 other tests dmesg-warn
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-64x64@pipe-b-hdmi-a-1.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-dg2: NOTRUN -> [SKIP][12] +5 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-1/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip@dpms-off-confusion-interruptible@a-hdmi-a1:
- shard-rkl: [PASS][13] -> [DMESG-WARN][14] +73 other tests dmesg-warn
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-rkl-7/igt@kms_flip@dpms-off-confusion-interruptible@a-hdmi-a1.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-2/igt@kms_flip@dpms-off-confusion-interruptible@a-hdmi-a1.html
* igt@kms_plane@pixel-format@pipe-a-plane-5:
- shard-tglu: [PASS][15] -> [ABORT][16] +3 other tests abort
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-tglu-4/igt@kms_plane@pixel-format@pipe-a-plane-5.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-9/igt@kms_plane@pixel-format@pipe-a-plane-5.html
#### Warnings ####
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-dg2: [SKIP][17] ([i915#2575]) -> [SKIP][18] +5 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-11/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-7/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_pm_rpm@drm-resources-equal:
- shard-rkl: [DMESG-WARN][19] -> [SKIP][20]
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-rkl-3/igt@kms_pm_rpm@drm-resources-equal.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-4/igt@kms_pm_rpm@drm-resources-equal.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@i915_pm_rpm@gem-execbuf-stress:
- {shard-dg2-9}: NOTRUN -> [ABORT][21] +1 other test abort
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-9/igt@i915_pm_rpm@gem-execbuf-stress.html
Known issues
------------
Here are the changes found in IGTPW_12168_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@crc32:
- shard-dg1: NOTRUN -> [SKIP][22] ([i915#6230])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-17/igt@api_intel_bb@crc32.html
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-dg1: NOTRUN -> [SKIP][23] ([i915#8411])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-14/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@debugfs_test@basic-hwmon:
- shard-tglu-1: NOTRUN -> [SKIP][24] ([i915#9318])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-1/igt@debugfs_test@basic-hwmon.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-dg1: NOTRUN -> [SKIP][25] ([i915#11078])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-18/igt@device_reset@unbind-cold-reset-rebind.html
* igt@device_reset@unbind-reset-rebind:
- shard-tglu: NOTRUN -> [ABORT][26] ([i915#12817] / [i915#5507])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-4/igt@device_reset@unbind-reset-rebind.html
* igt@drm_fdinfo@busy-hang@bcs0:
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#8414]) +8 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-2/igt@drm_fdinfo@busy-hang@bcs0.html
* igt@drm_fdinfo@busy@vcs1:
- shard-dg1: NOTRUN -> [SKIP][28] ([i915#8414]) +14 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-17/igt@drm_fdinfo@busy@vcs1.html
* igt@gem_ccs@block-copy-compressed:
- shard-dg1: NOTRUN -> [SKIP][29] ([i915#3555] / [i915#9323]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-18/igt@gem_ccs@block-copy-compressed.html
- shard-rkl: NOTRUN -> [SKIP][30] ([i915#3555] / [i915#9323])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-1/igt@gem_ccs@block-copy-compressed.html
* igt@gem_close_race@multigpu-basic-process:
- shard-dg1: NOTRUN -> [SKIP][31] ([i915#7697])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-12/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-tglu-1: NOTRUN -> [SKIP][32] ([i915#6335])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-1/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg1: NOTRUN -> [SKIP][33] ([i915#8555]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-13/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_persistence@legacy-engines-queued:
- shard-snb: NOTRUN -> [SKIP][34] ([i915#1099]) +2 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-snb2/igt@gem_ctx_persistence@legacy-engines-queued.html
* igt@gem_ctx_sseu@invalid-args:
- shard-dg1: NOTRUN -> [SKIP][35] ([i915#280])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-18/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-tglu: NOTRUN -> [SKIP][36] ([i915#280])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-6/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_ctx_sseu@mmap-args:
- shard-tglu-1: NOTRUN -> [SKIP][37] ([i915#280])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-1/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg1: NOTRUN -> [SKIP][38] ([i915#4771])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-18/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_capture@capture-invisible:
- shard-dg1: NOTRUN -> [SKIP][39] ([i915#6334]) +2 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-14/igt@gem_exec_capture@capture-invisible.html
* igt@gem_exec_capture@capture@vecs0-lmem0:
- shard-dg2: NOTRUN -> [FAIL][40] ([i915#11965] / [i915#12558]) +1 other test fail
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-2/igt@gem_exec_capture@capture@vecs0-lmem0.html
* igt@gem_exec_capture@capture@vecs1-smem:
- shard-dg2: NOTRUN -> [FAIL][41] ([i915#11965]) +1 other test fail
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-2/igt@gem_exec_capture@capture@vecs1-smem.html
* igt@gem_exec_flush@basic-wb-prw-default:
- shard-dg1: NOTRUN -> [SKIP][42] ([i915#3539] / [i915#4852]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-14/igt@gem_exec_flush@basic-wb-prw-default.html
* igt@gem_exec_flush@basic-wb-set-default:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#3539] / [i915#4852])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-5/igt@gem_exec_flush@basic-wb-set-default.html
* igt@gem_exec_reloc@basic-gtt-read:
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#3281]) +4 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-3/igt@gem_exec_reloc@basic-gtt-read.html
* igt@gem_exec_reloc@basic-gtt-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][45] ([i915#3281]) +4 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-read-noreloc.html
* igt@gem_exec_reloc@basic-wc-read:
- shard-dg1: NOTRUN -> [SKIP][46] ([i915#3281]) +13 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-18/igt@gem_exec_reloc@basic-wc-read.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-rkl: NOTRUN -> [ABORT][47] ([i915#7975] / [i915#8213]) +1 other test abort
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-7/igt@gem_exec_suspend@basic-s4-devices.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#4860]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-2/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-dg1: NOTRUN -> [SKIP][49] ([i915#4860]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-18/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-glk: NOTRUN -> [SKIP][50] ([i915#4613]) +3 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-glk5/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#12193]) +2 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-13/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][52] ([i915#4565]) +2 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-13/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html
* igt@gem_lmem_swapping@parallel-random:
- shard-dg2: [PASS][53] -> [SKIP][54] ([i915#12936]) +2 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-5/igt@gem_lmem_swapping@parallel-random.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-11/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_lmem_swapping@parallel-random-engines:
- shard-tglu-1: NOTRUN -> [SKIP][55] ([i915#4613]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-tglu: NOTRUN -> [SKIP][56] ([i915#4613]) +3 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-3/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_lmem_swapping@verify-random:
- shard-rkl: NOTRUN -> [SKIP][57] ([i915#4613]) +2 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-3/igt@gem_lmem_swapping@verify-random.html
* igt@gem_mmap@bad-object:
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#4083]) +7 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-13/igt@gem_mmap@bad-object.html
* igt@gem_mmap_gtt@basic-small-copy:
- shard-dg1: NOTRUN -> [SKIP][59] ([i915#4077]) +14 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-17/igt@gem_mmap_gtt@basic-small-copy.html
* igt@gem_mmap_gtt@big-bo-tiledx:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#4077]) +6 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-1/igt@gem_mmap_gtt@big-bo-tiledx.html
* igt@gem_mmap_wc@bad-size:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#4083]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-2/igt@gem_mmap_wc@bad-size.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#3282]) +4 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-18/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_partial_pwrite_pread@writes-after-reads-snoop:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#3282])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-5/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html
* igt@gem_pread@exhaustion:
- shard-glk: NOTRUN -> [WARN][64] ([i915#2658])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-glk2/igt@gem_pread@exhaustion.html
* igt@gem_pwrite@basic-exhaustion:
- shard-tglu: NOTRUN -> [WARN][65] ([i915#2658])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-4/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@create-regular-buffer:
- shard-rkl: NOTRUN -> [TIMEOUT][66] ([i915#12917]) +1 other test timeout
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-1/igt@gem_pxp@create-regular-buffer.html
* igt@gem_pxp@create-regular-context-1:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#4270]) +2 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-5/igt@gem_pxp@create-regular-context-1.html
* igt@gem_pxp@reject-modify-context-protection-off-3:
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#4270]) +6 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-13/igt@gem_pxp@reject-modify-context-protection-off-3.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#5190] / [i915#8428]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-5/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html
* igt@gem_render_copy@y-tiled-to-vebox-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#2575] / [i915#5190]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-11/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#4079])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-10/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_softpin@evict-snoop:
- shard-dg1: NOTRUN -> [SKIP][72] ([i915#4885])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-17/igt@gem_softpin@evict-snoop.html
* igt@gem_softpin@noreloc-s3:
- shard-tglu: [PASS][73] -> [ABORT][74] ([i915#12817])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-tglu-9/igt@gem_softpin@noreloc-s3.html
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-2/igt@gem_softpin@noreloc-s3.html
* igt@gem_tiled_pread_pwrite:
- shard-dg1: NOTRUN -> [SKIP][75] ([i915#4079])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-17/igt@gem_tiled_pread_pwrite.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#3297]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-6/igt@gem_userptr_blits@create-destroy-unsync.html
- shard-rkl: NOTRUN -> [SKIP][77] ([i915#3297])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-2/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-tglu-1: NOTRUN -> [SKIP][78] ([i915#3297])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-1/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-dg1: NOTRUN -> [SKIP][79] ([i915#3297]) +4 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-13/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-tglu: NOTRUN -> [SKIP][80] ([i915#3297]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-6/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gen9_exec_parse@batch-without-end:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#2856]) +2 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-10/igt@gen9_exec_parse@batch-without-end.html
- shard-rkl: NOTRUN -> [SKIP][82] ([i915#2527])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-7/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@bb-secure:
- shard-tglu: NOTRUN -> [SKIP][83] ([i915#2527] / [i915#2856]) +3 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-3/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-dg1: NOTRUN -> [SKIP][84] ([i915#2527]) +4 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-13/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@valid-registers:
- shard-tglu-1: NOTRUN -> [SKIP][85] ([i915#2527] / [i915#2856]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-1/igt@gen9_exec_parse@valid-registers.html
* igt@i915_module_load@reload:
- shard-dg2: [PASS][86] -> [FAIL][87] ([i915#12870])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-4/igt@i915_module_load@reload.html
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-11/igt@i915_module_load@reload.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg1: NOTRUN -> [ABORT][88] ([i915#9820])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-12/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-tglu: NOTRUN -> [SKIP][89] ([i915#8399]) +2 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-8/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][90] ([i915#8399])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-1/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-tglu: NOTRUN -> [SKIP][91] ([i915#6590]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-6/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-rkl: [PASS][92] -> [FAIL][93] ([i915#12942]) +1 other test fail
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-rkl-4/igt@i915_pm_rc6_residency@rc6-accuracy.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-4/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg2: NOTRUN -> [SKIP][94] ([i915#11681] / [i915#6621])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-3/igt@i915_pm_rps@min-max-config-idle.html
- shard-dg1: NOTRUN -> [SKIP][95] ([i915#11681] / [i915#6621])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-14/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@thresholds-idle:
- shard-dg1: NOTRUN -> [SKIP][96] ([i915#11681])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-17/igt@i915_pm_rps@thresholds-idle.html
* igt@i915_pm_sseu@full-enable:
- shard-dg1: NOTRUN -> [SKIP][97] ([i915#4387])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-13/igt@i915_pm_sseu@full-enable.html
- shard-tglu: NOTRUN -> [SKIP][98] ([i915#4387])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-7/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@test-query-geometry-subslices:
- shard-rkl: NOTRUN -> [SKIP][99] ([i915#5723])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-2/igt@i915_query@test-query-geometry-subslices.html
- shard-tglu-1: NOTRUN -> [SKIP][100] ([i915#5723])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-1/igt@i915_query@test-query-geometry-subslices.html
- shard-dg1: NOTRUN -> [SKIP][101] ([i915#5723])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-17/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_selftest@mock@memory_region:
- shard-dg1: NOTRUN -> [DMESG-WARN][102] ([i915#9311]) +1 other test dmesg-warn
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-14/igt@i915_selftest@mock@memory_region.html
* igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][103] ([i915#4212]) +1 other test skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-2/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg1: NOTRUN -> [SKIP][104] ([i915#4212]) +2 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-17/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-tglu: [PASS][105] -> [FAIL][106] ([i915#10991]) +1 other test fail
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-tglu-5/igt@kms_async_flips@alternate-sync-async-flip.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-8/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-tglu: NOTRUN -> [SKIP][107] ([i915#1769] / [i915#3555])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][108] ([i915#5286]) +5 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-10/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][109] ([i915#5286]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-4/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#5286]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-13/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][111] ([i915#4538] / [i915#5286]) +8 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-17/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-tglu-1: NOTRUN -> [SKIP][112] ([i915#5286]) +2 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#4538] / [i915#5190]) +7 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-1/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][114] ([i915#3638]) +1 other test skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-7/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][115] ([i915#3638]) +5 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-17/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][116] ([i915#5190]) +1 other test skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-11/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#4538]) +4 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][118] ([i915#6095]) +179 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-14/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-c-hdmi-a-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#12313]) +1 other test skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-4/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
- shard-rkl: NOTRUN -> [SKIP][120] ([i915#12313])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-5/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
- shard-glk: NOTRUN -> [SKIP][121] +189 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-glk2/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#10307] / [i915#6095]) +155 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-2/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][123] ([i915#12313])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-3/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][124] ([i915#6095]) +76 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][125] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-8/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-dg1: NOTRUN -> [SKIP][126] ([i915#12805])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-13/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
- shard-tglu: NOTRUN -> [SKIP][127] ([i915#12805])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-5/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#6095]) +3 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][129] ([i915#12313]) +2 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-13/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][130] ([i915#6095]) +74 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-a-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][131] ([i915#6095]) +24 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg1: NOTRUN -> [SKIP][132] ([i915#3742])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-13/igt@kms_cdclk@mode-transition-all-outputs.html
- shard-dg2: NOTRUN -> [SKIP][133] ([i915#11616] / [i915#7213])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-2/igt@kms_cdclk@mode-transition-all-outputs.html
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#3742])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-3/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#4087]) +3 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-7/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-dg1: NOTRUN -> [SKIP][136] ([i915#7828]) +13 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-13/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-rkl: NOTRUN -> [SKIP][137] ([i915#7828]) +5 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-1/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode:
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#7828]) +5 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-3/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-tglu: NOTRUN -> [SKIP][139] ([i915#7828]) +12 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-3/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-tglu-1: NOTRUN -> [SKIP][140] ([i915#7828]) +5 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-1/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_content_protection@atomic-dpms:
- shard-rkl: NOTRUN -> [SKIP][141] ([i915#7118] / [i915#9424])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-2/igt@kms_content_protection@atomic-dpms.html
- shard-tglu-1: NOTRUN -> [SKIP][142] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-1/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg1: NOTRUN -> [SKIP][143] ([i915#3299]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-13/igt@kms_content_protection@dp-mst-type-1.html
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#3299])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-4/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-0:
- shard-dg1: NOTRUN -> [SKIP][145] ([i915#9424]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-14/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@mei-interface:
- shard-tglu: NOTRUN -> [SKIP][146] ([i915#6944] / [i915#9424])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-8/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@uevent:
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#7118] / [i915#9424])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-6/igt@kms_content_protection@uevent.html
- shard-dg1: NOTRUN -> [SKIP][148] ([i915#7116] / [i915#9424]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-13/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-256x256:
- shard-rkl: [PASS][149] -> [DMESG-WARN][150] ([i915#12917]) +2 other tests dmesg-warn
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-rkl-1/igt@kms_cursor_crc@cursor-offscreen-256x256.html
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-1/igt@kms_cursor_crc@cursor-offscreen-256x256.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-tglu: NOTRUN -> [SKIP][151] ([i915#12976]) +1 other test skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-5/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-offscreen-64x21@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [DMESG-WARN][152] ([i915#12964]) +1 other test dmesg-warn
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-2/igt@kms_cursor_crc@cursor-offscreen-64x21@pipe-b-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-tglu-1: NOTRUN -> [SKIP][153] ([i915#3555])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg1: NOTRUN -> [SKIP][154] ([i915#12976]) +2 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-17/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-dg2: NOTRUN -> [SKIP][155] ([i915#3555])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-5/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-256x85@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [DMESG-WARN][156] ([i915#12917])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-256x85@pipe-b-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-tglu-1: NOTRUN -> [SKIP][157] ([i915#12976])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-dg1: NOTRUN -> [SKIP][158] ([i915#4103] / [i915#4213])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-17/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@basic-flip-before-cursor-atomic:
- shard-glk: [PASS][159] -> [FAIL][160] ([i915#2346])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-glk9/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-glk8/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-tglu-1: NOTRUN -> [SKIP][161] ([i915#4103])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions:
- shard-glk: NOTRUN -> [FAIL][162] ([i915#2346])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-glk8/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#9833])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-4/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
- shard-dg1: NOTRUN -> [SKIP][164] ([i915#9723])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-13/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-rkl: NOTRUN -> [SKIP][165] ([i915#8588])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-7/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dp_aux_dev:
- shard-dg1: NOTRUN -> [SKIP][166] ([i915#1257])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-14/igt@kms_dp_aux_dev.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-tglu: NOTRUN -> [SKIP][167] ([i915#3840]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-7/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#3840])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#3840])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
- shard-dg1: NOTRUN -> [SKIP][170] ([i915#3840])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-18/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-tglu: NOTRUN -> [SKIP][171] ([i915#3555] / [i915#3840])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-2/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-tglu-1: NOTRUN -> [SKIP][172] ([i915#3840] / [i915#9053])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
- shard-dg1: NOTRUN -> [SKIP][173] ([i915#3840] / [i915#9053])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-14/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_feature_discovery@display-4x:
- shard-rkl: NOTRUN -> [SKIP][174] ([i915#1839])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-7/igt@kms_feature_discovery@display-4x.html
- shard-dg1: NOTRUN -> [SKIP][175] ([i915#1839])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-12/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-rkl: NOTRUN -> [SKIP][176] ([i915#9934]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-5/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-tglu-1: NOTRUN -> [SKIP][177] ([i915#3637]) +2 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-1/igt@kms_flip@2x-flip-vs-fences.html
- shard-dg1: NOTRUN -> [SKIP][178] ([i915#8381]) +1 other test skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-17/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-modeset:
- shard-tglu: NOTRUN -> [SKIP][179] ([i915#3637]) +10 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-8/igt@kms_flip@2x-flip-vs-modeset.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-dg1: NOTRUN -> [SKIP][180] ([i915#9934]) +6 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-17/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
- shard-snb: [PASS][181] -> [FAIL][182] ([i915#10826]) +1 other test fail
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-snb2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-snb7/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@flip-vs-panning-interruptible:
- shard-rkl: [PASS][183] -> [DMESG-WARN][184] ([i915#12964]) +15 other tests dmesg-warn
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-rkl-2/igt@kms_flip@flip-vs-panning-interruptible.html
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-4/igt@kms_flip@flip-vs-panning-interruptible.html
* igt@kms_flip@plain-flip-ts-check@b-vga1:
- shard-snb: [PASS][185] -> [FAIL][186] ([i915#2122]) +4 other tests fail
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-snb7/igt@kms_flip@plain-flip-ts-check@b-vga1.html
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-snb4/igt@kms_flip@plain-flip-ts-check@b-vga1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][187] ([i915#2672] / [i915#3555]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][188] ([i915#2587] / [i915#2672]) +1 other test skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#2672]) +4 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#2672] / [i915#3555] / [i915#5190])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-tglu: NOTRUN -> [SKIP][191] ([i915#2672] / [i915#3555]) +3 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][192] ([i915#2587] / [i915#2672]) +7 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-12/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html
- shard-tglu: NOTRUN -> [SKIP][193] ([i915#2587] / [i915#2672]) +3 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-10/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#2672] / [i915#3555]) +1 other test skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-dg1: NOTRUN -> [SKIP][195] ([i915#2672] / [i915#3555]) +7 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][196] ([i915#2672] / [i915#3555]) +2 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][197] ([i915#2672]) +2 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite:
- shard-dg2: [PASS][198] -> [FAIL][199] ([i915#6880]) +2 other tests fail
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][200] +98 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][201] ([i915#8708]) +26 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render:
- shard-dg2: [PASS][202] -> [SKIP][203] +27 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#3458]) +10 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][205] ([i915#8708]) +13 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][206] +63 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][207] ([i915#1825]) +16 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#5354]) +23 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][209] ([i915#5439])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
- shard-dg1: NOTRUN -> [SKIP][210] ([i915#5439])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
- shard-tglu: NOTRUN -> [SKIP][211] ([i915#5439])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][212] ([i915#10055])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-dg1: NOTRUN -> [SKIP][213] ([i915#9766])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-12/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
- shard-tglu: NOTRUN -> [SKIP][214] ([i915#9766])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-7/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][215] ([i915#3023]) +9 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-tglu-1: NOTRUN -> [SKIP][216] +37 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][217] ([i915#4423] / [i915#8708])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][218] ([i915#3458]) +26 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite.html
* igt@kms_hdr@brightness-with-hdr:
- shard-tglu: NOTRUN -> [SKIP][219] ([i915#12713])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-5/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#3555] / [i915#8228])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-7/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@static-swap:
- shard-tglu: NOTRUN -> [SKIP][221] ([i915#3555] / [i915#8228])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-8/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle-suspend:
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#3555] / [i915#8228])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-7/igt@kms_hdr@static-toggle-suspend.html
- shard-dg1: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#8228]) +1 other test skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-12/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][224] ([i915#12339])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-1/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#12388])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-8/igt@kms_joiner@invalid-modeset-force-big-joiner.html
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#12388])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html
- shard-dg1: NOTRUN -> [SKIP][227] ([i915#12388])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-18/igt@kms_joiner@invalid-modeset-force-big-joiner.html
- shard-tglu: NOTRUN -> [SKIP][228] ([i915#12388])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-8/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][229] ([i915#12394])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
- shard-dg1: NOTRUN -> [SKIP][230] ([i915#12394])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-14/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#12339])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#12339])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-dg1: NOTRUN -> [SKIP][233] ([i915#12339])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-14/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_plane_alpha_blend@constant-alpha-max:
- shard-glk: NOTRUN -> [FAIL][234] ([i915#12169])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-glk8/igt@kms_plane_alpha_blend@constant-alpha-max.html
* igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][235] ([i915#10647]) +1 other test fail
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-glk8/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html
* igt@kms_plane_multiple@tiling-yf:
- shard-rkl: NOTRUN -> [SKIP][236] ([i915#3555]) +3 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-7/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b:
- shard-rkl: NOTRUN -> [SKIP][237] ([i915#12247]) +1 other test skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
- shard-dg1: NOTRUN -> [SKIP][238] ([i915#12247]) +9 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-14/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][239] ([i915#12247]) +7 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-tglu: NOTRUN -> [SKIP][240] ([i915#12247] / [i915#6953])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d:
- shard-tglu: NOTRUN -> [SKIP][241] ([i915#12247]) +17 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#2575] / [i915#9423])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling:
- shard-dg2: [PASS][243] -> [SKIP][244] ([i915#2575] / [i915#9423]) +2 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html
* igt@kms_pm_backlight@basic-brightness:
- shard-tglu-1: NOTRUN -> [SKIP][245] ([i915#9812]) +1 other test skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-1/igt@kms_pm_backlight@basic-brightness.html
- shard-dg1: NOTRUN -> [SKIP][246] ([i915#5354])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-14/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-tglu: NOTRUN -> [SKIP][247] ([i915#9812])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-9/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc6-psr:
- shard-tglu: NOTRUN -> [SKIP][248] ([i915#9685])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-7/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][249] +28 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-11/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-rkl: NOTRUN -> [SKIP][250] ([i915#8430])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-2/igt@kms_pm_lpsp@screens-disabled.html
- shard-dg1: NOTRUN -> [SKIP][251] ([i915#8430])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-17/igt@kms_pm_lpsp@screens-disabled.html
- shard-tglu: NOTRUN -> [SKIP][252] ([i915#8430])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-2/igt@kms_pm_lpsp@screens-disabled.html
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#8430])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-6/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][254] ([i915#9519])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-7/igt@kms_pm_rpm@modeset-non-lpsp.html
- shard-dg2: NOTRUN -> [SKIP][255] ([i915#9519])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [PASS][256] -> [SKIP][257] ([i915#9519]) +1 other test skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-dg1: NOTRUN -> [SKIP][258] ([i915#6524]) +1 other test skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-12/igt@kms_prime@basic-modeset-hybrid.html
- shard-tglu: NOTRUN -> [SKIP][259] ([i915#6524]) +1 other test skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-10/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_prime@d3hot:
- shard-tglu-1: NOTRUN -> [SKIP][260] ([i915#6524])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-1/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
- shard-snb: NOTRUN -> [SKIP][261] ([i915#11520]) +3 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-snb1/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf:
- shard-glk: NOTRUN -> [SKIP][262] ([i915#11520]) +6 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-glk5/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][263] ([i915#11520]) +7 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-8/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb:
- shard-dg2: NOTRUN -> [SKIP][264] ([i915#11520]) +4 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-3/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html
- shard-rkl: NOTRUN -> [SKIP][265] ([i915#11520]) +3 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-1/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-tglu-1: NOTRUN -> [SKIP][266] ([i915#11520]) +3 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
- shard-dg1: NOTRUN -> [SKIP][267] ([i915#11520]) +14 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-17/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr@fbc-psr2-no-drrs:
- shard-tglu: NOTRUN -> [SKIP][268] ([i915#9732]) +23 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-4/igt@kms_psr@fbc-psr2-no-drrs.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: NOTRUN -> [SKIP][269] ([i915#1072] / [i915#9732]) +11 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-1/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@pr-suspend:
- shard-dg1: NOTRUN -> [SKIP][270] ([i915#1072] / [i915#9732]) +31 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-13/igt@kms_psr@pr-suspend.html
* igt@kms_psr@psr-cursor-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][271] ([i915#1072] / [i915#9732]) +15 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-7/igt@kms_psr@psr-cursor-mmap-cpu.html
* igt@kms_psr@psr2-sprite-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][272] ([i915#9732]) +6 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-cpu.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-tglu-1: NOTRUN -> [SKIP][273] ([i915#9685])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
- shard-dg1: NOTRUN -> [SKIP][274] ([i915#9685])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-17/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][275] ([i915#5289]) +1 other test skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-tglu: NOTRUN -> [SKIP][276] ([i915#5289])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][277] ([i915#12755] / [i915#5190])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-dg1: NOTRUN -> [SKIP][278] ([i915#5289]) +1 other test skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-14/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-dg1: NOTRUN -> [SKIP][279] ([i915#3555]) +4 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-13/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-tglu: NOTRUN -> [SKIP][280] ([i915#3555]) +6 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-2/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_selftest@drm_framebuffer:
- shard-glk: NOTRUN -> [ABORT][281] ([i915#12231]) +1 other test abort
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-glk4/igt@kms_selftest@drm_framebuffer.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: NOTRUN -> [FAIL][282] ([IGT#2])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-2/igt@kms_sysfs_edid_timing.html
- shard-dg1: NOTRUN -> [FAIL][283] ([IGT#2] / [i915#6493])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-17/igt@kms_sysfs_edid_timing.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-tglu-1: NOTRUN -> [SKIP][284] ([i915#8623])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern.html
- shard-dg1: NOTRUN -> [SKIP][285] ([i915#8623])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-17/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@flip-basic-fastset:
- shard-rkl: NOTRUN -> [SKIP][286] ([i915#9906])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-3/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@max-min:
- shard-tglu-1: NOTRUN -> [SKIP][287] ([i915#9906])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-1/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-dg1: NOTRUN -> [SKIP][288] ([i915#9906])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-13/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_writeback@writeback-check-output:
- shard-tglu: NOTRUN -> [SKIP][289] ([i915#2437])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-7/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-glk: NOTRUN -> [SKIP][290] ([i915#2437])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-glk8/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@per-context-mode-unprivileged:
- shard-dg1: NOTRUN -> [SKIP][291] ([i915#2433])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-14/igt@perf@per-context-mode-unprivileged.html
* igt@perf@polling-parameterized:
- shard-dg2: [PASS][292] -> [SKIP][293] ([i915#12506]) +7 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-7/igt@perf@polling-parameterized.html
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-11/igt@perf@polling-parameterized.html
* igt@perf@polling@0-rcs0:
- shard-tglu-1: NOTRUN -> [FAIL][294] ([i915#10538]) +1 other test fail
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-1/igt@perf@polling@0-rcs0.html
* igt@perf_pmu@cpu-hotplug:
- shard-dg1: NOTRUN -> [SKIP][295] ([i915#8850])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-13/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@enable-race:
- shard-dg2: NOTRUN -> [SKIP][296] ([i915#12506]) +3 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-11/igt@perf_pmu@enable-race.html
* igt@perf_pmu@rc6-all-gts:
- shard-dg1: NOTRUN -> [SKIP][297] ([i915#8516])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-13/igt@perf_pmu@rc6-all-gts.html
- shard-dg2: NOTRUN -> [SKIP][298] ([i915#8516])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-8/igt@perf_pmu@rc6-all-gts.html
* igt@perf_pmu@render-node-busy-idle@vcs0:
- shard-dg2: [PASS][299] -> [FAIL][300] ([i915#4349]) +5 other tests fail
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-4/igt@perf_pmu@render-node-busy-idle@vcs0.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-10/igt@perf_pmu@render-node-busy-idle@vcs0.html
* igt@prime_busy@before:
- shard-dg2: [PASS][301] -> [SKIP][302] ([i915#2575]) +153 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-5/igt@prime_busy@before.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-11/igt@prime_busy@before.html
* igt@prime_vgem@basic-fence-flip:
- shard-dg1: NOTRUN -> [SKIP][303] ([i915#3708])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-18/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-read:
- shard-rkl: NOTRUN -> [SKIP][304] ([i915#3291] / [i915#3708])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-7/igt@prime_vgem@basic-read.html
* igt@sriov_basic@bind-unbind-vf:
- shard-dg2: NOTRUN -> [SKIP][305] ([i915#9917])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-5/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random:
- shard-tglu: NOTRUN -> [FAIL][306] ([i915#12910]) +8 other tests fail
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-9/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random.html
* igt@syncobj_timeline@wait-all-for-submit-delayed-submit:
- shard-dg2: NOTRUN -> [SKIP][307] ([i915#2575]) +56 other tests skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-11/igt@syncobj_timeline@wait-all-for-submit-delayed-submit.html
* igt@sysfs_heartbeat_interval@precise:
- shard-snb: NOTRUN -> [SKIP][308] +145 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-snb6/igt@sysfs_heartbeat_interval@precise.html
* igt@tools_test@sysfs_l3_parity:
- shard-rkl: NOTRUN -> [SKIP][309] +7 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-1/igt@tools_test@sysfs_l3_parity.html
- shard-dg1: NOTRUN -> [SKIP][310] ([i915#4818])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-18/igt@tools_test@sysfs_l3_parity.html
- shard-dg2: NOTRUN -> [SKIP][311] ([i915#2575] / [i915#4818])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-11/igt@tools_test@sysfs_l3_parity.html
#### Possible fixes ####
* igt@core_hotunplug@unbind-rebind:
- shard-snb: [ABORT][312] ([i915#11703]) -> [PASS][313]
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-snb7/igt@core_hotunplug@unbind-rebind.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-snb2/igt@core_hotunplug@unbind-rebind.html
* igt@dmabuf@all-tests@dma_fence_chain:
- shard-rkl: [DMESG-WARN][314] -> [PASS][315] +38 other tests pass
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-rkl-5/igt@dmabuf@all-tests@dma_fence_chain.html
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-7/igt@dmabuf@all-tests@dma_fence_chain.html
* igt@fbdev@unaligned-read:
- shard-dg2: [SKIP][316] ([i915#2582]) -> [PASS][317] +2 other tests pass
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-11/igt@fbdev@unaligned-read.html
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-2/igt@fbdev@unaligned-read.html
* igt@gem_exec_big@single:
- shard-tglu: [ABORT][318] ([i915#11713]) -> [PASS][319]
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-tglu-2/igt@gem_exec_big@single.html
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-9/igt@gem_exec_big@single.html
* igt@gem_exec_whisper@basic-queues-priority-all:
- shard-rkl: [DMESG-WARN][320] ([i915#12964]) -> [PASS][321] +11 other tests pass
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-rkl-7/igt@gem_exec_whisper@basic-queues-priority-all.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-7/igt@gem_exec_whisper@basic-queues-priority-all.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-dg2: [SKIP][322] ([i915#12936]) -> [PASS][323]
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-11/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-8/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-tglu: [SKIP][324] ([i915#4270]) -> [PASS][325]
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-tglu-3/igt@gem_pxp@verify-pxp-stale-buf-execution.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-6/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: [ABORT][326] ([i915#9820]) -> [PASS][327]
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-snb1/igt@i915_module_load@reload-with-fault-injection.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-snb4/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_selftest@live:
- shard-rkl: [ABORT][328] -> [PASS][329] +1 other test pass
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-rkl-7/igt@i915_selftest@live.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-7/igt@i915_selftest@live.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-rkl: [INCOMPLETE][330] ([i915#4817]) -> [PASS][331]
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-rkl-3/igt@i915_suspend@basic-s3-without-i915.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-4/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg1: [INCOMPLETE][332] -> [PASS][333]
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg1-18/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-13/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs:
- shard-dg2: [SKIP][334] -> [PASS][335] +24 other tests pass
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-11/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-snb: [FAIL][336] ([i915#2346]) -> [PASS][337] +1 other test pass
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-snb6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-snb6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_flip@absolute-wf_vblank-interruptible:
- shard-rkl: [DMESG-WARN][338] ([i915#12917]) -> [PASS][339] +1 other test pass
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-rkl-7/igt@kms_flip@absolute-wf_vblank-interruptible.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-1/igt@kms_flip@absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a2:
- shard-rkl: [FAIL][340] ([i915#11989]) -> [PASS][341]
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a2.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a2.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg1: [INCOMPLETE][342] ([i915#4423] / [i915#4839] / [i915#6113]) -> [PASS][343]
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg1-17/igt@kms_flip@flip-vs-suspend-interruptible.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-12/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@c-hdmi-a1:
- shard-glk: [FAIL][344] -> [PASS][345]
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-glk4/igt@kms_flip@plain-flip-fb-recreate-interruptible@c-hdmi-a1.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-glk8/igt@kms_flip@plain-flip-fb-recreate-interruptible@c-hdmi-a1.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@c-hdmi-a2:
- shard-glk: [FAIL][346] ([i915#2122]) -> [PASS][347] +3 other tests pass
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-glk4/igt@kms_flip@plain-flip-fb-recreate-interruptible@c-hdmi-a2.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-glk8/igt@kms_flip@plain-flip-fb-recreate-interruptible@c-hdmi-a2.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@d-hdmi-a1:
- shard-tglu: [FAIL][348] ([i915#2122]) -> [PASS][349] +8 other tests pass
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-tglu-5/igt@kms_flip@plain-flip-fb-recreate-interruptible@d-hdmi-a1.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-6/igt@kms_flip@plain-flip-fb-recreate-interruptible@d-hdmi-a1.html
* igt@kms_flip@plain-flip-ts-check-interruptible:
- shard-snb: [FAIL][350] ([i915#2122]) -> [PASS][351] +7 other tests pass
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-snb7/igt@kms_flip@plain-flip-ts-check-interruptible.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-snb4/igt@kms_flip@plain-flip-ts-check-interruptible.html
- shard-rkl: [FAIL][352] ([i915#11989] / [i915#2122]) -> [PASS][353]
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-rkl-4/igt@kms_flip@plain-flip-ts-check-interruptible.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-7/igt@kms_flip@plain-flip-ts-check-interruptible.html
- shard-dg1: [FAIL][354] ([i915#11989] / [i915#12517] / [i915#2122]) -> [PASS][355]
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg1-12/igt@kms_flip@plain-flip-ts-check-interruptible.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-18/igt@kms_flip@plain-flip-ts-check-interruptible.html
* igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a1:
- shard-rkl: [FAIL][356] ([i915#2122]) -> [PASS][357] +2 other tests pass
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-rkl-4/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a1.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-7/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a1.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt:
- shard-dg2: [FAIL][358] ([i915#6880]) -> [PASS][359]
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
- shard-snb: [SKIP][360] -> [PASS][361] +1 other test pass
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_getfb@getfb-handle-closed:
- shard-dg2: [SKIP][362] ([i915#2575]) -> [PASS][363] +155 other tests pass
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-11/igt@kms_getfb@getfb-handle-closed.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-4/igt@kms_getfb@getfb-handle-closed.html
* igt@kms_plane@pixel-format-source-clamping:
- shard-tglu: [ABORT][364] -> [PASS][365] +3 other tests pass
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-tglu-9/igt@kms_plane@pixel-format-source-clamping.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-6/igt@kms_plane@pixel-format-source-clamping.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5:
- shard-dg2: [SKIP][366] ([i915#2575] / [i915#9423]) -> [PASS][367] +1 other test pass
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: [FAIL][368] ([i915#9295]) -> [PASS][369]
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-tglu-8/igt@kms_pm_dc@dc6-dpms.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@cursor:
- shard-dg2: [SKIP][370] ([i915#12937]) -> [PASS][371]
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-11/igt@kms_pm_rpm@cursor.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-1/igt@kms_pm_rpm@cursor.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-rkl: [SKIP][372] -> [PASS][373] +1 other test pass
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2: [SKIP][374] ([i915#9519]) -> [PASS][375]
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-2/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_setmode@basic:
- shard-snb: [FAIL][376] ([i915#5465]) -> [PASS][377] +2 other tests pass
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-snb2/igt@kms_setmode@basic.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-snb4/igt@kms_setmode@basic.html
* igt@perf@invalid-remove-userspace-config:
- shard-dg2: [SKIP][378] ([i915#12506]) -> [PASS][379] +4 other tests pass
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-11/igt@perf@invalid-remove-userspace-config.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-6/igt@perf@invalid-remove-userspace-config.html
* igt@perf@polling@0-rcs0:
- shard-rkl: [FAIL][380] ([i915#10538]) -> [PASS][381] +1 other test pass
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-rkl-1/igt@perf@polling@0-rcs0.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-2/igt@perf@polling@0-rcs0.html
* igt@perf_pmu@most-busy-idle-check-all:
- shard-dg2: [FAIL][382] ([i915#11943] / [i915#12515]) -> [PASS][383] +1 other test pass
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-10/igt@perf_pmu@most-busy-idle-check-all.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-5/igt@perf_pmu@most-busy-idle-check-all.html
* igt@perf_pmu@most-busy-idle-check-all@rcs0:
- shard-rkl: [FAIL][384] ([i915#4349]) -> [PASS][385] +1 other test pass
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-rkl-2/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-4/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
* igt@syncobj_timeline@multi-wait-for-submit-unsubmitted-submitted-signaled:
- shard-dg1: [DMESG-WARN][386] ([i915#4423]) -> [PASS][387]
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg1-17/igt@syncobj_timeline@multi-wait-for-submit-unsubmitted-submitted-signaled.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg1-13/igt@syncobj_timeline@multi-wait-for-submit-unsubmitted-submitted-signaled.html
#### Warnings ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg2: [SKIP][388] ([i915#8411]) -> [SKIP][389] ([i915#2575])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-10/igt@api_intel_bb@blit-reloc-purge-cache.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-11/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@drm_fdinfo@busy-hang:
- shard-dg2: [SKIP][390] ([i915#12506]) -> [SKIP][391] ([i915#8414])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-11/igt@drm_fdinfo@busy-hang.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-2/igt@drm_fdinfo@busy-hang.html
* igt@drm_fdinfo@most-busy-idle-check-all:
- shard-dg2: [SKIP][392] ([i915#8414]) -> [SKIP][393] ([i915#12506]) +1 other test skip
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-6/igt@drm_fdinfo@most-busy-idle-check-all.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-11/igt@drm_fdinfo@most-busy-idle-check-all.html
* igt@gem_basic@multigpu-create-close:
- shard-dg2: [SKIP][394] ([i915#7697]) -> [SKIP][395] ([i915#2575])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-2/igt@gem_basic@multigpu-create-close.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-11/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: [SKIP][396] ([i915#2575]) -> [INCOMPLETE][397] ([i915#7297])
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-11/igt@gem_ccs@suspend-resume.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-5/igt@gem_ccs@suspend-resume.html
* igt@gem_ctx_freq@sysfs:
- shard-dg2: [FAIL][398] ([i915#9561]) -> [SKIP][399] ([i915#2575])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-7/igt@gem_ctx_freq@sysfs.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-11/igt@gem_ctx_freq@sysfs.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-dg2: [SKIP][400] ([i915#2575]) -> [SKIP][401] ([i915#8555])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-close.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-8/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_sseu@engines:
- shard-dg2: [SKIP][402] ([i915#2575]) -> [SKIP][403] ([i915#280])
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-11/igt@gem_ctx_sseu@engines.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-4/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: [SKIP][404] ([i915#280]) -> [SKIP][405] ([i915#2575])
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-6/igt@gem_ctx_sseu@invalid-sseu.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-11/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2: [SKIP][406] ([i915#4771]) -> [SKIP][407] ([i915#2575])
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-3/igt@gem_exec_balancer@bonded-sync.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-11/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_capture@capture:
- shard-dg2: [SKIP][408] ([i915#2575]) -> [FAIL][409] ([i915#11965] / [i915#12558])
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-11/igt@gem_exec_capture@capture.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-2/igt@gem_exec_capture@capture.html
* igt@gem_exec_fence@submit3:
- shard-dg2: [SKIP][410] ([i915#2575]) -> [SKIP][411] ([i915#4812])
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-11/igt@gem_exec_fence@submit3.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-7/igt@gem_exec_fence@submit3.html
* igt@gem_exec_flush@basic-batch-kernel-default-uc:
- shard-dg2: [SKIP][412] ([i915#2575]) -> [SKIP][413] ([i915#3539] / [i915#4852])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-11/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-8/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
* igt@gem_exec_flush@basic-uc-set-default:
- shard-dg2: [SKIP][414] ([i915#2575]) -> [SKIP][415] ([i915#3539]) +1 other test skip
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-11/igt@gem_exec_flush@basic-uc-set-default.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-2/igt@gem_exec_flush@basic-uc-set-default.html
* igt@gem_exec_flush@basic-wb-pro-default:
- shard-dg2: [SKIP][416] ([i915#3539] / [i915#4852]) -> [SKIP][417] ([i915#2575])
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-6/igt@gem_exec_flush@basic-wb-pro-default.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-11/igt@gem_exec_flush@basic-wb-pro-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-dg2: [SKIP][418] ([i915#5107]) -> [SKIP][419] ([i915#2575])
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-1/igt@gem_exec_params@rsvd2-dirt.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-11/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-dg2: [SKIP][420] ([i915#3281]) -> [SKIP][421] ([i915#2575]) +8 other tests skip
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-1/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-11/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-cpu-read:
- shard-dg2: [SKIP][422] ([i915#2575]) -> [SKIP][423] ([i915#3281]) +4 other tests skip
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-11/igt@gem_exec_reloc@basic-cpu-read.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-1/igt@gem_exec_reloc@basic-cpu-read.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg2: [SKIP][424] ([i915#4537] / [i915#4812]) -> [SKIP][425] ([i915#2575]) +1 other test skip
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-6/igt@gem_exec_schedule@preempt-queue-contexts.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-11/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy:
- shard-dg2: [SKIP][426] ([i915#2575]) -> [SKIP][427] ([i915#4860]) +1 other test skip
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-11/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-8/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html
* igt@gem_madvise@dontneed-before-exec:
- shard-dg2: [SKIP][428] ([i915#3282]) -> [SKIP][429] ([i915#2575]) +5 other tests skip
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-7/igt@gem_madvise@dontneed-before-exec.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-11/igt@gem_madvise@dontneed-before-exec.html
* igt@gem_media_fill@media-fill:
- shard-dg2: [SKIP][430] ([i915#8289]) -> [SKIP][431] ([i915#2575])
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-7/igt@gem_media_fill@media-fill.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-11/igt@gem_media_fill@media-fill.html
* igt@gem_mmap_gtt@basic-small-bo:
- shard-dg2: [SKIP][432] ([i915#4077]) -> [SKIP][433] ([i915#2575]) +8 other tests skip
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-10/igt@gem_mmap_gtt@basic-small-bo.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-11/igt@gem_mmap_gtt@basic-small-bo.html
* igt@gem_mmap_gtt@cpuset-big-copy-odd:
- shard-dg2: [SKIP][434] ([i915#2575]) -> [SKIP][435] ([i915#4077]) +10 other tests skip
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-11/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-5/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
* igt@gem_mmap_wc@write-cpu-read-wc:
- shard-dg2: [SKIP][436] ([i915#4083]) -> [SKIP][437] ([i915#2575]) +4 other tests skip
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-6/igt@gem_mmap_wc@write-cpu-read-wc.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-11/igt@gem_mmap_wc@write-cpu-read-wc.html
* igt@gem_mmap_wc@write-prefaulted:
- shard-dg2: [SKIP][438] ([i915#2575]) -> [SKIP][439] ([i915#4083]) +6 other tests skip
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-11/igt@gem_mmap_wc@write-prefaulted.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-7/igt@gem_mmap_wc@write-prefaulted.html
* igt@gem_partial_pwrite_pread@write-uncached:
- shard-dg2: [SKIP][440] ([i915#2575]) -> [SKIP][441] ([i915#3282]) +1 other test skip
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-11/igt@gem_partial_pwrite_pread@write-uncached.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-3/igt@gem_partial_pwrite_pread@write-uncached.html
* igt@gem_pxp@display-protected-crc:
- shard-dg2: [SKIP][442] ([i915#4270]) -> [SKIP][443] ([i915#2575]) +2 other tests skip
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-5/igt@gem_pxp@display-protected-crc.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-11/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@fail-invalid-protected-context:
- shard-dg2: [SKIP][444] ([i915#2575]) -> [SKIP][445] ([i915#4270]) +1 other test skip
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-11/igt@gem_pxp@fail-invalid-protected-context.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-6/igt@gem_pxp@fail-invalid-protected-context.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-rkl: [SKIP][446] ([i915#4270]) -> [TIMEOUT][447] ([i915#12917])
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-rkl-4/igt@gem_pxp@verify-pxp-stale-buf-execution.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-rkl-1/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled:
- shard-dg2: [SKIP][448] ([i915#2575] / [i915#5190]) -> [SKIP][449] ([i915#5190] / [i915#8428]) +2 other tests skip
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-11/igt@gem_render_copy@y-tiled-ccs-to-y-tiled.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-5/igt@gem_render_copy@y-tiled-ccs-to-y-tiled.html
* igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled:
- shard-dg2: [SKIP][450] ([i915#5190] / [i915#8428]) -> [SKIP][451] ([i915#2575] / [i915#5190]) +2 other tests skip
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-3/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/shard-dg2-11/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg2: [SKIP][452] ([i915#2575]) -> [SKIP][453] ([i915#4885])
[452]: htt
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12168/index.html
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [CI 1/2] lib/igt_kmod: Drop legacy kunit fallback
2024-11-21 22:55 [CI 1/2] lib/igt_kmod: Drop legacy kunit fallback Lucas De Marchi
` (4 preceding siblings ...)
2024-11-24 13:30 ` ✗ i915.CI.Full: " Patchwork
@ 2024-12-02 21:59 ` Lucas De Marchi
5 siblings, 0 replies; 7+ messages in thread
From: Lucas De Marchi @ 2024-12-02 21:59 UTC (permalink / raw)
To: igt-dev
On Thu, Nov 21, 2024 at 02:55:09PM -0800, Lucas De Marchi wrote:
>Kunit has support for listing tests with debugfs for quite some time,
>there's no need for the fallback to be happening: let's just start
>failing the tests if we can't get the list of tests from debugfs.
>
>Reviewed-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
>Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
>---
None of the failures are related to this. Patches applied.
Lucas De Marchi
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-12-02 21:59 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-21 22:55 [CI 1/2] lib/igt_kmod: Drop legacy kunit fallback Lucas De Marchi
2024-11-21 22:55 ` [CI 2/2] lib/igt_kmod: Fix leaking subtest name Lucas De Marchi
2024-11-22 0:29 ` ✓ Xe.CI.BAT: success for series starting with [CI,1/2] lib/igt_kmod: Drop legacy kunit fallback Patchwork
2024-11-22 0:32 ` ✓ i915.CI.BAT: " Patchwork
2024-11-22 17:36 ` ✗ Xe.CI.Full: failure " Patchwork
2024-11-24 13:30 ` ✗ i915.CI.Full: " Patchwork
2024-12-02 21:59 ` [CI 1/2] " Lucas De Marchi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox