* [PATCH i-g-t 0/2] lib/igt_kmod: Drop legacy kunit integration
@ 2024-10-31 0:31 Lucas De Marchi
2024-10-31 0:31 ` [PATCH i-g-t 1/2] lib/igt_kmod: Drop legacy kunit fallback Lucas De Marchi
` (5 more replies)
0 siblings, 6 replies; 12+ messages in thread
From: Lucas De Marchi @ 2024-10-31 0:31 UTC (permalink / raw)
To: igt-dev; +Cc: Janusz Krzysztofik, Lucas De Marchi
Drop the legacy path with the minimum amount of conversion. There's
still a lot of room for simplification in handling the debugfs path/dir,
but that can be done later.
Lucas De Marchi (2):
lib/igt_kmod: Drop legacy kunit fallback
lib/igt_kmod: Simplify kunit_set_filtering()
lib/igt_kmod.c | 318 +++----------------------------------------------
1 file changed, 15 insertions(+), 303 deletions(-)
--
2.47.0
^ permalink raw reply [flat|nested] 12+ messages in thread* [PATCH i-g-t 1/2] lib/igt_kmod: Drop legacy kunit fallback 2024-10-31 0:31 [PATCH i-g-t 0/2] lib/igt_kmod: Drop legacy kunit integration Lucas De Marchi @ 2024-10-31 0:31 ` Lucas De Marchi 2024-10-31 10:42 ` Janusz Krzysztofik 2024-10-31 0:31 ` [PATCH i-g-t 2/2] lib/igt_kmod: Simplify kunit_set_filtering() Lucas De Marchi ` (4 subsequent siblings) 5 siblings, 1 reply; 12+ messages in thread From: Lucas De Marchi @ 2024-10-31 0:31 UTC (permalink / raw) To: igt-dev; +Cc: Janusz Krzysztofik, Lucas De Marchi 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. Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> --- lib/igt_kmod.c | 278 ++----------------------------------------------- 1 file changed, 10 insertions(+), 268 deletions(-) diff --git a/lib/igt_kmod.c b/lib/igt_kmod.c index 75a0d057c..4cb9e886d 100644 --- a/lib/igt_kmod.c +++ b/lib/igt_kmod.c @@ -992,121 +992,6 @@ close: 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) { @@ -1181,146 +1066,6 @@ 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, struct igt_ktest *tst, const char *suite, @@ -1523,25 +1268,22 @@ void igt_kunit(const char *module_name, const char *suite, const char *opts) /* * 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. - */ + bool has_tests; + 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); + igt_assert(*debugfs_path); + + has_tests = kunit_get_tests(&tests, &tst, suite, opts, + debugfs_path, &debugfs_dir, &ktap); + igt_assert(has_tests); + + __igt_kunit(&tst, subtest, opts, debugfs_path, &tests, &ktap); } igt_fixture { -- 2.47.0 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH i-g-t 1/2] lib/igt_kmod: Drop legacy kunit fallback 2024-10-31 0:31 ` [PATCH i-g-t 1/2] lib/igt_kmod: Drop legacy kunit fallback Lucas De Marchi @ 2024-10-31 10:42 ` Janusz Krzysztofik 2024-10-31 13:18 ` Lucas De Marchi 0 siblings, 1 reply; 12+ messages in thread From: Janusz Krzysztofik @ 2024-10-31 10:42 UTC (permalink / raw) To: Lucas De Marchi, Janusz Krzysztofik; +Cc: igt-dev Hi Lucas, On Thursday, 31 October 2024 01:31:41 CET 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. We must not fail, we may skip, see below. > > Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> > --- > lib/igt_kmod.c | 278 ++----------------------------------------------- > 1 file changed, 10 insertions(+), 268 deletions(-) > > diff --git a/lib/igt_kmod.c b/lib/igt_kmod.c > index 75a0d057c..4cb9e886d 100644 > --- a/lib/igt_kmod.c > +++ b/lib/igt_kmod.c ... > @@ -1523,25 +1268,22 @@ void igt_kunit(const char *module_name, const char *suite, const char *opts) > > /* > * 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. > - */ > + bool has_tests; > + > 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); > + igt_assert(*debugfs_path); According to a comment followed by respective assert() inside lib/igt_core.c:igt_fail(): /* Dynamic subtest containers must not fail explicitly */ that's why I suggested replacing the fallback with igt_require(), not with igt_assert(). But maybe we could go a step forward and replace all if (igt_debug_on(...)) return; inside kunit_debugfs_path() with igt_skip_on(...); then we needed neither igt_require() nor igt_assert() here. > + > + has_tests = kunit_get_tests(&tests, &tst, suite, opts, > + debugfs_path, &debugfs_dir, &ktap); > + igt_assert(has_tests); Ditto, optionally with all if (igt_debug_on(...)) return false; inside kunit_get_tests() replaced with igt_skip_on(...); and kunit_get_tests() returning void. Thanks, Janusz > + > + __igt_kunit(&tst, subtest, opts, debugfs_path, &tests, &ktap); > } > > igt_fixture { > ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH i-g-t 1/2] lib/igt_kmod: Drop legacy kunit fallback 2024-10-31 10:42 ` Janusz Krzysztofik @ 2024-10-31 13:18 ` Lucas De Marchi 2024-10-31 14:58 ` Janusz Krzysztofik 0 siblings, 1 reply; 12+ messages in thread From: Lucas De Marchi @ 2024-10-31 13:18 UTC (permalink / raw) To: Janusz Krzysztofik; +Cc: igt-dev On Thu, Oct 31, 2024 at 11:42:58AM +0100, Janusz Krzysztofik wrote: >Hi Lucas, > >On Thursday, 31 October 2024 01:31:41 CET 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. > >We must not fail, we may skip, see below. > >> >> Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> >> --- >> lib/igt_kmod.c | 278 ++----------------------------------------------- >> 1 file changed, 10 insertions(+), 268 deletions(-) >> >> diff --git a/lib/igt_kmod.c b/lib/igt_kmod.c >> index 75a0d057c..4cb9e886d 100644 >> --- a/lib/igt_kmod.c >> +++ b/lib/igt_kmod.c >... >> @@ -1523,25 +1268,22 @@ void igt_kunit(const char *module_name, const char *suite, const char *opts) >> >> /* >> * 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. >> - */ >> + bool has_tests; >> + >> 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); >> + igt_assert(*debugfs_path); > >According to a comment followed by respective assert() inside >lib/igt_core.c:igt_fail(): > > /* Dynamic subtest containers must not fail explicitly */ > >that's why I suggested replacing the fallback with igt_require(), not with >igt_assert(). where did you suggest that? > >But maybe we could go a step forward and replace all > > if (igt_debug_on(...)) > return; > >inside kunit_debugfs_path() with > > igt_skip_on(...); I'd rather not skip and have a big red FAIL since it's not a valid setup. > >then we needed neither igt_require() nor igt_assert() here. > >> + >> + has_tests = kunit_get_tests(&tests, &tst, suite, opts, >> + debugfs_path, &debugfs_dir, &ktap); >> + igt_assert(has_tests); > >Ditto, optionally with all > > if (igt_debug_on(...)) > return false; > >inside kunit_get_tests() replaced with > > igt_skip_on(...); if those writes fail for whatever reason, I don't want the test to skip, I want them to fail so we can fix them. a skip is a valid thing when there's difference in behavior from platform to platform or when it's a valid difference in env setup. Here it's not. Lucas De Marchi > >and kunit_get_tests() returning void. > >Thanks, >Janusz > >> + >> + __igt_kunit(&tst, subtest, opts, debugfs_path, &tests, &ktap); >> } >> >> igt_fixture { >> > > > > ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH i-g-t 1/2] lib/igt_kmod: Drop legacy kunit fallback 2024-10-31 13:18 ` Lucas De Marchi @ 2024-10-31 14:58 ` Janusz Krzysztofik 2024-11-04 23:03 ` Lucas De Marchi 0 siblings, 1 reply; 12+ messages in thread From: Janusz Krzysztofik @ 2024-10-31 14:58 UTC (permalink / raw) To: Lucas De Marchi; +Cc: igt-dev On Thursday, 31 October 2024 14:18:25 CET Lucas De Marchi wrote: > On Thu, Oct 31, 2024 at 11:42:58AM +0100, Janusz Krzysztofik wrote: > >Hi Lucas, > > > >On Thursday, 31 October 2024 01:31:41 CET 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. > > > >We must not fail, we may skip, see below. > > > >> > >> Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> > >> --- > >> lib/igt_kmod.c | 278 ++----------------------------------------------- > >> 1 file changed, 10 insertions(+), 268 deletions(-) > >> > >> diff --git a/lib/igt_kmod.c b/lib/igt_kmod.c > >> index 75a0d057c..4cb9e886d 100644 > >> --- a/lib/igt_kmod.c > >> +++ b/lib/igt_kmod.c > >... > >> @@ -1523,25 +1268,22 @@ void igt_kunit(const char *module_name, const char *suite, const char *opts) > >> > >> /* > >> * 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. > >> - */ > >> + bool has_tests; > >> + > >> 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); > >> + igt_assert(*debugfs_path); > > > >According to a comment followed by respective assert() inside > >lib/igt_core.c:igt_fail(): > > > > /* Dynamic subtest containers must not fail explicitly */ > > > >that's why I suggested replacing the fallback with igt_require(), not with > >igt_assert(). > > where did you suggest that? In the above TODO comment you are addressing with this patch. Janusz > > > > >But maybe we could go a step forward and replace all > > > > if (igt_debug_on(...)) > > return; > > > >inside kunit_debugfs_path() with > > > > igt_skip_on(...); > > > I'd rather not skip and have a big red FAIL since it's not a valid > setup. > > > > >then we needed neither igt_require() nor igt_assert() here. > > > >> + > >> + has_tests = kunit_get_tests(&tests, &tst, suite, opts, > >> + debugfs_path, &debugfs_dir, &ktap); > >> + igt_assert(has_tests); > > > >Ditto, optionally with all > > > > if (igt_debug_on(...)) > > return false; > > > >inside kunit_get_tests() replaced with > > > > igt_skip_on(...); > > if those writes fail for whatever reason, I don't want the test to skip, > I want them to fail so we can fix them. > > a skip is a valid thing when there's difference in behavior from > platform to platform or when it's a valid difference in env setup. Here > it's not. > > Lucas De Marchi > > > > >and kunit_get_tests() returning void. > > > >Thanks, > >Janusz > > > >> + > >> + __igt_kunit(&tst, subtest, opts, debugfs_path, &tests, &ktap); > >> } > >> > >> igt_fixture { > >> > > > > > > > > > ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH i-g-t 1/2] lib/igt_kmod: Drop legacy kunit fallback 2024-10-31 14:58 ` Janusz Krzysztofik @ 2024-11-04 23:03 ` Lucas De Marchi 0 siblings, 0 replies; 12+ messages in thread From: Lucas De Marchi @ 2024-11-04 23:03 UTC (permalink / raw) To: Janusz Krzysztofik; +Cc: igt-dev On Thu, Oct 31, 2024 at 03:58:11PM +0100, Janusz Krzysztofik wrote: >On Thursday, 31 October 2024 14:18:25 CET Lucas De Marchi wrote: >> On Thu, Oct 31, 2024 at 11:42:58AM +0100, Janusz Krzysztofik wrote: >> >Hi Lucas, >> > >> >On Thursday, 31 October 2024 01:31:41 CET 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. >> > >> >We must not fail, we may skip, see below. >> > >> >> >> >> Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> >> >> --- >> >> lib/igt_kmod.c | 278 ++----------------------------------------------- >> >> 1 file changed, 10 insertions(+), 268 deletions(-) >> >> >> >> diff --git a/lib/igt_kmod.c b/lib/igt_kmod.c >> >> index 75a0d057c..4cb9e886d 100644 >> >> --- a/lib/igt_kmod.c >> >> +++ b/lib/igt_kmod.c >> >... >> >> @@ -1523,25 +1268,22 @@ void igt_kunit(const char *module_name, const char *suite, const char *opts) >> >> >> >> /* >> >> * 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. >> >> - */ >> >> + bool has_tests; >> >> + >> >> 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); >> >> + igt_assert(*debugfs_path); >> > >> >According to a comment followed by respective assert() inside >> >lib/igt_core.c:igt_fail(): >> > >> > /* Dynamic subtest containers must not fail explicitly */ >> > >> >that's why I suggested replacing the fallback with igt_require(), not with >> >igt_assert(). >> >> where did you suggest that? > >In the above TODO comment you are addressing with this patch. oh, I see. I still don't agree with the approach of using skip here, but I don't care enough to postpone this. Let me fix it and resubmit. I went ahead and merged the second patch as it doesn't depend on this. thanks Lucas De Marchi > >Janusz > >> >> > >> >But maybe we could go a step forward and replace all >> > >> > if (igt_debug_on(...)) >> > return; >> > >> >inside kunit_debugfs_path() with >> > >> > igt_skip_on(...); >> >> >> I'd rather not skip and have a big red FAIL since it's not a valid >> setup. >> >> > >> >then we needed neither igt_require() nor igt_assert() here. >> > >> >> + >> >> + has_tests = kunit_get_tests(&tests, &tst, suite, opts, >> >> + debugfs_path, &debugfs_dir, &ktap); >> >> + igt_assert(has_tests); >> > >> >Ditto, optionally with all >> > >> > if (igt_debug_on(...)) >> > return false; >> > >> >inside kunit_get_tests() replaced with >> > >> > igt_skip_on(...); >> >> if those writes fail for whatever reason, I don't want the test to skip, >> I want them to fail so we can fix them. >> >> a skip is a valid thing when there's difference in behavior from >> platform to platform or when it's a valid difference in env setup. Here >> it's not. >> >> Lucas De Marchi >> >> > >> >and kunit_get_tests() returning void. >> > >> >Thanks, >> >Janusz >> > >> >> + >> >> + __igt_kunit(&tst, subtest, opts, debugfs_path, &tests, &ktap); >> >> } >> >> >> >> igt_fixture { >> >> >> > >> > >> > >> > >> > > > > ^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH i-g-t 2/2] lib/igt_kmod: Simplify kunit_set_filtering() 2024-10-31 0:31 [PATCH i-g-t 0/2] lib/igt_kmod: Drop legacy kunit integration Lucas De Marchi 2024-10-31 0:31 ` [PATCH i-g-t 1/2] lib/igt_kmod: Drop legacy kunit fallback Lucas De Marchi @ 2024-10-31 0:31 ` Lucas De Marchi 2024-10-31 10:35 ` Janusz Krzysztofik 2024-10-31 2:22 ` ✓ CI.xeBAT: success for lib/igt_kmod: Drop legacy kunit integration Patchwork ` (3 subsequent siblings) 5 siblings, 1 reply; 12+ messages in thread From: Lucas De Marchi @ 2024-10-31 0:31 UTC (permalink / raw) To: igt-dev; +Cc: Janusz Krzysztofik, Lucas De Marchi igt_sysfs_set() already supports setting a 0-length value since commit 1c0b492a0b5c ("lib/igt_sysfs: make sure to write empty strings"). Remove workaround in kunit_set_filtering() and simplify. Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> --- lib/igt_kmod.c | 40 +++++----------------------------------- 1 file changed, 5 insertions(+), 35 deletions(-) diff --git a/lib/igt_kmod.c b/lib/igt_kmod.c index 4cb9e886d..5fd500384 100644 --- a/lib/igt_kmod.c +++ b/lib/igt_kmod.c @@ -939,7 +939,7 @@ static bool kunit_set_filtering(const char *filter_glob, const char *filter, const char *filter_action) { int params; - bool ret; + bool ret = true; params = open_parameters("kunit"); if (igt_debug_on(params < 0)) @@ -952,41 +952,11 @@ static bool kunit_set_filtering(const char *filter_glob, const char *filter, * As a workaround, we use non-NULL strings that exhibit * the same behaviour as if default NULLs were in place. */ - ret = !igt_debug_on(!igt_sysfs_set(params, "filter_glob", - filter_glob ?: "*")); - if (!ret) - goto close; + if (igt_debug_on(!igt_sysfs_set(params, "filter_glob", filter_glob ?: "*")) || + igt_debug_on(!igt_sysfs_set(params, "filter", filter ?: "module!=none")) || + igt_debug_on(!igt_sysfs_set(params, "filter_action", filter_action ?: ""))) + ret = false; - ret = !igt_debug_on(!igt_sysfs_set(params, "filter", - filter ?: "module!=none")); - if (!ret) - goto close; - - ret = !igt_debug_on(!igt_sysfs_set(params, "filter_action", - filter_action ?: "")); - - /* - * TODO: Drop the extra check below as soon as igt_sysfs_set() - * can correctly process empty strings which we are using - * as filter_action NULL equivalent. - * - * We need this check only when NULL is requested for "filter_action" - * and not for "filter" parameter, otherwise, even if "filter_action" - * was previously set to "skip", we don't care since our - * "module!=none" default filter guarantees that no test cases are - * filtered out to be processed as "filter_action" says. - */ - if (ret && !filter_action && filter) { - filter_action = igt_sysfs_get(params, "filter_action"); - - ret = !(igt_debug_on_f(!filter_action, - "open() failed\n") || - igt_debug_on_f(strlen(filter_action), - "empty string not applied\n")); - free((char *)filter_action); - } - -close: close(params); return ret; -- 2.47.0 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH i-g-t 2/2] lib/igt_kmod: Simplify kunit_set_filtering() 2024-10-31 0:31 ` [PATCH i-g-t 2/2] lib/igt_kmod: Simplify kunit_set_filtering() Lucas De Marchi @ 2024-10-31 10:35 ` Janusz Krzysztofik 0 siblings, 0 replies; 12+ messages in thread From: Janusz Krzysztofik @ 2024-10-31 10:35 UTC (permalink / raw) To: Lucas De Marchi, Janusz Krzysztofik; +Cc: igt-dev Hi Lucas, On Thursday, 31 October 2024 01:31:42 CET Lucas De Marchi wrote: > igt_sysfs_set() already supports setting a 0-length value since commit > 1c0b492a0b5c ("lib/igt_sysfs: make sure to write empty strings"). > Remove workaround in kunit_set_filtering() and simplify. > > Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> Reviewed-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com> > --- > lib/igt_kmod.c | 40 +++++----------------------------------- > 1 file changed, 5 insertions(+), 35 deletions(-) > > diff --git a/lib/igt_kmod.c b/lib/igt_kmod.c > index 4cb9e886d..5fd500384 100644 > --- a/lib/igt_kmod.c > +++ b/lib/igt_kmod.c > @@ -939,7 +939,7 @@ static bool kunit_set_filtering(const char *filter_glob, const char *filter, > const char *filter_action) > { > int params; > - bool ret; > + bool ret = true; NIT: Preserve Christmas tree order. Thanks, Janusz > > params = open_parameters("kunit"); > if (igt_debug_on(params < 0)) > @@ -952,41 +952,11 @@ static bool kunit_set_filtering(const char *filter_glob, const char *filter, > * As a workaround, we use non-NULL strings that exhibit > * the same behaviour as if default NULLs were in place. > */ > - ret = !igt_debug_on(!igt_sysfs_set(params, "filter_glob", > - filter_glob ?: "*")); > - if (!ret) > - goto close; > + if (igt_debug_on(!igt_sysfs_set(params, "filter_glob", filter_glob ?: "*")) || > + igt_debug_on(!igt_sysfs_set(params, "filter", filter ?: "module!=none")) || > + igt_debug_on(!igt_sysfs_set(params, "filter_action", filter_action ?: ""))) > + ret = false; > > - ret = !igt_debug_on(!igt_sysfs_set(params, "filter", > - filter ?: "module!=none")); > - if (!ret) > - goto close; > - > - ret = !igt_debug_on(!igt_sysfs_set(params, "filter_action", > - filter_action ?: "")); > - > - /* > - * TODO: Drop the extra check below as soon as igt_sysfs_set() > - * can correctly process empty strings which we are using > - * as filter_action NULL equivalent. > - * > - * We need this check only when NULL is requested for "filter_action" > - * and not for "filter" parameter, otherwise, even if "filter_action" > - * was previously set to "skip", we don't care since our > - * "module!=none" default filter guarantees that no test cases are > - * filtered out to be processed as "filter_action" says. > - */ > - if (ret && !filter_action && filter) { > - filter_action = igt_sysfs_get(params, "filter_action"); > - > - ret = !(igt_debug_on_f(!filter_action, > - "open() failed\n") || > - igt_debug_on_f(strlen(filter_action), > - "empty string not applied\n")); > - free((char *)filter_action); > - } > - > -close: > close(params); > > return ret; > ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ CI.xeBAT: success for lib/igt_kmod: Drop legacy kunit integration 2024-10-31 0:31 [PATCH i-g-t 0/2] lib/igt_kmod: Drop legacy kunit integration Lucas De Marchi 2024-10-31 0:31 ` [PATCH i-g-t 1/2] lib/igt_kmod: Drop legacy kunit fallback Lucas De Marchi 2024-10-31 0:31 ` [PATCH i-g-t 2/2] lib/igt_kmod: Simplify kunit_set_filtering() Lucas De Marchi @ 2024-10-31 2:22 ` Patchwork 2024-10-31 2:45 ` ✓ Fi.CI.BAT: " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2024-10-31 2:22 UTC (permalink / raw) To: Lucas De Marchi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4952 bytes --] == Series Details == Series: lib/igt_kmod: Drop legacy kunit integration URL : https://patchwork.freedesktop.org/series/140746/ State : success == Summary == CI Bug Log - changes from XEIGT_8089_BAT -> XEIGTPW_12011_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12011_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - bat-adlp-7: [PASS][1] -> [INCOMPLETE][2] ([Intel XE#2874]) +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - bat-dg2-oem2: NOTRUN -> [SKIP][3] ([Intel XE#2229]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/bat-dg2-oem2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html - bat-atsm-2: NOTRUN -> [SKIP][4] ([Intel XE#2229]) +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/bat-atsm-2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html - bat-pvc-2: NOTRUN -> [SKIP][5] ([Intel XE#2229]) +2 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/bat-pvc-2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html #### Possible fixes #### * igt@kms_flip@basic-flip-vs-wf_vblank: - bat-lnl-1: [FAIL][6] ([Intel XE#886]) -> [PASS][7] +1 other test pass [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/bat-lnl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/bat-lnl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html * igt@xe_exec_fault_mode@twice-basic: - bat-pvc-2: [DMESG-WARN][8] ([Intel XE#3295]) -> [PASS][9] +1 other test pass [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/bat-pvc-2/igt@xe_exec_fault_mode@twice-basic.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/bat-pvc-2/igt@xe_exec_fault_mode@twice-basic.html * igt@xe_live_ktest@xe_bo: - bat-pvc-2: [SKIP][10] ([Intel XE#1192]) -> [PASS][11] +2 other tests pass [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/bat-pvc-2/igt@xe_live_ktest@xe_bo.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/bat-pvc-2/igt@xe_live_ktest@xe_bo.html * igt@xe_live_ktest@xe_migrate: - bat-dg2-oem2: [SKIP][12] ([Intel XE#1192]) -> [PASS][13] +2 other tests pass [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/bat-dg2-oem2/igt@xe_live_ktest@xe_migrate.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/bat-dg2-oem2/igt@xe_live_ktest@xe_migrate.html - bat-atsm-2: [SKIP][14] ([Intel XE#1192]) -> [PASS][15] +2 other tests pass [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/bat-atsm-2/igt@xe_live_ktest@xe_migrate.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/bat-atsm-2/igt@xe_live_ktest@xe_migrate.html * igt@xe_module_load@load: - bat-dg2-oem2: [DMESG-WARN][16] ([Intel XE#3295]) -> [PASS][17] +6 other tests pass [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/bat-dg2-oem2/igt@xe_module_load@load.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/bat-dg2-oem2/igt@xe_module_load@load.html - bat-atsm-2: [DMESG-WARN][18] ([Intel XE#3295]) -> [PASS][19] +2 other tests pass [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/bat-atsm-2/igt@xe_module_load@load.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/bat-atsm-2/igt@xe_module_load@load.html [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2874 [Intel XE#3295]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3295 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 Build changes ------------- * IGT: IGT_8089 -> IGTPW_12011 * Linux: xe-2146-afdb5631acb317eca18b171006efb3930fef7eb4 -> xe-2147-c245557007af0a1c23da00c47732ae1dadda7dd3 IGTPW_12011: 12011 IGT_8089: 2339a396e8c38ba1582a6fc18fe4f7ed178979cc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2146-afdb5631acb317eca18b171006efb3930fef7eb4: afdb5631acb317eca18b171006efb3930fef7eb4 xe-2147-c245557007af0a1c23da00c47732ae1dadda7dd3: c245557007af0a1c23da00c47732ae1dadda7dd3 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/index.html [-- Attachment #2: Type: text/html, Size: 6131 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ Fi.CI.BAT: success for lib/igt_kmod: Drop legacy kunit integration 2024-10-31 0:31 [PATCH i-g-t 0/2] lib/igt_kmod: Drop legacy kunit integration Lucas De Marchi ` (2 preceding siblings ...) 2024-10-31 2:22 ` ✓ CI.xeBAT: success for lib/igt_kmod: Drop legacy kunit integration Patchwork @ 2024-10-31 2:45 ` Patchwork 2024-10-31 4:41 ` ✗ CI.xeFULL: failure " Patchwork 2024-10-31 13:16 ` ✗ Fi.CI.IGT: " Patchwork 5 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2024-10-31 2:45 UTC (permalink / raw) To: Lucas De Marchi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 7129 bytes --] == Series Details == Series: lib/igt_kmod: Drop legacy kunit integration URL : https://patchwork.freedesktop.org/series/140746/ State : success == Summary == CI Bug Log - changes from IGT_8089 -> IGTPW_12011 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/index.html Participating hosts (46 -> 46) ------------------------------ Additional (1): fi-rkl-11600 Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12011 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - fi-rkl-11600: NOTRUN -> [SKIP][1] ([i915#9318]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/fi-rkl-11600/igt@debugfs_test@basic-hwmon.html * igt@gem_huc_copy@huc-copy: - fi-rkl-11600: NOTRUN -> [SKIP][2] ([i915#2190]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/fi-rkl-11600/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-rkl-11600: NOTRUN -> [SKIP][3] ([i915#4613]) +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/fi-rkl-11600/igt@gem_lmem_swapping@basic.html * igt@gem_tiled_pread_basic: - fi-rkl-11600: NOTRUN -> [SKIP][4] ([i915#3282]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/fi-rkl-11600/igt@gem_tiled_pread_basic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - fi-rkl-11600: NOTRUN -> [SKIP][5] ([i915#4103]) +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/fi-rkl-11600/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - fi-rkl-11600: NOTRUN -> [SKIP][6] ([i915#3555] / [i915#3840]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/fi-rkl-11600/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - fi-rkl-11600: NOTRUN -> [SKIP][7] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/fi-rkl-11600/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_pm_backlight@basic-brightness: - fi-rkl-11600: NOTRUN -> [SKIP][8] ([i915#5354]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/fi-rkl-11600/igt@kms_pm_backlight@basic-brightness.html * igt@kms_psr@psr-primary-page-flip: - fi-rkl-11600: NOTRUN -> [SKIP][9] ([i915#1072] / [i915#9732]) +3 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/fi-rkl-11600/igt@kms_psr@psr-primary-page-flip.html * igt@kms_setmode@basic-clone-single-crtc: - fi-rkl-11600: NOTRUN -> [SKIP][10] ([i915#3555]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/fi-rkl-11600/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-read: - fi-rkl-11600: NOTRUN -> [SKIP][11] ([i915#3291] / [i915#3708]) +2 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/fi-rkl-11600/igt@prime_vgem@basic-read.html #### Possible fixes #### * igt@i915_selftest@live: - bat-arls-1: [ABORT][12] ([i915#12133]) -> [PASS][13] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8089/bat-arls-1/igt@i915_selftest@live.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/bat-arls-1/igt@i915_selftest@live.html - bat-arlh-3: [INCOMPLETE][14] ([i915#10341] / [i915#12133]) -> [PASS][15] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8089/bat-arlh-3/igt@i915_selftest@live.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/bat-arlh-3/igt@i915_selftest@live.html - bat-adlp-11: [INCOMPLETE][16] ([i915#12133] / [i915#9413]) -> [PASS][17] [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8089/bat-adlp-11/igt@i915_selftest@live.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/bat-adlp-11/igt@i915_selftest@live.html * igt@i915_selftest@live@gt_lrc: - bat-adlp-11: [INCOMPLETE][18] ([i915#9413]) -> [PASS][19] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8089/bat-adlp-11/igt@i915_selftest@live@gt_lrc.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/bat-adlp-11/igt@i915_selftest@live@gt_lrc.html * igt@i915_selftest@live@hangcheck: - bat-arls-1: [ABORT][20] ([i915#9500]) -> [PASS][21] [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8089/bat-arls-1/igt@i915_selftest@live@hangcheck.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/bat-arls-1/igt@i915_selftest@live@hangcheck.html * igt@i915_selftest@live@hugepages: - bat-arlh-3: [INCOMPLETE][22] ([i915#12133]) -> [PASS][23] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8089/bat-arlh-3/igt@i915_selftest@live@hugepages.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/bat-arlh-3/igt@i915_selftest@live@hugepages.html * igt@kms_hdmi_inject@inject-audio: - fi-cfl-guc: [SKIP][24] -> [PASS][25] [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8089/fi-cfl-guc/igt@kms_hdmi_inject@inject-audio.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/fi-cfl-guc/igt@kms_hdmi_inject@inject-audio.html [i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413 [i915#9500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9500 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8089 -> IGTPW_12011 * Linux: CI_DRM_15614 -> CI_DRM_15615 CI-20190529: 20190529 CI_DRM_15614: afdb5631acb317eca18b171006efb3930fef7eb4 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15615: c245557007af0a1c23da00c47732ae1dadda7dd3 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12011: 12011 IGT_8089: 2339a396e8c38ba1582a6fc18fe4f7ed178979cc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/index.html [-- Attachment #2: Type: text/html, Size: 8525 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ CI.xeFULL: failure for lib/igt_kmod: Drop legacy kunit integration 2024-10-31 0:31 [PATCH i-g-t 0/2] lib/igt_kmod: Drop legacy kunit integration Lucas De Marchi ` (3 preceding siblings ...) 2024-10-31 2:45 ` ✓ Fi.CI.BAT: " Patchwork @ 2024-10-31 4:41 ` Patchwork 2024-10-31 13:16 ` ✗ Fi.CI.IGT: " Patchwork 5 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2024-10-31 4:41 UTC (permalink / raw) To: Lucas De Marchi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 60987 bytes --] == Series Details == Series: lib/igt_kmod: Drop legacy kunit integration URL : https://patchwork.freedesktop.org/series/140746/ State : failure == Summary == CI Bug Log - changes from XEIGT_8089_full -> XEIGTPW_12011_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12011_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12011_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_12011_full: ### IGT changes ### #### Possible regressions #### * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6.html * igt@kms_cursor_legacy@cursor-vs-flip-legacy: - shard-bmg: [PASS][2] -> [INCOMPLETE][3] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-2/igt@kms_cursor_legacy@cursor-vs-flip-legacy.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-4/igt@kms_cursor_legacy@cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [PASS][4] -> [DMESG-WARN][5] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@torture-move@pipe-c: - shard-dg2-set2: [PASS][6] -> [DMESG-WARN][7] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-432/igt@kms_cursor_legacy@torture-move@pipe-c.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-436/igt@kms_cursor_legacy@torture-move@pipe-c.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render: - shard-lnl: [PASS][8] -> [DMESG-WARN][9] [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html * igt@kms_pm_rpm@i2c: - shard-dg2-set2: [PASS][10] -> [FAIL][11] [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-464/igt@kms_pm_rpm@i2c.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-436/igt@kms_pm_rpm@i2c.html * igt@kms_psr@psr2-basic: - shard-lnl: [PASS][12] -> [FAIL][13] +3 other tests fail [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-lnl-2/igt@kms_psr@psr2-basic.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-lnl-5/igt@kms_psr@psr2-basic.html Known issues ------------ Here are the changes found in XEIGTPW_12011_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_addfb_basic@addfb25-bad-modifier: - shard-bmg: [PASS][14] -> [SKIP][15] ([Intel XE#3007]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-7/igt@kms_addfb_basic@addfb25-bad-modifier.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-7/igt@kms_addfb_basic@addfb25-bad-modifier.html - shard-dg2-set2: [PASS][16] -> [SKIP][17] ([Intel XE#2423] / [i915#2575]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-433/igt@kms_addfb_basic@addfb25-bad-modifier.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-435/igt@kms_addfb_basic@addfb25-bad-modifier.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#623]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-464/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_async_flips@alternate-sync-async-flip: - shard-bmg: [PASS][19] -> [FAIL][20] ([Intel XE#827]) +1 other test fail [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-5/igt@kms_async_flips@alternate-sync-async-flip.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-2/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_big_fb@4-tiled-64bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#316]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-435/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180: - shard-lnl: [PASS][22] -> [FAIL][23] ([Intel XE#1454]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-lnl-1/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-lnl-5/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@y-tiled-64bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#1124]) +4 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-434/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#610]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#1124]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#367]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-436/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2314] / [Intel XE#2894]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-8/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#2191]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-464/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#787]) +69 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-436/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-6.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#455] / [Intel XE#787]) +19 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-436/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2887]) +5 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-8/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][33] ([Intel XE#1195]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html * igt@kms_cdclk@mode-transition@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#314]) +3 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-464/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html * igt@kms_chamelium_color@ctm-negative: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2325]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-8/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k: - shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#373]) +11 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-464/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html * igt@kms_chamelium_frames@hdmi-aspect-ratio: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2252]) +2 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-7/igt@kms_chamelium_frames@hdmi-aspect-ratio.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#307]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-435/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#308]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-464/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2320]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-7/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_edge_walk@256x256-left-edge@pipe-a-edp-1: - shard-lnl: [PASS][41] -> [FAIL][42] ([Intel XE#2577]) +1 other test fail [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-lnl-5/igt@kms_cursor_edge_walk@256x256-left-edge@pipe-a-edp-1.html [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-lnl-3/igt@kms_cursor_edge_walk@256x256-left-edge@pipe-a-edp-1.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2286]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#323]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-435/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@torture-move: - shard-dg2-set2: [PASS][45] -> [DMESG-WARN][46] ([Intel XE#2932]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-432/igt@kms_cursor_legacy@torture-move.html [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-436/igt@kms_cursor_legacy@torture-move.html * igt@kms_feature_discovery@display-3x: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2373]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-8/igt@kms_feature_discovery@display-3x.html - shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#703]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-464/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@dp-mst: - shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#1137]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-463/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@bc-dp2-hdmi-a3: - shard-bmg: [PASS][50] -> [DMESG-WARN][51] ([Intel XE#877]) +1 other test dmesg-warn [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@bc-dp2-hdmi-a3.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@bc-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3: - shard-bmg: [PASS][52] -> [FAIL][53] ([Intel XE#301]) +3 other tests fail [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4: - shard-dg2-set2: [PASS][54] -> [FAIL][55] ([Intel XE#301]) +5 other tests fail [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a6-dp4: - shard-dg2-set2: [PASS][56] -> [FAIL][57] ([Intel XE#3267]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a6-dp4.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a6-dp4.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ab-dp2-hdmi-a3: - shard-bmg: [PASS][58] -> [FAIL][59] ([Intel XE#2882]) +1 other test fail [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-1/igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ab-dp2-hdmi-a3.html [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-4/igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ab-dp2-hdmi-a3.html * igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1: - shard-lnl: [PASS][60] -> [FAIL][61] ([Intel XE#886]) +5 other tests fail [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-lnl-2/igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-lnl-4/igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1.html * igt@kms_flip@plain-flip-ts-check: - shard-dg2-set2: [PASS][62] -> [INCOMPLETE][63] ([Intel XE#1195] / [Intel XE#2049]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-466/igt@kms_flip@plain-flip-ts-check.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-436/igt@kms_flip@plain-flip-ts-check.html * igt@kms_flip@plain-flip-ts-check@d-hdmi-a6: - shard-dg2-set2: [PASS][64] -> [INCOMPLETE][65] ([Intel XE#1195]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-466/igt@kms_flip@plain-flip-ts-check@d-hdmi-a6.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-436/igt@kms_flip@plain-flip-ts-check@d-hdmi-a6.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2293] / [Intel XE#2380]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2293]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2231] / [Intel XE#2890]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2-set2: NOTRUN -> [SKIP][69] ([i915#5274]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-464/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2311]) +7 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-rte: - shard-bmg: NOTRUN -> [FAIL][71] ([Intel XE#2333]) +3 other tests fail [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-rte.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte: - shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#651]) +29 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-dg2-set2: NOTRUN -> [SKIP][73] ([Intel XE#653]) +25 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2313]) +8 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_getfb@getfb2-accept-ccs: - shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#2340]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-8/igt@kms_getfb@getfb2-accept-ccs.html * igt@kms_hdr@invalid-hdr: - shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#455]) +7 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-434/igt@kms_hdr@invalid-hdr.html - shard-bmg: [PASS][77] -> [SKIP][78] ([Intel XE#1503]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-4/igt@kms_hdr@invalid-hdr.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-6/igt@kms_hdr@invalid-hdr.html * igt@kms_joiner@basic-big-joiner: - shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#346]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-7/igt@kms_joiner@basic-big-joiner.html - shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#346]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-463/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#2927]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-433/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#2925]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-434/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-dg2-set2: [PASS][83] -> [ABORT][84] ([Intel XE#1035] / [Intel XE#2625]) +1 other test abort [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-435/igt@kms_plane@plane-panning-bottom-right-suspend.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-432/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#2763]) +5 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-433/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html * igt@kms_pm_backlight@fade-with-dpms: - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#870]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-7/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#3309]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-432/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-psr: - shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#1129]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-464/igt@kms_pm_dc@dc6-psr.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#1489]) +5 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-433/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#1489]) +2 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-2/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr@fbc-psr-primary-render: - shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2234] / [Intel XE#2850]) +6 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-4/igt@kms_psr@fbc-psr-primary-render.html * igt@kms_psr@fbc-psr2-cursor-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#2850] / [Intel XE#929]) +9 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-464/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html * igt@kms_psr@psr2-cursor-blt@edp-1: - shard-lnl: [PASS][94] -> [FAIL][95] ([Intel XE#2948]) +1 other test fail [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-lnl-4/igt@kms_psr@psr2-cursor-blt@edp-1.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-lnl-6/igt@kms_psr@psr2-cursor-blt@edp-1.html * igt@kms_rotation_crc@primary-rotation-180: - shard-bmg: [PASS][96] -> [INCOMPLETE][97] ([Intel XE#2870]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-8/igt@kms_rotation_crc@primary-rotation-180.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-4/igt@kms_rotation_crc@primary-rotation-180.html * igt@kms_rotation_crc@primary-rotation-270: - shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2329]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-2/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_setmode@basic@pipe-a-edp-1: - shard-lnl: [PASS][99] -> [FAIL][100] ([Intel XE#2947]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-lnl-1/igt@kms_setmode@basic@pipe-a-edp-1.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-lnl-3/igt@kms_setmode@basic@pipe-a-edp-1.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-lnl: [PASS][101] -> [FAIL][102] ([Intel XE#2883]) +1 other test fail [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-lnl-1/igt@kms_setmode@basic@pipe-b-edp-1.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-lnl-3/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#756]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-466/igt@kms_writeback@writeback-pixel-formats.html * igt@xe_compute_preempt@compute-preempt: - shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-434/igt@xe_compute_preempt@compute-preempt.html * igt@xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#1126]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0xfd.html * igt@xe_eudebug_online@breakpoint-many-sessions-tiles: - shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2905]) +3 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-5/igt@xe_eudebug_online@breakpoint-many-sessions-tiles.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: [PASS][107] -> [TIMEOUT][108] ([Intel XE#1473] / [Intel XE#402]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-436/igt@xe_evict@evict-beng-mixed-many-threads-small.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-463/igt@xe_evict@evict-beng-mixed-many-threads-small.html - shard-bmg: [PASS][109] -> [TIMEOUT][110] ([Intel XE#1473]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-1/igt@xe_evict@evict-beng-mixed-many-threads-small.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-7/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_exec_basic@many-userptr-invalidate-race: - shard-dg2-set2: [PASS][111] -> [SKIP][112] ([Intel XE#1130]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-432/igt@xe_exec_basic@many-userptr-invalidate-race.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-435/igt@xe_exec_basic@many-userptr-invalidate-race.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-rebind: - shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#2322]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-rebind.html * igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-invalidate: - shard-bmg: [PASS][114] -> [SKIP][115] ([Intel XE#1130]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-8/igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-invalidate.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-7/igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-invalidate.html * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race: - shard-lnl: [PASS][116] -> [FAIL][117] ([Intel XE#3160]) +4 other tests fail [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-lnl-2/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-lnl-5/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race.html * igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race: - shard-bmg: [PASS][118] -> [FAIL][119] ([Intel XE#3160]) +2 other tests fail [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-1/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-8/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race.html * igt@xe_exec_fault_mode@twice-userptr-invalidate-race: - shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#288]) +24 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-433/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html * igt@xe_exec_mix_modes@exec-simple-batch-store-lr: - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#2360]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-464/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html * igt@xe_exec_sip_eudebug@breakpoint-writesip: - shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#2905]) +7 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-466/igt@xe_exec_sip_eudebug@breakpoint-writesip.html * igt@xe_gt_freq@freq_reset_multiple: - shard-lnl: [PASS][123] -> [DMESG-WARN][124] ([Intel XE#3184]) +2 other tests dmesg-warn [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-lnl-7/igt@xe_gt_freq@freq_reset_multiple.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-lnl-3/igt@xe_gt_freq@freq_reset_multiple.html * igt@xe_live_ktest@xe_bo: - shard-dg2-set2: NOTRUN -> [TIMEOUT][125] ([Intel XE#2961] / [Intel XE#3191]) +1 other test timeout [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-435/igt@xe_live_ktest@xe_bo.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#2229]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-432/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html * igt@xe_oa@mmio-triggered-reports: - shard-bmg: [PASS][127] -> [FAIL][128] ([Intel XE#2249]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-7/igt@xe_oa@mmio-triggered-reports.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-2/igt@xe_oa@mmio-triggered-reports.html * igt@xe_oa@mmio-triggered-reports@rcs-0: - shard-bmg: NOTRUN -> [FAIL][129] ([Intel XE#2249]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-2/igt@xe_oa@mmio-triggered-reports@rcs-0.html * igt@xe_oa@oa-formats: - shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#2541]) +2 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-432/igt@xe_oa@oa-formats.html * igt@xe_pat@pat-index-xe2: - shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#2839] / [Intel XE#977]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-435/igt@xe_pat@pat-index-xe2.html * igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][132] ([Intel XE#1173]) +1 other test fail [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-433/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html * igt@xe_pm@d3hot-multiple-execs: - shard-lnl: [PASS][133] -> [DMESG-WARN][134] ([Intel XE#2932]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-lnl-7/igt@xe_pm@d3hot-multiple-execs.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-lnl-4/igt@xe_pm@d3hot-multiple-execs.html * igt@xe_pm@s3-multiple-execs: - shard-dg2-set2: NOTRUN -> [ABORT][135] ([Intel XE#1358] / [Intel XE#1794]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-432/igt@xe_pm@s3-multiple-execs.html * igt@xe_pm@s3-vm-bind-unbind-all: - shard-dg2-set2: [PASS][136] -> [ABORT][137] ([Intel XE#1794]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-436/igt@xe_pm@s3-vm-bind-unbind-all.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-432/igt@xe_pm@s3-vm-bind-unbind-all.html * igt@xe_pm@s4-vm-bind-prefetch: - shard-lnl: [PASS][138] -> [ABORT][139] ([Intel XE#1607] / [Intel XE#1794]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-lnl-5/igt@xe_pm@s4-vm-bind-prefetch.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-lnl-2/igt@xe_pm@s4-vm-bind-prefetch.html * igt@xe_pm@vram-d3cold-threshold: - shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#579]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-4/igt@xe_pm@vram-d3cold-threshold.html * igt@xe_pm_residency@toggle-gt-c6: - shard-lnl: [PASS][141] -> [FAIL][142] ([Intel XE#958]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-lnl-6/igt@xe_pm_residency@toggle-gt-c6.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-lnl-8/igt@xe_pm_residency@toggle-gt-c6.html * igt@xe_query@multigpu-query-topology-l3-bank-mask: - shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#944]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-6/igt@xe_query@multigpu-query-topology-l3-bank-mask.html * igt@xe_query@multigpu-query-uc-fw-version-guc: - shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#944]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-466/igt@xe_query@multigpu-query-uc-fw-version-guc.html #### Possible fixes #### * igt@kms_big_fb@linear-16bpp-rotate-180: - shard-lnl: [FAIL][145] ([Intel XE#1454]) -> [PASS][146] [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-lnl-3/igt@kms_big_fb@linear-16bpp-rotate-180.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-lnl-4/igt@kms_big_fb@linear-16bpp-rotate-180.html * igt@kms_big_fb@x-tiled-8bpp-rotate-0: - shard-bmg: [INCOMPLETE][147] -> [PASS][148] [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-4/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-2/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-bmg: [SKIP][149] ([Intel XE#2231] / [Intel XE#2890]) -> [PASS][150] [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html - shard-dg2-set2: [SKIP][151] ([Intel XE#2890]) -> [PASS][152] [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-432/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-436/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6: - shard-dg2-set2: [INCOMPLETE][153] ([Intel XE#1195] / [Intel XE#3113]) -> [PASS][154] [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [INCOMPLETE][155] ([Intel XE#1195] / [Intel XE#1727]) -> [PASS][156] [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6: - shard-dg2-set2: [INCOMPLETE][157] ([Intel XE#1195]) -> [PASS][158] [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6.html * igt@kms_cursor_edge_walk@256x256-right-edge: - shard-lnl: [FAIL][159] ([Intel XE#2577]) -> [PASS][160] +3 other tests pass [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-lnl-6/igt@kms_cursor_edge_walk@256x256-right-edge.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-lnl-8/igt@kms_cursor_edge_walk@256x256-right-edge.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3: - shard-bmg: [FAIL][161] ([Intel XE#301]) -> [PASS][162] +5 other tests pass [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4: - shard-dg2-set2: [FAIL][163] ([Intel XE#301]) -> [PASS][164] [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-464/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-bmg: [FAIL][165] ([Intel XE#2882]) -> [PASS][166] +4 other tests pass [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-2/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-5/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@modeset-vs-vblank-race: - shard-bmg: [SKIP][167] ([Intel XE#3007]) -> [PASS][168] [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-8/igt@kms_flip@modeset-vs-vblank-race.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-2/igt@kms_flip@modeset-vs-vblank-race.html - shard-dg2-set2: [SKIP][169] ([Intel XE#2423] / [i915#2575]) -> [PASS][170] [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-432/igt@kms_flip@modeset-vs-vblank-race.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-432/igt@kms_flip@modeset-vs-vblank-race.html * igt@kms_flip@wf_vblank-ts-check@b-edp1: - shard-lnl: [FAIL][171] ([Intel XE#886]) -> [PASS][172] +4 other tests pass [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-lnl-2/igt@kms_flip@wf_vblank-ts-check@b-edp1.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-lnl-6/igt@kms_flip@wf_vblank-ts-check@b-edp1.html * igt@kms_hdr@bpc-switch-suspend: - shard-dg2-set2: [ABORT][173] ([Intel XE#2625]) -> [PASS][174] +1 other test pass [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-432/igt@kms_hdr@bpc-switch-suspend.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-463/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][175] ([Intel XE#718]) -> [PASS][176] [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-lnl-7/igt@kms_pm_dc@dc5-dpms.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html * igt@kms_pm_rpm@legacy-planes-dpms@plane-59: - shard-lnl: [DMESG-WARN][177] ([Intel XE#3184]) -> [PASS][178] +1 other test pass [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-lnl-2/igt@kms_pm_rpm@legacy-planes-dpms@plane-59.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-lnl-8/igt@kms_pm_rpm@legacy-planes-dpms@plane-59.html * igt@kms_psr@fbc-psr2-primary-render: - shard-lnl: [FAIL][179] -> [PASS][180] +2 other tests pass [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-lnl-6/igt@kms_psr@fbc-psr2-primary-render.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-lnl-6/igt@kms_psr@fbc-psr2-primary-render.html * igt@kms_universal_plane@cursor-fb-leak: - shard-lnl: [FAIL][181] ([Intel XE#899]) -> [PASS][182] +2 other tests pass [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-lnl-1/igt@kms_universal_plane@cursor-fb-leak.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-lnl-3/igt@kms_universal_plane@cursor-fb-leak.html * igt@kms_vrr@flip-basic-fastset: - shard-lnl: [FAIL][183] ([Intel XE#2443]) -> [PASS][184] +1 other test pass [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-lnl-1/igt@kms_vrr@flip-basic-fastset.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-lnl-6/igt@kms_vrr@flip-basic-fastset.html * igt@xe_evict@evict-large-multi-vm: - shard-dg2-set2: [INCOMPLETE][185] ([Intel XE#1195] / [Intel XE#1473]) -> [PASS][186] [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-466/igt@xe_evict@evict-large-multi-vm.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-464/igt@xe_evict@evict-large-multi-vm.html * igt@xe_exec_compute_mode@many-execqueues-userptr-invalidate: - shard-bmg: [SKIP][187] ([Intel XE#1130]) -> [PASS][188] +1 other test pass [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-8/igt@xe_exec_compute_mode@many-execqueues-userptr-invalidate.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-2/igt@xe_exec_compute_mode@many-execqueues-userptr-invalidate.html * igt@xe_exec_compute_mode@once-bindexecqueue-userptr-invalidate-race: - shard-lnl: [FAIL][189] ([Intel XE#2754]) -> [PASS][190] [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-lnl-3/igt@xe_exec_compute_mode@once-bindexecqueue-userptr-invalidate-race.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-lnl-8/igt@xe_exec_compute_mode@once-bindexecqueue-userptr-invalidate-race.html * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-prefetch: - shard-lnl: [FAIL][191] ([Intel XE#3160]) -> [PASS][192] [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-lnl-1/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-prefetch.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-lnl-3/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-prefetch.html * igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm: - shard-bmg: [FAIL][193] -> [PASS][194] [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-1/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-5/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm.html * igt@xe_exec_fault_mode@many-userptr-invalidate-race: - shard-bmg: [FAIL][195] ([Intel XE#3160]) -> [PASS][196] +1 other test pass [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-7/igt@xe_exec_fault_mode@many-userptr-invalidate-race.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-4/igt@xe_exec_fault_mode@many-userptr-invalidate-race.html * igt@xe_module_load@reload: - shard-bmg: [FAIL][197] ([Intel XE#2136]) -> [PASS][198] [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-4/igt@xe_module_load@reload.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-2/igt@xe_module_load@reload.html * igt@xe_pm@s2idle-basic: - shard-dg2-set2: [ABORT][199] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][200] [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-432/igt@xe_pm@s2idle-basic.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-435/igt@xe_pm@s2idle-basic.html * igt@xe_pm@s3-vm-bind-prefetch: - shard-dg2-set2: [ABORT][201] ([Intel XE#1794]) -> [PASS][202] [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-432/igt@xe_pm@s3-vm-bind-prefetch.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-433/igt@xe_pm@s3-vm-bind-prefetch.html * igt@xe_pm_residency@idle-residency-on-exec: - shard-dg2-set2: [SKIP][203] ([Intel XE#1130]) -> [PASS][204] [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-432/igt@xe_pm_residency@idle-residency-on-exec.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-433/igt@xe_pm_residency@idle-residency-on-exec.html #### Warnings #### * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-bmg: [SKIP][205] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][206] ([Intel XE#2327]) [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-8/igt@kms_big_fb@linear-64bpp-rotate-90.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-4/igt@kms_big_fb@linear-64bpp-rotate-90.html - shard-dg2-set2: [SKIP][207] ([Intel XE#2890]) -> [SKIP][208] ([Intel XE#316]) [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-432/igt@kms_big_fb@linear-64bpp-rotate-90.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-432/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc: - shard-dg2-set2: [SKIP][209] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][210] ([Intel XE#2351] / [Intel XE#2890]) [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-432/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-435/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html - shard-bmg: [SKIP][211] ([Intel XE#2887]) -> [SKIP][212] ([Intel XE#2231] / [Intel XE#2890]) [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-dg2-set2: [SKIP][213] ([Intel XE#2423] / [i915#2575]) -> [SKIP][214] ([Intel XE#373]) [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-432/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-464/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html - shard-bmg: [SKIP][215] ([Intel XE#3007]) -> [SKIP][216] ([Intel XE#2252]) [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-8/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-7/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling: - shard-dg2-set2: [SKIP][217] ([Intel XE#455]) -> [SKIP][218] ([Intel XE#2890]) [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-435/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][219] ([Intel XE#2890]) -> [SKIP][220] ([Intel XE#653]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render: - shard-bmg: [SKIP][221] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][222] ([Intel XE#2313]) +1 other test skip [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt: - shard-dg2-set2: [SKIP][223] ([Intel XE#653]) -> [SKIP][224] ([Intel XE#2890]) [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5: - shard-bmg: [SKIP][225] ([Intel XE#2763]) -> [SKIP][226] ([Intel XE#3007]) [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-bmg: [SKIP][227] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][228] ([Intel XE#1489]) [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-8/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-2/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr@fbc-pr-sprite-plane-move: - shard-dg2-set2: [SKIP][229] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][230] ([Intel XE#2890]) [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-464/igt@kms_psr@fbc-pr-sprite-plane-move.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-435/igt@kms_psr@fbc-pr-sprite-plane-move.html - shard-bmg: [SKIP][231] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][232] ([Intel XE#2231] / [Intel XE#2890]) [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-7/igt@kms_psr@fbc-pr-sprite-plane-move.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-7/igt@kms_psr@fbc-pr-sprite-plane-move.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: [FAIL][233] ([Intel XE#1729]) -> [SKIP][234] ([Intel XE#2426]) [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vrr@flipline: - shard-lnl: [FAIL][235] ([Intel XE#2443]) -> [FAIL][236] ([Intel XE#1522]) +1 other test fail [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-lnl-8/igt@kms_vrr@flipline.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-lnl-6/igt@kms_vrr@flipline.html * igt@xe_evict@evict-beng-mixed-many-threads-large: - shard-dg2-set2: [TIMEOUT][237] ([Intel XE#1473]) -> [FAIL][238] ([Intel XE#1000]) [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-dg2-464/igt@xe_evict@evict-beng-mixed-many-threads-large.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-dg2-434/igt@xe_evict@evict-beng-mixed-many-threads-large.html * igt@xe_evict@evict-beng-threads-large: - shard-bmg: [FAIL][239] ([Intel XE#1000]) -> [TIMEOUT][240] ([Intel XE#1473]) [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-5/igt@xe_evict@evict-beng-threads-large.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-5/igt@xe_evict@evict-beng-threads-large.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: [TIMEOUT][241] ([Intel XE#1473]) -> [TIMEOUT][242] ([Intel XE#1473] / [Intel XE#2472]) [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8089/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-small.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-small.html [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035 [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#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137 [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1454]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1454 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2329 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443 [Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2577]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2577 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2754]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2754 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2839]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2839 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2870 [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#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2890]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#2932]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2932 [Intel XE#2947]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2947 [Intel XE#2948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2948 [Intel XE#2961]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2961 [Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3160]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3160 [Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184 [Intel XE#3191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3191 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3267]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3267 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703 [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#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#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 Build changes ------------- * IGT: IGT_8089 -> IGTPW_12011 * Linux: xe-2146-afdb5631acb317eca18b171006efb3930fef7eb4 -> xe-2147-c245557007af0a1c23da00c47732ae1dadda7dd3 IGTPW_12011: 12011 IGT_8089: 2339a396e8c38ba1582a6fc18fe4f7ed178979cc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2146-afdb5631acb317eca18b171006efb3930fef7eb4: afdb5631acb317eca18b171006efb3930fef7eb4 xe-2147-c245557007af0a1c23da00c47732ae1dadda7dd3: c245557007af0a1c23da00c47732ae1dadda7dd3 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12011/index.html [-- Attachment #2: Type: text/html, Size: 70918 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ Fi.CI.IGT: failure for lib/igt_kmod: Drop legacy kunit integration 2024-10-31 0:31 [PATCH i-g-t 0/2] lib/igt_kmod: Drop legacy kunit integration Lucas De Marchi ` (4 preceding siblings ...) 2024-10-31 4:41 ` ✗ CI.xeFULL: failure " Patchwork @ 2024-10-31 13:16 ` Patchwork 5 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2024-10-31 13:16 UTC (permalink / raw) To: Lucas De Marchi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100263 bytes --] == Series Details == Series: lib/igt_kmod: Drop legacy kunit integration URL : https://patchwork.freedesktop.org/series/140746/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15615_full -> IGTPW_12011_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12011_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12011_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_12011/index.html Participating hosts (10 -> 9) ------------------------------ Missing (1): shard-glk Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12011_full: ### IGT changes ### #### Possible regressions #### * igt@kms_fbcon_fbt@fbc-suspend: - shard-tglu: NOTRUN -> [ABORT][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-3/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@plain-flip-ts-check@b-edp1: - shard-mtlp: [PASS][2] -> [FAIL][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-mtlp-2/igt@kms_flip@plain-flip-ts-check@b-edp1.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-7/igt@kms_flip@plain-flip-ts-check@b-edp1.html * igt@kms_hdr@brightness-with-hdr: - shard-dg2: NOTRUN -> [SKIP][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-4/igt@kms_hdr@brightness-with-hdr.html - shard-tglu: NOTRUN -> [SKIP][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-3/igt@kms_hdr@brightness-with-hdr.html * igt@kms_plane_cursor@overlay: - shard-dg1: [PASS][6] -> [INCOMPLETE][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg1-19/igt@kms_plane_cursor@overlay.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-18/igt@kms_plane_cursor@overlay.html Known issues ------------ Here are the changes found in IGTPW_12011_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][8] ([i915#8411]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-4/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@object-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][9] ([i915#8411]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-3/igt@api_intel_bb@object-reloc-keep-cache.html * igt@device_reset@cold-reset-bound: - shard-dg1: NOTRUN -> [SKIP][10] ([i915#11078]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-19/igt@device_reset@cold-reset-bound.html - shard-tglu: NOTRUN -> [SKIP][11] ([i915#11078]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-8/igt@device_reset@cold-reset-bound.html - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#11078]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-2/igt@device_reset@cold-reset-bound.html - shard-dg2: NOTRUN -> [SKIP][13] ([i915#11078]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-10/igt@device_reset@cold-reset-bound.html - shard-rkl: NOTRUN -> [SKIP][14] ([i915#11078]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-7/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@busy-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][15] ([i915#8414]) +16 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-11/igt@drm_fdinfo@busy-check-all@vecs1.html * igt@drm_fdinfo@busy-idle-check-all@vcs1: - shard-dg1: NOTRUN -> [SKIP][16] ([i915#8414]) +5 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-12/igt@drm_fdinfo@busy-idle-check-all@vcs1.html * igt@fbdev@pan: - shard-dg2: [PASS][17] -> [SKIP][18] ([i915#2582]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-10/igt@fbdev@pan.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-2/igt@fbdev@pan.html * igt@gem_basic@multigpu-create-close: - shard-rkl: NOTRUN -> [SKIP][19] ([i915#7697]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-7/igt@gem_basic@multigpu-create-close.html - shard-tglu: NOTRUN -> [SKIP][20] ([i915#7697]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-7/igt@gem_basic@multigpu-create-close.html * igt@gem_busy@close-race: - shard-dg1: NOTRUN -> [FAIL][21] ([i915#12297] / [i915#12577]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-13/igt@gem_busy@close-race.html * igt@gem_ccs@block-copy-compressed: - shard-tglu-1: NOTRUN -> [SKIP][22] ([i915#3555] / [i915#9323]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-1/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][23] ([i915#3555] / [i915#9323]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-2/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: NOTRUN -> [SKIP][24] ([i915#9323]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-1/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#7697]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-8/igt@gem_close_race@multigpu-basic-threads.html - shard-mtlp: NOTRUN -> [SKIP][26] ([i915#7697]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-7/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-set-pat: - shard-rkl: NOTRUN -> [SKIP][27] ([i915#8562]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-5/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_engines@invalid-engines: - shard-tglu: NOTRUN -> [FAIL][28] ([i915#12031]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-7/igt@gem_ctx_engines@invalid-engines.html * igt@gem_ctx_sseu@engines: - shard-tglu: NOTRUN -> [SKIP][29] ([i915#280]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-2/igt@gem_ctx_sseu@engines.html - shard-mtlp: NOTRUN -> [SKIP][30] ([i915#280]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-6/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#280]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-2/igt@gem_ctx_sseu@mmap-args.html - shard-tglu-1: NOTRUN -> [SKIP][32] ([i915#280]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-1/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@hibernate: - shard-dg1: [PASS][33] -> [ABORT][34] ([i915#7975] / [i915#8213]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg1-17/igt@gem_eio@hibernate.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-14/igt@gem_eio@hibernate.html - shard-rkl: NOTRUN -> [ABORT][35] ([i915#7975] / [i915#8213]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-4/igt@gem_eio@hibernate.html * igt@gem_eio@unwedge-stress: - shard-snb: NOTRUN -> [FAIL][36] ([i915#8898]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-snb6/igt@gem_eio@unwedge-stress.html - shard-dg1: NOTRUN -> [FAIL][37] ([i915#5784]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-13/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-dual: - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4771]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-1/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#4771]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-2/igt@gem_exec_balancer@bonded-sync.html - shard-dg1: NOTRUN -> [SKIP][40] ([i915#4771]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-13/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#4812]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-7/igt@gem_exec_balancer@bonded-true-hang.html - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4812]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-5/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_balancer@noheartbeat: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#8555]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-6/igt@gem_exec_balancer@noheartbeat.html * igt@gem_exec_balancer@parallel: - shard-rkl: NOTRUN -> [SKIP][44] ([i915#4525]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-1/igt@gem_exec_balancer@parallel.html * igt@gem_exec_fair@basic-none-vip: - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4473] / [i915#4771]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-4/igt@gem_exec_fair@basic-none-vip.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: [PASS][46] -> [FAIL][47] ([i915#2842]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-rkl-4/igt@gem_exec_fair@basic-none@bcs0.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-7/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_fair@basic-none@rcs0: - shard-tglu: NOTRUN -> [FAIL][48] ([i915#2842]) +5 other tests fail [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-7/igt@gem_exec_fair@basic-none@rcs0.html * igt@gem_exec_fair@basic-pace: - shard-rkl: NOTRUN -> [FAIL][49] ([i915#2842]) +3 other tests fail [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-2/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-pace-share: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#3539] / [i915#4852]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-11/igt@gem_exec_fair@basic-pace-share.html - shard-dg1: NOTRUN -> [SKIP][51] ([i915#3539] / [i915#4852]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-16/igt@gem_exec_fair@basic-pace-share.html * igt@gem_exec_reloc@basic-concurrent16: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#3281]) +4 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-3/igt@gem_exec_reloc@basic-concurrent16.html * igt@gem_exec_reloc@basic-gtt-cpu: - shard-rkl: NOTRUN -> [SKIP][53] ([i915#3281]) +7 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-1/igt@gem_exec_reloc@basic-gtt-cpu.html * igt@gem_exec_reloc@basic-write-read-active: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#3281]) +6 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-6/igt@gem_exec_reloc@basic-write-read-active.html - shard-dg1: NOTRUN -> [SKIP][55] ([i915#3281]) +4 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-17/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_schedule@pi-common@vcs0: - shard-rkl: NOTRUN -> [FAIL][56] ([i915#12296]) +4 other tests fail [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-1/igt@gem_exec_schedule@pi-common@vcs0.html * igt@gem_exec_schedule@pi-ringfull@vecs0: - shard-tglu-1: NOTRUN -> [FAIL][57] ([i915#12296]) +5 other tests fail [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-1/igt@gem_exec_schedule@pi-ringfull@vecs0.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4537] / [i915#4812]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-5/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_schedule@semaphore-power: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#4812]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-18/igt@gem_exec_schedule@semaphore-power.html - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4537] / [i915#4812]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-1/igt@gem_exec_schedule@semaphore-power.html * igt@gem_fence_thrash@bo-write-verify-none: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4860]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-1/igt@gem_fence_thrash@bo-write-verify-none.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#4860]) +2 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-7/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_fenced_exec_thrash@too-many-fences: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#4860]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-18/igt@gem_fenced_exec_thrash@too-many-fences.html * igt@gem_huc_copy@huc-copy: - shard-tglu-1: NOTRUN -> [SKIP][64] ([i915#2190]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-1/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@heavy-multi: - shard-tglu-1: NOTRUN -> [SKIP][65] ([i915#4613]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-1/igt@gem_lmem_swapping@heavy-multi.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-tglu: NOTRUN -> [SKIP][66] ([i915#4613]) +4 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-8/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4613]) +3 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-2/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html - shard-dg1: NOTRUN -> [SKIP][68] ([i915#12193]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-19/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#4565]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-19/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][70] ([i915#4613]) +6 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-5/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_media_vme: - shard-rkl: NOTRUN -> [SKIP][71] ([i915#284]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-1/igt@gem_media_vme.html * igt@gem_mmap@short-mmap: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#4083]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-10/igt@gem_mmap@short-mmap.html - shard-dg1: NOTRUN -> [SKIP][73] ([i915#4083]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-19/igt@gem_mmap@short-mmap.html * igt@gem_mmap_gtt@cpuset-basic-small-copy-xy: - shard-dg1: NOTRUN -> [SKIP][74] ([i915#4077]) +6 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-15/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html * igt@gem_mmap_gtt@fault-concurrent-y: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#4077]) +3 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-8/igt@gem_mmap_gtt@fault-concurrent-y.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#3282]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-8/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_pread@exhaustion: - shard-dg1: NOTRUN -> [SKIP][77] ([i915#3282]) +4 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-15/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-tglu: NOTRUN -> [WARN][78] ([i915#2658]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-2/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pwrite@basic-self: - shard-rkl: NOTRUN -> [SKIP][79] ([i915#3282]) +7 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-7/igt@gem_pwrite@basic-self.html * igt@gem_pxp@create-regular-context-2: - shard-tglu: NOTRUN -> [SKIP][80] ([i915#4270]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-7/igt@gem_pxp@create-regular-context-2.html * igt@gem_pxp@fail-invalid-protected-context: - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#4270]) +2 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-4/igt@gem_pxp@fail-invalid-protected-context.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-rkl: NOTRUN -> [SKIP][82] ([i915#4270]) +3 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-3/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html - shard-dg1: NOTRUN -> [SKIP][83] ([i915#4270]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-15/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#4270]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-8/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_readwrite@write-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][85] ([i915#3282]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-4/igt@gem_readwrite@write-bad-handle.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#8428]) +3 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-8/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_render_copy@yf-tiled-to-vebox-x-tiled: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#5190] / [i915#8428]) +5 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-4/igt@gem_render_copy@yf-tiled-to-vebox-x-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#4079]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_unfence_active_buffers: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#4879]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-2/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#3297]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-8/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-rkl: NOTRUN -> [SKIP][91] ([i915#3297]) +3 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-1/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@forbidden-operations: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#3282] / [i915#3297]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-11/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#3297] / [i915#4880]) +2 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-mtlp: NOTRUN -> [SKIP][94] ([i915#3297]) +3 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-4/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg1: NOTRUN -> [SKIP][95] ([i915#3297] / [i915#4880]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-19/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#3297] / [i915#4958]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-10/igt@gem_userptr_blits@sd-probe.html - shard-dg1: NOTRUN -> [SKIP][97] ([i915#3297] / [i915#4958]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-14/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-tglu: NOTRUN -> [SKIP][98] ([i915#3297]) +3 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-8/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gen3_render_tiledy_blits: - shard-mtlp: NOTRUN -> [SKIP][99] +15 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-1/igt@gen3_render_tiledy_blits.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-tglu: NOTRUN -> [SKIP][100] ([i915#2527] / [i915#2856]) +2 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-4/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@batch-without-end: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#2856]) +2 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-2/igt@gen9_exec_parse@batch-without-end.html - shard-dg1: NOTRUN -> [SKIP][102] ([i915#2527]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-13/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@bb-oversize: - shard-tglu-1: NOTRUN -> [SKIP][103] ([i915#2527] / [i915#2856]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-1/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@shadow-peek: - shard-rkl: NOTRUN -> [SKIP][104] ([i915#2527]) +6 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-5/igt@gen9_exec_parse@shadow-peek.html * igt@i915_fb_tiling: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#4881]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-5/igt@i915_fb_tiling.html * igt@i915_module_load@load: - shard-tglu: NOTRUN -> [SKIP][106] ([i915#6227]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-6/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-snb: [PASS][107] -> [ABORT][108] ([i915#9820]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-snb4/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: NOTRUN -> [ABORT][109] ([i915#9820]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-basic-api: - shard-tglu: NOTRUN -> [SKIP][110] ([i915#8399]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-6/igt@i915_pm_freq_api@freq-basic-api.html - shard-rkl: NOTRUN -> [SKIP][111] ([i915#8399]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-7/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-tglu-1: NOTRUN -> [SKIP][112] ([i915#8399]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-1/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu-1: NOTRUN -> [WARN][113] ([i915#2681]) +1 other test warn [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rps@basic-api: - shard-mtlp: NOTRUN -> [SKIP][114] ([i915#11681] / [i915#6621]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-5/igt@i915_pm_rps@basic-api.html * igt@i915_power@sanity: - shard-mtlp: [PASS][115] -> [SKIP][116] ([i915#7984]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-mtlp-3/igt@i915_power@sanity.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-1/igt@i915_power@sanity.html * igt@i915_query@hwconfig_table: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#6245]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-2/igt@i915_query@hwconfig_table.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#6188]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-10/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#5723]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-7/igt@i915_query@test-query-geometry-subslices.html * igt@intel_hwmon@hwmon-write: - shard-tglu: NOTRUN -> [SKIP][120] ([i915#7707]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-5/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - shard-mtlp: NOTRUN -> [SKIP][121] ([i915#4212]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-5/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#4212]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-5/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#4212] / [i915#5190]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-5/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglu-1: NOTRUN -> [SKIP][124] ([i915#12454]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#8709]) +3 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][126] ([i915#8709]) +7 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-17/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#6228]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-3/igt@kms_async_flips@invalid-async-flip.html - shard-mtlp: NOTRUN -> [SKIP][128] ([i915#6228]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-1/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#9531]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#1769] / [i915#3555]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-270: - shard-tglu-1: NOTRUN -> [SKIP][131] ([i915#5286]) +2 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-1/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html * igt@kms_big_fb@4-tiled-64bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][132] ([i915#5286]) +4 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-8/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][133] ([i915#5286]) +6 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html - shard-dg1: NOTRUN -> [SKIP][134] ([i915#4538] / [i915#5286]) +3 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-19/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-16bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][135] ([i915#3638]) +2 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-13/igt@kms_big_fb@linear-16bpp-rotate-270.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#3638]) +2 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-1/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][137] +14 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-6/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#5190]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-11/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#4538] / [i915#5190]) +8 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-3/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][140] ([i915#4538]) +3 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][141] ([i915#6095]) +39 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-1/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#12313]) +3 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-5/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html - shard-rkl: NOTRUN -> [SKIP][143] ([i915#12313]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html - shard-dg1: NOTRUN -> [SKIP][144] ([i915#12313]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-19/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][145] ([i915#6095]) +75 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-1/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-3: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#10307] / [i915#6095]) +190 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-10/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-3.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#6095]) +24 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-8/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-edp-1.html * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][148] ([i915#6095]) +44 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-8/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][149] ([i915#6095]) +125 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-17/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_cdclk@mode-transition: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#3742]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-2/igt@kms_cdclk@mode-transition.html * igt@kms_chamelium_audio@dp-audio: - shard-tglu: NOTRUN -> [SKIP][152] ([i915#7828]) +6 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-5/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_audio@dp-audio-edid: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#7828]) +9 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-3/igt@kms_chamelium_audio@dp-audio-edid.html * igt@kms_chamelium_hpd@dp-hpd-storm-disable: - shard-tglu-1: NOTRUN -> [SKIP][154] ([i915#7828]) +3 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html - shard-dg1: NOTRUN -> [SKIP][155] ([i915#7828]) +5 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-14/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html * igt@kms_chamelium_hpd@hdmi-hpd-storm: - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#7828]) +6 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-3/igt@kms_chamelium_hpd@hdmi-hpd-storm.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-rkl: NOTRUN -> [SKIP][157] ([i915#7828]) +12 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-7/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_content_protection@dp-mst-type-1: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#3116]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-2/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-0: - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#6944] / [i915#9424]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-7/igt@kms_content_protection@lic-type-0.html - shard-dg2: NOTRUN -> [SKIP][160] ([i915#9424]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-8/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [TIMEOUT][161] ([i915#7173]) +1 other test timeout [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-10/igt@kms_content_protection@srm.html * igt@kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#7118] / [i915#9424]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-1/igt@kms_content_protection@type1.html - shard-rkl: NOTRUN -> [SKIP][163] ([i915#7118] / [i915#9424]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-1/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-32x10: - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#3555] / [i915#8814]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-3/igt@kms_cursor_crc@cursor-offscreen-32x10.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-tglu: NOTRUN -> [SKIP][165] ([i915#3555]) +5 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-7/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-tglu-1: NOTRUN -> [SKIP][166] ([i915#11453] / [i915#3359]) +2 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-dg1: NOTRUN -> [SKIP][167] ([i915#3555]) +2 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-15/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#11453] / [i915#3359]) +3 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-8/igt@kms_cursor_crc@cursor-random-512x170.html - shard-rkl: NOTRUN -> [SKIP][169] ([i915#11453] / [i915#3359]) +2 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-1/igt@kms_cursor_crc@cursor-random-512x170.html - shard-dg1: NOTRUN -> [SKIP][170] ([i915#11453] / [i915#3359]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-13/igt@kms_cursor_crc@cursor-random-512x170.html - shard-tglu: NOTRUN -> [SKIP][171] ([i915#11453] / [i915#3359]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-2/igt@kms_cursor_crc@cursor-random-512x170.html - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#11453] / [i915#3359]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-7/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-64x21: - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#8814]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-4/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#3555]) +6 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-1/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#4213]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-tglu: NOTRUN -> [SKIP][176] ([i915#4103]) +2 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#9809]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-toggle: - shard-snb: [PASS][178] -> [FAIL][179] ([i915#2346]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-snb4/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-snb4/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#9067]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-8/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-tglu-1: NOTRUN -> [SKIP][181] ([i915#9067]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][182] ([i915#3804]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dp_aux_dev: - shard-tglu: NOTRUN -> [SKIP][183] ([i915#1257]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-2/igt@kms_dp_aux_dev.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-tglu: NOTRUN -> [SKIP][184] ([i915#12402]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-8/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-with-bpc: - shard-rkl: NOTRUN -> [SKIP][185] ([i915#3555] / [i915#3840]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-7/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#3555] / [i915#3840]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-8/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_fbcon_fbt@psr-suspend: - shard-tglu-1: NOTRUN -> [SKIP][187] ([i915#3469]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-1/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-3x: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#1839]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-1/igt@kms_feature_discovery@display-3x.html - shard-tglu-1: NOTRUN -> [SKIP][189] ([i915#1839]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-1/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@display-4x: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#1839]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-7/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#9337]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-7/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][192] ([i915#3637]) +5 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms: - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#3637]) +4 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-5/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-plain-flip: - shard-tglu-1: NOTRUN -> [SKIP][194] ([i915#3637]) +4 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-1/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-dg1: NOTRUN -> [SKIP][195] ([i915#9934]) +3 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-15/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#8381]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-2/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a3: - shard-dg2: NOTRUN -> [FAIL][197] ([i915#2122]) +2 other tests fail [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-5/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a3.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a4: - shard-dg1: [PASS][198] -> [FAIL][199] ([i915#2122]) +1 other test fail [198]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg1-16/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a4.html [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-19/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a4.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@b-vga1: - shard-snb: [PASS][200] -> [FAIL][201] ([i915#2122]) +4 other tests fail [200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-snb6/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-vga1.html [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-snb1/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-vga1.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@d-hdmi-a1: - shard-tglu: [PASS][202] -> [FAIL][203] ([i915#2122]) +3 other tests fail [202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-tglu-5/igt@kms_flip@plain-flip-fb-recreate-interruptible@d-hdmi-a1.html [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-6/igt@kms_flip@plain-flip-fb-recreate-interruptible@d-hdmi-a1.html * igt@kms_flip@plain-flip-fb-recreate@d-hdmi-a1: - shard-tglu: NOTRUN -> [FAIL][204] ([i915#2122]) +3 other tests fail [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-7/igt@kms_flip@plain-flip-fb-recreate@d-hdmi-a1.html * igt@kms_flip@plain-flip-ts-check: - shard-dg2: [PASS][205] -> [FAIL][206] ([i915#2122]) +1 other test fail [205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-3/igt@kms_flip@plain-flip-ts-check.html [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-8/igt@kms_flip@plain-flip-ts-check.html - shard-mtlp: [PASS][207] -> [FAIL][208] ([i915#12457] / [i915#2122]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-mtlp-2/igt@kms_flip@plain-flip-ts-check.html [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-7/igt@kms_flip@plain-flip-ts-check.html * igt@kms_flip@plain-flip-ts-check@c-edp1: - shard-mtlp: [PASS][209] -> [FAIL][210] ([i915#2122]) +6 other tests fail [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-mtlp-2/igt@kms_flip@plain-flip-ts-check@c-edp1.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-7/igt@kms_flip@plain-flip-ts-check@c-edp1.html * igt@kms_flip@plain-flip-ts-check@d-edp1: - shard-mtlp: [PASS][211] -> [FAIL][212] ([i915#12457]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-mtlp-2/igt@kms_flip@plain-flip-ts-check@d-edp1.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-7/igt@kms_flip@plain-flip-ts-check@d-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][213] ([i915#2672] / [i915#3555]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][214] ([i915#2587] / [i915#2672]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][215] ([i915#2672]) +4 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][216] ([i915#2672] / [i915#3555] / [i915#8813]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html - shard-dg2: NOTRUN -> [SKIP][217] ([i915#2672] / [i915#3555]) +1 other test skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#2672] / [i915#8813]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-dg1: NOTRUN -> [SKIP][219] ([i915#2587] / [i915#2672] / [i915#3555]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-tglu: NOTRUN -> [SKIP][220] ([i915#2672] / [i915#3555]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][221] ([i915#2587] / [i915#2672]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling: - shard-dg2: [PASS][222] -> [SKIP][223] ([i915#3555]) +7 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-rkl: NOTRUN -> [SKIP][224] ([i915#2672] / [i915#3555]) +4 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html - shard-dg1: NOTRUN -> [SKIP][225] ([i915#2672] / [i915#3555]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][226] ([i915#2587] / [i915#2672]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#2672]) +8 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [FAIL][229] ([i915#6880]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt: - shard-dg2: [PASS][230] -> [SKIP][231] ([i915#5354]) +3 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw: - shard-snb: [PASS][232] -> [SKIP][233] +3 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbc-2p-rte: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#5354]) +55 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-rte.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#1825]) +23 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-dg1: NOTRUN -> [SKIP][236] +23 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: NOTRUN -> [SKIP][237] ([i915#5439]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-rkl: NOTRUN -> [SKIP][238] ([i915#3023]) +26 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][239] ([i915#3458]) +14 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][240] +27 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][241] ([i915#8708]) +2 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#8708]) +21 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][243] ([i915#5439]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][244] ([i915#8708]) +9 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt: - shard-tglu: NOTRUN -> [SKIP][245] +78 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][246] ([i915#1825]) +42 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite: - shard-tglu-1: NOTRUN -> [SKIP][247] +32 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html - shard-dg1: NOTRUN -> [SKIP][248] ([i915#3458]) +11 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#6118]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-5/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@bpc-switch-dpms: - shard-tglu: NOTRUN -> [SKIP][250] ([i915#3555] / [i915#8228]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-7/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@invalid-metadata-sizes: - shard-mtlp: NOTRUN -> [SKIP][251] ([i915#3555] / [i915#8228]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-3/igt@kms_hdr@invalid-metadata-sizes.html - shard-dg1: NOTRUN -> [SKIP][252] ([i915#3555] / [i915#8228]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-15/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#3555] / [i915#8228]) +1 other test skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-11/igt@kms_hdr@static-toggle.html * igt@kms_joiner@basic-big-joiner: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#10656]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-7/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][255] ([i915#12394]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-3/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][256] ([i915#12339]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-1/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-rkl: NOTRUN -> [SKIP][257] ([i915#10656]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-5/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][258] ([i915#12388]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][259] ([i915#12339]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-4/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-tglu: NOTRUN -> [SKIP][260] ([i915#1839]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane@pixel-format-source-clamping: - shard-dg2: [PASS][261] -> [SKIP][262] ([i915#8825]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-8/igt@kms_plane@pixel-format-source-clamping.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-2/igt@kms_plane@pixel-format-source-clamping.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-dg2: NOTRUN -> [SKIP][263] ([i915#8825]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-2/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_plane_alpha_blend@alpha-opaque-fb: - shard-dg2: NOTRUN -> [SKIP][264] ([i915#7294]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-2/igt@kms_plane_alpha_blend@alpha-opaque-fb.html * igt@kms_plane_alpha_blend@alpha-transparent-fb: - shard-dg2: [PASS][265] -> [SKIP][266] ([i915#7294]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-8/igt@kms_plane_alpha_blend@alpha-transparent-fb.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-2/igt@kms_plane_alpha_blend@alpha-transparent-fb.html * igt@kms_plane_multiple@tiling-yf: - shard-mtlp: NOTRUN -> [SKIP][267] ([i915#3555] / [i915#8806]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-6/igt@kms_plane_multiple@tiling-yf.html - shard-dg2: NOTRUN -> [SKIP][268] ([i915#3555] / [i915#8806]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-7/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-mtlp: NOTRUN -> [SKIP][269] ([i915#6953]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-2/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-3: - shard-dg2: NOTRUN -> [FAIL][270] ([i915#8292]) +1 other test fail [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-3.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [FAIL][271] ([i915#8292]) +1 other test fail [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-1/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][272] ([i915#8292]) +1 other test fail [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-14/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d: - shard-tglu-1: NOTRUN -> [SKIP][273] ([i915#12247]) +9 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers: - shard-dg2: [PASS][274] -> [SKIP][275] ([i915#3555] / [i915#8152] / [i915#9423]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-rkl: NOTRUN -> [SKIP][276] ([i915#3555]) +4 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b: - shard-rkl: NOTRUN -> [SKIP][277] ([i915#12247]) +6 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers: - shard-dg2: [PASS][278] -> [SKIP][279] ([i915#8152] / [i915#9423]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-11/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c: - shard-dg2: [PASS][280] -> [SKIP][281] ([i915#12247]) +11 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-11/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d: - shard-dg2: [PASS][282] -> [SKIP][283] ([i915#8152]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-11/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d: - shard-dg1: NOTRUN -> [SKIP][284] ([i915#12247]) +10 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/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-5: - shard-mtlp: NOTRUN -> [SKIP][285] ([i915#12247] / [i915#6953]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-4/igt@kms_plane_scaling@planes-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25: - shard-dg2: [PASS][286] -> [SKIP][287] ([i915#6953] / [i915#8152] / [i915#9423]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg1: NOTRUN -> [SKIP][288] ([i915#12247] / [i915#12504] / [i915#3555]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-16/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - shard-tglu: NOTRUN -> [SKIP][289] ([i915#12247] / [i915#3555]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-9/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - shard-mtlp: NOTRUN -> [SKIP][290] ([i915#12247] / [i915#3555]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - shard-dg2: NOTRUN -> [SKIP][291] ([i915#12247] / [i915#3555] / [i915#9423]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - shard-rkl: NOTRUN -> [SKIP][292] ([i915#12247] / [i915#3555]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a: - shard-dg1: NOTRUN -> [SKIP][293] ([i915#12247] / [i915#12504]) +6 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-16/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a.html - shard-tglu: NOTRUN -> [SKIP][294] ([i915#12247]) +3 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-9/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d: - shard-dg2: NOTRUN -> [SKIP][295] ([i915#12247]) +3 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-dg2: [PASS][296] -> [SKIP][297] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d: - shard-dg2: [PASS][298] -> [SKIP][299] ([i915#12247] / [i915#8152]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75: - shard-snb: NOTRUN -> [SKIP][300] +30 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-snb7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html - shard-mtlp: NOTRUN -> [SKIP][301] ([i915#12247] / [i915#3555] / [i915#6953]) +1 other test skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a: - shard-mtlp: NOTRUN -> [SKIP][302] ([i915#12247]) +15 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-tglu: NOTRUN -> [SKIP][303] ([i915#12343]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-7/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][304] ([i915#5354]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-7/igt@kms_pm_backlight@fade-with-dpms.html - shard-tglu: NOTRUN -> [SKIP][305] ([i915#9812]) +1 other test skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-7/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc5-psr: - shard-rkl: NOTRUN -> [SKIP][306] ([i915#9685]) +1 other test skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-2/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][307] ([i915#5978]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-7/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@cursor-dpms: - shard-dg2: [PASS][308] -> [SKIP][309] ([i915#1849]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-10/igt@kms_pm_rpm@cursor-dpms.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-2/igt@kms_pm_rpm@cursor-dpms.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-rkl: NOTRUN -> [SKIP][310] ([i915#9519]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-3/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: NOTRUN -> [SKIP][311] ([i915#9519]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-mtlp: NOTRUN -> [SKIP][312] ([i915#9519]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-tglu: NOTRUN -> [SKIP][313] ([i915#9519]) +1 other test skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_pm_rpm@pm-tiling: - shard-dg2: NOTRUN -> [SKIP][314] ([i915#4077]) +12 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-10/igt@kms_pm_rpm@pm-tiling.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][315] ([i915#6524] / [i915#6805]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-2/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][316] ([i915#6524]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-1/igt@kms_prime@basic-modeset-hybrid.html - shard-tglu: NOTRUN -> [SKIP][317] ([i915#6524]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-3/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_properties@plane-properties-legacy: - shard-dg2: [PASS][318] -> [SKIP][319] ([i915#11521]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-5/igt@kms_properties@plane-properties-legacy.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-2/igt@kms_properties@plane-properties-legacy.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf: - shard-mtlp: NOTRUN -> [SKIP][320] ([i915#12316]) +2 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-2/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][321] ([i915#11520]) +8 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-2/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf: - shard-tglu-1: NOTRUN -> [SKIP][322] ([i915#11520]) +3 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][323] ([i915#11520]) +11 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-4/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-cursor-plane-update-sf: - shard-tglu: NOTRUN -> [SKIP][324] ([i915#11520]) +7 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-2/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html - shard-snb: NOTRUN -> [SKIP][325] ([i915#11520]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-snb2/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][326] ([i915#11520]) +4 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-18/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][327] ([i915#9683]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-4/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-tglu-1: NOTRUN -> [SKIP][328] ([i915#9683]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-1/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][329] ([i915#1072] / [i915#9732]) +24 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-11/igt@kms_psr@fbc-psr-primary-mmap-gtt.html * igt@kms_psr@fbc-psr2-sprite-plane-onoff: - shard-mtlp: NOTRUN -> [SKIP][330] ([i915#9688]) +11 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-2/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html * igt@kms_psr@pr-sprite-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][331] ([i915#9732]) +17 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-5/igt@kms_psr@pr-sprite-mmap-cpu.html * igt@kms_psr@pr-sprite-plane-onoff: - shard-dg1: NOTRUN -> [SKIP][332] ([i915#1072] / [i915#9732]) +16 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-13/igt@kms_psr@pr-sprite-plane-onoff.html * igt@kms_psr@psr2-cursor-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][333] ([i915#1072] / [i915#9732]) +23 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-1/igt@kms_psr@psr2-cursor-mmap-gtt.html - shard-tglu-1: NOTRUN -> [SKIP][334] ([i915#9732]) +8 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-1/igt@kms_psr@psr2-cursor-mmap-gtt.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglu: NOTRUN -> [SKIP][335] ([i915#9685]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-rotation-90: - shard-dg2: NOTRUN -> [SKIP][336] ([i915#11131] / [i915#4235]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-11/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][337] ([i915#5289]) +1 other test skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-2/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][338] ([i915#11131] / [i915#4235] / [i915#5190]) +1 other test skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_scaling_modes@scaling-mode-none: - shard-mtlp: NOTRUN -> [SKIP][339] ([i915#3555] / [i915#5030] / [i915#9041]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-2/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][340] ([i915#5030]) +2 other tests skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-2/igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1.html * igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][341] ([i915#5030] / [i915#9041]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-2/igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1.html * igt@kms_selftest@drm_framebuffer: - shard-tglu-1: NOTRUN -> [ABORT][342] ([i915#12231]) +1 other test abort [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-1/igt@kms_selftest@drm_framebuffer.html * igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free: - shard-dg2: NOTRUN -> [ABORT][343] ([i915#12231]) +1 other test abort [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-2/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html * igt@kms_sequence@queue-idle: - shard-dg2: NOTRUN -> [SKIP][344] ([i915#9197]) +14 other tests skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-2/igt@kms_sequence@queue-idle.html * igt@kms_setmode@basic: - shard-tglu: [PASS][345] -> [FAIL][346] ([i915#5465]) +2 other tests fail [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-tglu-2/igt@kms_setmode@basic.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-7/igt@kms_setmode@basic.html * igt@kms_setmode@basic-clone-single-crtc: - shard-mtlp: NOTRUN -> [SKIP][347] ([i915#3555] / [i915#8809]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-5/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-mtlp: [PASS][348] -> [FAIL][349] ([i915#5465]) +2 other tests fail [348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-mtlp-7/igt@kms_setmode@basic@pipe-b-edp-1.html [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-1/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@kms_sysfs_edid_timing: - shard-dg1: NOTRUN -> [FAIL][350] ([IGT#2] / [i915#6493]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-13/igt@kms_sysfs_edid_timing.html * igt@kms_vblank@ts-continuation-modeset: - shard-dg2: [PASS][351] -> [SKIP][352] ([i915#9197]) +26 other tests skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-7/igt@kms_vblank@ts-continuation-modeset.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-2/igt@kms_vblank@ts-continuation-modeset.html * igt@kms_vrr@flip-dpms: - shard-tglu-1: NOTRUN -> [SKIP][353] ([i915#3555]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-1/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@flipline: - shard-mtlp: NOTRUN -> [SKIP][354] ([i915#3555] / [i915#8808]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-6/igt@kms_vrr@flipline.html * igt@kms_vrr@lobf: - shard-dg1: NOTRUN -> [SKIP][355] ([i915#11920]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-19/igt@kms_vrr@lobf.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-dg2: NOTRUN -> [SKIP][356] ([i915#9906]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-5/igt@kms_vrr@seamless-rr-switch-virtual.html - shard-dg1: NOTRUN -> [SKIP][357] ([i915#9906]) +1 other test skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-16/igt@kms_vrr@seamless-rr-switch-virtual.html - shard-mtlp: NOTRUN -> [SKIP][358] ([i915#8808] / [i915#9906]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-7/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][359] ([i915#2437] / [i915#9412]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-7/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@perf@global-sseu-config: - shard-dg2: NOTRUN -> [SKIP][360] ([i915#7387]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-5/igt@perf@global-sseu-config.html * igt@perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][361] ([i915#2434]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-8/igt@perf@mi-rpc.html * igt@perf_pmu@cpu-hotplug: - shard-mtlp: NOTRUN -> [SKIP][362] ([i915#8850]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-4/igt@perf_pmu@cpu-hotplug.html - shard-dg2: NOTRUN -> [SKIP][363] ([i915#8850]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-11/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@most-busy-idle-check-all: - shard-dg2: [PASS][364] -> [FAIL][365] ([i915#11943] / [i915#12515]) +1 other test fail [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-7/igt@perf_pmu@most-busy-idle-check-all.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-1/igt@perf_pmu@most-busy-idle-check-all.html * igt@perf_pmu@rc6-all-gts: - shard-dg1: NOTRUN -> [SKIP][366] ([i915#8516]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-15/igt@perf_pmu@rc6-all-gts.html * igt@prime_vgem@basic-gtt: - shard-dg2: NOTRUN -> [SKIP][367] ([i915#3708] / [i915#4077]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-7/igt@prime_vgem@basic-gtt.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-tglu: NOTRUN -> [SKIP][368] ([i915#9917]) +1 other test skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-4/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-rkl: NOTRUN -> [FAIL][369] ([i915#12564] / [i915#9781]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-3/igt@syncobj_wait@invalid-wait-zero-handles.html #### Possible fixes #### * igt@gem_ccs@suspend-resume: - shard-dg2: [INCOMPLETE][370] ([i915#7297]) -> [PASS][371] [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-3/igt@gem_ccs@suspend-resume.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-8/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-smem-lmem0: - shard-dg2: [INCOMPLETE][372] ([i915#12392] / [i915#7297]) -> [PASS][373] [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-3/igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-smem-lmem0.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-8/igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-smem-lmem0.html * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: [ABORT][374] ([i915#9846]) -> [PASS][375] [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-2/igt@gem_create@create-ext-cpu-access-big.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-7/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_persistence@hostile: - shard-tglu: [FAIL][376] ([i915#11980] / [i915#12580]) -> [PASS][377] [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-tglu-6/igt@gem_ctx_persistence@hostile.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-2/igt@gem_ctx_persistence@hostile.html * igt@gem_exec_balancer@nop: - shard-mtlp: [DMESG-WARN][378] ([i915#12412]) -> [PASS][379] [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-mtlp-2/igt@gem_exec_balancer@nop.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-7/igt@gem_exec_balancer@nop.html * igt@gem_exec_fair@basic-deadline: - shard-rkl: [FAIL][380] ([i915#2846]) -> [PASS][381] [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-rkl-7/igt@gem_exec_fair@basic-deadline.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-1/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_suspend@basic-s4-devices: - shard-dg2: [ABORT][382] ([i915#7975] / [i915#8213]) -> [PASS][383] +1 other test pass [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-1/igt@gem_exec_suspend@basic-s4-devices.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg1: [ABORT][384] ([i915#7975] / [i915#8213]) -> [PASS][385] +1 other test pass [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg1-14/igt@gem_exec_suspend@basic-s4-devices@lmem0.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-17/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_mmap_offset@clear: - shard-mtlp: [ABORT][386] ([i915#10729]) -> [PASS][387] [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-mtlp-6/igt@gem_mmap_offset@clear.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-7/igt@gem_mmap_offset@clear.html * igt@gem_mmap_offset@clear@smem0: - shard-mtlp: [ABORT][388] ([i915#10029] / [i915#10729]) -> [PASS][389] [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-mtlp-6/igt@gem_mmap_offset@clear@smem0.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-7/igt@gem_mmap_offset@clear@smem0.html * igt@i915_module_load@reload-with-fault-injection: - shard-tglu: [ABORT][390] ([i915#9820]) -> [PASS][391] [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-tglu-3/igt@i915_module_load@reload-with-fault-injection.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-tglu-8/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: - shard-dg1: [FAIL][392] ([i915#3591]) -> [PASS][393] [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html * igt@i915_selftest@live: - shard-mtlp: [ABORT][394] ([i915#12133] / [i915#12216]) -> [PASS][395] [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-mtlp-6/igt@i915_selftest@live.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-7/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - shard-mtlp: [ABORT][396] ([i915#12216]) -> [PASS][397] [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-mtlp-6/igt@i915_selftest@live@workarounds.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-7/igt@i915_selftest@live@workarounds.html * igt@kms_color@ctm-max: - shard-dg2: [SKIP][398] ([i915#12655]) -> [PASS][399] [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-2/igt@kms_color@ctm-max.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-8/igt@kms_color@ctm-max.html * igt@kms_fbcon_fbt@fbc: - shard-dg2: [SKIP][400] ([i915#1849]) -> [PASS][401] [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-2/igt@kms_fbcon_fbt@fbc.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-5/igt@kms_fbcon_fbt@fbc.html * igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1: - shard-snb: [FAIL][402] ([i915#2122]) -> [PASS][403] +1 other test pass [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-snb7/igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-snb4/igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1.html * igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset: - shard-dg2: [SKIP][404] ([i915#5354]) -> [PASS][405] +7 other tests pass [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-2/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-3/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling: - shard-dg2: [SKIP][406] ([i915#3555]) -> [PASS][407] [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html * igt@kms_lease@lease-revoke: - shard-dg2: [SKIP][408] ([i915#9197]) -> [PASS][409] +31 other tests pass [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-2/igt@kms_lease@lease-revoke.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-4/igt@kms_lease@lease-revoke.html * igt@kms_plane_alpha_blend@alpha-basic: - shard-dg2: [SKIP][410] ([i915#7294]) -> [PASS][411] [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-2/igt@kms_plane_alpha_blend@alpha-basic.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-5/igt@kms_plane_alpha_blend@alpha-basic.html * igt@kms_plane_alpha_blend@alpha-opaque-fb: - shard-dg1: [DMESG-WARN][412] ([i915#4423]) -> [PASS][413] +1 other test pass [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg1-14/igt@kms_plane_alpha_blend@alpha-opaque-fb.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg1-16/igt@kms_plane_alpha_blend@alpha-opaque-fb.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5: - shard-dg2: [SKIP][414] ([i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][415] +1 other test pass [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b: - shard-dg2: [SKIP][416] ([i915#12247]) -> [PASS][417] +5 other tests pass [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d: - shard-dg2: [SKIP][418] ([i915#12247] / [i915#8152]) -> [PASS][419] [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d.html * igt@kms_plane_scaling@planes-upscale-20x20@pipe-d: - shard-dg2: [SKIP][420] ([i915#8152]) -> [PASS][421] [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20@pipe-d.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-20x20@pipe-d.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: [SKIP][422] ([i915#9340]) -> [PASS][423] [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-11/igt@kms_pm_lpsp@kms-lpsp.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-8/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [SKIP][424] ([i915#9519]) -> [PASS][425] +1 other test pass [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-rkl-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-dg2: [SKIP][426] ([i915#9519]) -> [PASS][427] [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-8/igt@kms_pm_rpm@dpms-non-lpsp.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-5/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_vblank@query-idle-hang: - shard-snb: [INCOMPLETE][428] ([i915#12276]) -> [PASS][429] [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-snb6/igt@kms_vblank@query-idle-hang.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-snb1/igt@kms_vblank@query-idle-hang.html * igt@kms_vblank@query-idle-hang@pipe-a-hdmi-a-1: - shard-snb: [INCOMPLETE][430] -> [PASS][431] [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-snb6/igt@kms_vblank@query-idle-hang@pipe-a-hdmi-a-1.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-snb1/igt@kms_vblank@query-idle-hang@pipe-a-hdmi-a-1.html * igt@perf@blocking@0-rcs0: - shard-rkl: [FAIL][432] ([i915#10538]) -> [PASS][433] +1 other test pass [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-rkl-5/igt@perf@blocking@0-rcs0.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-rkl-7/igt@perf@blocking@0-rcs0.html * igt@perf_pmu@busy-double-start@bcs0: - shard-mtlp: [FAIL][434] ([i915#4349]) -> [PASS][435] [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-mtlp-5/igt@perf_pmu@busy-double-start@bcs0.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-4/igt@perf_pmu@busy-double-start@bcs0.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [FAIL][436] ([i915#4349]) -> [PASS][437] +4 other tests pass [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-2/igt@perf_pmu@busy-double-start@vecs1.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html #### Warnings #### * igt@i915_module_load@reload-with-fault-injection: - shard-mtlp: [ABORT][438] ([i915#10131] / [i915#10887] / [i915#9820]) -> [ABORT][439] ([i915#10131] / [i915#9697]) [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-dg2: [SKIP][440] ([i915#9197]) -> [SKIP][441] [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15615/shard-dg2-2/igt@kms_big_fb@linear-64bpp-rotate-270.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/shard-dg2-10/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12011/index.html [-- Attachment #2: Type: text/html, Size: 109521 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2024-11-04 23:03 UTC | newest] Thread overview: 12+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-10-31 0:31 [PATCH i-g-t 0/2] lib/igt_kmod: Drop legacy kunit integration Lucas De Marchi 2024-10-31 0:31 ` [PATCH i-g-t 1/2] lib/igt_kmod: Drop legacy kunit fallback Lucas De Marchi 2024-10-31 10:42 ` Janusz Krzysztofik 2024-10-31 13:18 ` Lucas De Marchi 2024-10-31 14:58 ` Janusz Krzysztofik 2024-11-04 23:03 ` Lucas De Marchi 2024-10-31 0:31 ` [PATCH i-g-t 2/2] lib/igt_kmod: Simplify kunit_set_filtering() Lucas De Marchi 2024-10-31 10:35 ` Janusz Krzysztofik 2024-10-31 2:22 ` ✓ CI.xeBAT: success for lib/igt_kmod: Drop legacy kunit integration Patchwork 2024-10-31 2:45 ` ✓ Fi.CI.BAT: " Patchwork 2024-10-31 4:41 ` ✗ CI.xeFULL: failure " Patchwork 2024-10-31 13:16 ` ✗ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox