* [PATCH i-g-t v3 0/6] lib/igt_kmod: Drop legacy kunit integration
@ 2024-11-07 5:52 Lucas De Marchi
2024-11-07 5:52 ` [PATCH i-g-t v3 1/6] lib/igt_kmod: Drop legacy kunit fallback Lucas De Marchi
` (10 more replies)
0 siblings, 11 replies; 19+ messages in thread
From: Lucas De Marchi @ 2024-11-07 5:52 UTC (permalink / raw)
To: igt-dev; +Cc: Janusz Krzysztofik, Lucas De Marchi
Drop the legacy path with the minimum amount of conversion.
v2: Use igt_require() rather than igt_assert() and add 2 more patches.
v3:
- Invert the order when checking by suite name
- Simplify kunit_get_tests(), __igt_kunit() can skip by itself
- Add a few more patches with refactors and leak fixes.
Lucas De Marchi (6):
lib/igt_kmod: Drop legacy kunit fallback
lib/igt_kmod: Fix leaking subtest name
lib/igt_kmod: Stop passing debugfs_dir around
lib/igt_kmod: Stop passing ktap around
lib/igt_ktap: Just free ktap
lib/igt_kmod: Do not leak kmod ctx
lib/igt_kmod.c | 364 +++++-------------------------------
lib/igt_ktap.c | 5 +-
lib/igt_ktap.h | 2 +-
lib/tests/igt_ktap_parser.c | 24 +--
4 files changed, 66 insertions(+), 329 deletions(-)
--
2.47.0
^ permalink raw reply [flat|nested] 19+ messages in thread* [PATCH i-g-t v3 1/6] lib/igt_kmod: Drop legacy kunit fallback 2024-11-07 5:52 [PATCH i-g-t v3 0/6] lib/igt_kmod: Drop legacy kunit integration Lucas De Marchi @ 2024-11-07 5:52 ` Lucas De Marchi 2024-11-07 5:52 ` [PATCH i-g-t v3 2/6] lib/igt_kmod: Fix leaking subtest name Lucas De Marchi ` (9 subsequent siblings) 10 siblings, 0 replies; 19+ messages in thread From: Lucas De Marchi @ 2024-11-07 5:52 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. Reviewed-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com> Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> --- lib/igt_kmod.c | 289 ++----------------------------------------------- 1 file changed, 12 insertions(+), 277 deletions(-) diff --git a/lib/igt_kmod.c b/lib/igt_kmod.c index 87036d06c..5224d36a4 100644 --- a/lib/igt_kmod.c +++ b/lib/igt_kmod.c @@ -959,121 +959,6 @@ static bool kunit_set_filtering(const char *filter_glob, const char *filter, return ret; } -struct modprobe_data { - struct kmod_module *kmod; - const char *opts; - int err; - pthread_t parent; - pthread_mutex_t lock; - pthread_t thread; -}; - -static void *modprobe_task(void *arg) -{ - struct modprobe_data *data = arg; - - data->err = modprobe(data->kmod, data->opts); - - if (igt_debug_on(data->err)) { - bool once = false; - int err; - - while (err = pthread_mutex_trylock(&data->lock), - err && !igt_debug_on(err != EBUSY)) { - igt_debug_on(pthread_kill(data->parent, SIGCHLD) && - !once); - once = true; - } - } else { - /* let main thread use mutex to detect modprobe completion */ - igt_debug_on(pthread_mutex_lock(&data->lock)); - } - - return NULL; -} - -static void kunit_sigchld_handler(int signal) -{ -} - -static int kunit_kmsg_result_get(struct igt_list_head *results, - struct modprobe_data *modprobe, - int fd, struct igt_ktap_results *ktap) -{ - struct sigaction sigchld = { .sa_handler = kunit_sigchld_handler, }, - saved; - char record[BUF_LEN + 1], *buf; - unsigned long taints; - int ret; - - do { - int err; - - if (igt_debug_on(igt_kernel_tainted(&taints))) - return -ENOTRECOVERABLE; - - if (modprobe) { - err = igt_debug_on(sigaction(SIGCHLD, &sigchld, &saved)); - if (err == -1) - return -errno; - else if (unlikely(err)) - return err; - - err = pthread_mutex_lock(&modprobe->lock); - switch (err) { - case EOWNERDEAD: - /* leave the mutex unrecoverable */ - igt_debug_on(pthread_mutex_unlock(&modprobe->lock)); - __attribute__ ((fallthrough)); - case ENOTRECOVERABLE: - igt_debug_on(sigaction(SIGCHLD, &saved, NULL)); - if (igt_debug_on(modprobe->err)) - return modprobe->err; - break; - case 0: - break; - default: - igt_debug("pthread_mutex_lock() error: %d\n", err); - igt_debug_on(sigaction(SIGCHLD, &saved, NULL)); - return -err; - } - } - - ret = read(fd, record, BUF_LEN); - - if (modprobe && !err) { /* pthread_mutex_lock() succeeded */ - igt_debug_on(pthread_mutex_unlock(&modprobe->lock)); - igt_debug_on(sigaction(SIGCHLD, &saved, NULL)); - } - - if (igt_debug_on(!ret)) - return -ENODATA; - if (igt_debug_on(ret == -1)) - return -errno; - if (unlikely(igt_debug_on(ret < 0))) - break; - - /* skip kmsg continuation lines */ - if (igt_debug_on(*record == ' ')) - continue; - - /* NULL-terminate the record */ - record[ret] = '\0'; - - /* detect start of log message, continue if not found */ - buf = strchrnul(record, ';'); - if (igt_debug_on(*buf == '\0')) - continue; - buf++; - - ret = igt_ktap_parse(buf, ktap); - if (!ret || igt_debug_on(ret != -EINPROGRESS)) - break; - } while (igt_list_empty(results)); - - return ret; -} - static void kunit_result_free(struct igt_ktap_result **r, char **suite_name, char **case_name) { @@ -1148,147 +1033,7 @@ out_fclose: return err; } -static void __igt_kunit_legacy(struct igt_ktest *tst, - const char *subtest, - const char *opts) -{ - struct modprobe_data modprobe = { tst->kmod, opts, 0, pthread_self(), }; - char *suite_name = NULL, *case_name = NULL; - struct igt_ktap_results *ktap; - struct igt_ktap_result *r; - pthread_mutexattr_t attr; - IGT_LIST_HEAD(results); - unsigned long taints; - int flags, ret; - - igt_skip_on_f(tst->kmsg < 0, "Could not open /dev/kmsg\n"); - - igt_skip_on((flags = fcntl(tst->kmsg, F_GETFL, 0), flags < 0)); - igt_skip_on_f(fcntl(tst->kmsg, F_SETFL, flags & ~O_NONBLOCK) == -1, - "Could not set /dev/kmsg to blocking mode\n"); - - igt_skip_on(lseek(tst->kmsg, 0, SEEK_END) < 0); - - igt_skip_on(pthread_mutexattr_init(&attr)); - igt_skip_on(pthread_mutexattr_setrobust(&attr, PTHREAD_MUTEX_ROBUST)); - igt_skip_on(pthread_mutex_init(&modprobe.lock, &attr)); - - ktap = igt_ktap_alloc(&results); - igt_require(ktap); - - if (igt_debug_on(pthread_create(&modprobe.thread, NULL, - modprobe_task, &modprobe))) { - igt_ktap_free(&ktap); - igt_skip("Failed to create a modprobe thread\n"); - } - - do { - ret = kunit_kmsg_result_get(&results, &modprobe, - tst->kmsg, ktap); - if (igt_debug_on(ret && ret != -EINPROGRESS)) - break; - - if (igt_debug_on(igt_list_empty(&results))) - break; - - r = igt_list_first_entry(&results, r, link); - - igt_dynamic_f("%s%s%s", - strcmp(r->suite_name, subtest) ? r->suite_name : "", - strcmp(r->suite_name, subtest) ? "-" : "", - r->case_name) { - - if (r->code == IGT_EXIT_INVALID) { - /* parametrized test case, get actual result */ - kunit_result_free(&r, &suite_name, &case_name); - - igt_assert(igt_list_empty(&results)); - - ret = kunit_kmsg_result_get(&results, &modprobe, - tst->kmsg, ktap); - if (ret != -EINPROGRESS) - igt_fail_on(ret); - - igt_fail_on(igt_list_empty(&results)); - - r = igt_list_first_entry(&results, r, link); - - igt_fail_on_f(strcmp(r->suite_name, suite_name), - "suite_name expected: %s, got: %s\n", - suite_name, r->suite_name); - igt_fail_on_f(strcmp(r->case_name, case_name), - "case_name expected: %s, got: %s\n", - case_name, r->case_name); - } - - igt_assert_neq(r->code, IGT_EXIT_INVALID); - - if (r->msg && *r->msg) { - igt_skip_on_f(r->code == IGT_EXIT_SKIP, - "%s\n", r->msg); - igt_fail_on_f(r->code == IGT_EXIT_FAILURE, - "%s\n", r->msg); - igt_abort_on_f(r->code == IGT_EXIT_ABORT, - "%s\n", r->msg); - } else { - igt_skip_on(r->code == IGT_EXIT_SKIP); - igt_fail_on(r->code == IGT_EXIT_FAILURE); - if (r->code == IGT_EXIT_ABORT) - igt_fail(r->code); - } - igt_assert_eq(r->code, IGT_EXIT_SUCCESS); - - switch (pthread_mutex_lock(&modprobe.lock)) { - case 0: - igt_debug_on(pthread_mutex_unlock(&modprobe.lock)); - break; - case EOWNERDEAD: - /* leave the mutex unrecoverable */ - igt_debug_on(pthread_mutex_unlock(&modprobe.lock)); - __attribute__ ((fallthrough)); - case ENOTRECOVERABLE: - igt_assert_eq(modprobe.err, 0); - break; - default: - igt_debug("pthread_mutex_lock() failed\n"); - break; - } - - igt_assert_eq(igt_kernel_tainted(&taints), 0); - } - - kunit_result_free(&r, &suite_name, &case_name); - - } while (ret == -EINPROGRESS); - - kunit_results_free(&results, &suite_name, &case_name); - - switch (pthread_mutex_lock(&modprobe.lock)) { - case 0: - igt_debug_on(pthread_cancel(modprobe.thread)); - igt_debug_on(pthread_mutex_unlock(&modprobe.lock)); - igt_debug_on(pthread_join(modprobe.thread, NULL)); - break; - case EOWNERDEAD: - /* leave the mutex unrecoverable */ - igt_debug_on(pthread_mutex_unlock(&modprobe.lock)); - break; - case ENOTRECOVERABLE: - break; - default: - igt_debug("pthread_mutex_lock() failed\n"); - igt_debug_on(pthread_join(modprobe.thread, NULL)); - break; - } - - igt_ktap_free(&ktap); - - igt_skip_on(modprobe.err); - igt_skip_on(igt_kernel_tainted(&taints)); - igt_skip_on_f(ret, "KTAP parser failed\n"); -} - -static bool kunit_get_tests(struct igt_list_head *tests, +static void kunit_get_tests(struct igt_list_head *tests, struct igt_ktest *tst, const char *suite, const char *opts, @@ -1302,7 +1047,7 @@ static bool kunit_get_tests(struct igt_list_head *tests, *debugfs_dir = opendir(debugfs_path); if (igt_debug_on(!*debugfs_dir)) - return false; + return; /* * To get a list of test cases provided by a kunit test module, ask the @@ -1313,7 +1058,7 @@ static bool kunit_get_tests(struct igt_list_head *tests, * a free text list of unknown length from /dev/kmsg. */ if (igt_debug_on(!kunit_set_filtering(suite, "module=none", "skip"))) - return false; + return; if (!suite) { seekdir(*debugfs_dir, 2); /* directory itself and its parent */ @@ -1350,8 +1095,6 @@ static bool kunit_get_tests(struct igt_list_head *tests, igt_list_for_each_entry_safe(r, rn, tests, link) igt_require_f(r->code == IGT_EXIT_SKIP, "Unexpected non-SKIP result while listing test cases\n"); - - return true; } static void __igt_kunit(struct igt_ktest *tst, @@ -1476,8 +1219,13 @@ void igt_kunit(const char *module_name, const char *suite, const char *opts) } } + /* We need the base KUnit module loaded if not built-in */ + igt_ignore_warn(igt_kmod_load("kunit", NULL)); + kunit_debugfs_path(debugfs_path); + igt_fixture { igt_require(subtest); + igt_require(*debugfs_path); igt_skip_on(igt_ktest_init(&tst, module_name)); igt_skip_on(igt_ktest_begin(&tst)); @@ -1485,30 +1233,17 @@ void igt_kunit(const char *module_name, const char *suite, const char *opts) igt_assert(igt_list_empty(&tests)); } - /* We need the base KUnit module loaded if not built-in */ - igt_ignore_warn(igt_kmod_load("kunit", NULL)); - /* * We need to use igt_subtest here, as otherwise it may crash with: - * skipping is allowed only in fixtures, subtests or igt_simple_main + * "skipping is allowed only in fixtures, subtests or igt_simple_main" * if used on igt_main. This is also needed in order to provide * proper namespace for dynamic subtests, with is required for CI * and for documentation. */ igt_subtest_with_dynamic(subtest) { - /* - * TODO: As soon as no longer needed by major Linux - * distributions, replace the fallback to - * __igt_kunit_legacy() processing path, required by - * LTS kernels not capable of using KUnit filters for - * listing test cases in KTAP format, with igt_require. - */ - kunit_debugfs_path(debugfs_path); - if (igt_debug_on(!*debugfs_path) || - !kunit_get_tests(&tests, &tst, suite, opts, debugfs_path, &debugfs_dir, &ktap)) - __igt_kunit_legacy(&tst, subtest, opts); - else - __igt_kunit(&tst, subtest, opts, debugfs_path, &tests, &ktap); + kunit_get_tests(&tests, &tst, suite, opts, + debugfs_path, &debugfs_dir, &ktap); + __igt_kunit(&tst, subtest, opts, debugfs_path, &tests, &ktap); } igt_fixture { -- 2.47.0 ^ permalink raw reply related [flat|nested] 19+ messages in thread
* [PATCH i-g-t v3 2/6] lib/igt_kmod: Fix leaking subtest name 2024-11-07 5:52 [PATCH i-g-t v3 0/6] lib/igt_kmod: Drop legacy kunit integration Lucas De Marchi 2024-11-07 5:52 ` [PATCH i-g-t v3 1/6] lib/igt_kmod: Drop legacy kunit fallback Lucas De Marchi @ 2024-11-07 5:52 ` Lucas De Marchi 2024-11-07 5:52 ` [PATCH i-g-t v3 3/6] lib/igt_kmod: Stop passing debugfs_dir around Lucas De Marchi ` (8 subsequent siblings) 10 siblings, 0 replies; 19+ messages in thread From: Lucas De Marchi @ 2024-11-07 5:52 UTC (permalink / raw) To: igt-dev; +Cc: Janusz Krzysztofik, Lucas De Marchi Keep it simple, checking by !suite and then assigning subtest accordingly. Since this is done only once, always call strdup() and free(). Reviewed-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com> Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> --- lib/igt_kmod.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lib/igt_kmod.c b/lib/igt_kmod.c index 5224d36a4..3729a053c 100644 --- a/lib/igt_kmod.c +++ b/lib/igt_kmod.c @@ -1197,8 +1197,8 @@ void igt_kunit(const char *module_name, const char *suite, const char *opts) char debugfs_path[PATH_MAX] = { '\0', }; struct igt_ktest tst = { .kmsg = -1, }; struct igt_ktap_results *ktap = NULL; - const char *subtest = suite; DIR *debugfs_dir = NULL; + char *subtest; IGT_LIST_HEAD(tests); /* @@ -1206,7 +1206,9 @@ void igt_kunit(const char *module_name, const char *suite, const char *opts) * we take the module name, drop the trailing "_test" or "_kunit" * suffix, if any, and use the result as our IGT subtest name. */ - if (!subtest) { + if (suite) { + subtest = strdup(suite); + } else { subtest = strdup(module_name); if (!igt_debug_on(!subtest)) { char *suffix = strstr(subtest, "_test"); @@ -1259,6 +1261,7 @@ void igt_kunit(const char *module_name, const char *suite, const char *opts) igt_ktest_end(&tst); } + free(subtest); igt_ktest_fini(&tst); } -- 2.47.0 ^ permalink raw reply related [flat|nested] 19+ messages in thread
* [PATCH i-g-t v3 3/6] lib/igt_kmod: Stop passing debugfs_dir around 2024-11-07 5:52 [PATCH i-g-t v3 0/6] lib/igt_kmod: Drop legacy kunit integration Lucas De Marchi 2024-11-07 5:52 ` [PATCH i-g-t v3 1/6] lib/igt_kmod: Drop legacy kunit fallback Lucas De Marchi 2024-11-07 5:52 ` [PATCH i-g-t v3 2/6] lib/igt_kmod: Fix leaking subtest name Lucas De Marchi @ 2024-11-07 5:52 ` Lucas De Marchi 2024-11-14 14:24 ` Janusz Krzysztofik 2024-11-07 5:52 ` [PATCH i-g-t v3 4/6] lib/igt_kmod: Stop passing ktap around Lucas De Marchi ` (7 subsequent siblings) 10 siblings, 1 reply; 19+ messages in thread From: Lucas De Marchi @ 2024-11-07 5:52 UTC (permalink / raw) To: igt-dev; +Cc: Janusz Krzysztofik, Lucas De Marchi Just open and closes it while getting the list of tests. Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> --- lib/igt_kmod.c | 27 ++++++++++++--------------- 1 file changed, 12 insertions(+), 15 deletions(-) diff --git a/lib/igt_kmod.c b/lib/igt_kmod.c index 3729a053c..36578aa68 100644 --- a/lib/igt_kmod.c +++ b/lib/igt_kmod.c @@ -1038,15 +1038,15 @@ static void kunit_get_tests(struct igt_list_head *tests, const char *suite, const char *opts, const char *debugfs_path, - DIR **debugfs_dir, struct igt_ktap_results **ktap) { struct igt_ktap_result *r, *rn; struct dirent *subdir; unsigned long taints; + DIR *debugfs_dir; - *debugfs_dir = opendir(debugfs_path); - if (igt_debug_on(!*debugfs_dir)) + debugfs_dir = opendir(debugfs_path); + if (igt_debug_on(!debugfs_dir)) return; /* @@ -1057,21 +1057,23 @@ static void kunit_get_tests(struct igt_list_head *tests, * we already can do perfectly -- seems to be more safe than extracting * a free text list of unknown length from /dev/kmsg. */ - if (igt_debug_on(!kunit_set_filtering(suite, "module=none", "skip"))) + if (igt_debug_on(!kunit_set_filtering(suite, "module=none", "skip"))) { + closedir(debugfs_dir); return; + } if (!suite) { - seekdir(*debugfs_dir, 2); /* directory itself and its parent */ + seekdir(debugfs_dir, 2); /* directory itself and its parent */ errno = 0; - igt_skip_on_f(readdir(*debugfs_dir) || errno, + igt_skip_on_f(readdir(debugfs_dir) || errno, "Require empty KUnit debugfs directory\n"); - rewinddir(*debugfs_dir); + rewinddir(debugfs_dir); } igt_skip_on(modprobe(tst->kmod, opts)); igt_skip_on(igt_kernel_tainted(&taints)); - while (subdir = readdir(*debugfs_dir), subdir) { + while (subdir = readdir(debugfs_dir), subdir) { if (!(subdir->d_type & DT_DIR)) continue; @@ -1089,8 +1091,7 @@ static void kunit_get_tests(struct igt_list_head *tests, break; } - closedir(*debugfs_dir); - *debugfs_dir = NULL; + closedir(debugfs_dir); igt_list_for_each_entry_safe(r, rn, tests, link) igt_require_f(r->code == IGT_EXIT_SKIP, @@ -1197,7 +1198,6 @@ void igt_kunit(const char *module_name, const char *suite, const char *opts) char debugfs_path[PATH_MAX] = { '\0', }; struct igt_ktest tst = { .kmsg = -1, }; struct igt_ktap_results *ktap = NULL; - DIR *debugfs_dir = NULL; char *subtest; IGT_LIST_HEAD(tests); @@ -1244,7 +1244,7 @@ void igt_kunit(const char *module_name, const char *suite, const char *opts) */ igt_subtest_with_dynamic(subtest) { kunit_get_tests(&tests, &tst, suite, opts, - debugfs_path, &debugfs_dir, &ktap); + debugfs_path, &ktap); __igt_kunit(&tst, subtest, opts, debugfs_path, &tests, &ktap); } @@ -1255,9 +1255,6 @@ void igt_kunit(const char *module_name, const char *suite, const char *opts) kunit_results_free(&tests, &suite_name, &case_name); - if (debugfs_dir) - closedir(debugfs_dir); - igt_ktest_end(&tst); } -- 2.47.0 ^ permalink raw reply related [flat|nested] 19+ messages in thread
* Re: [PATCH i-g-t v3 3/6] lib/igt_kmod: Stop passing debugfs_dir around 2024-11-07 5:52 ` [PATCH i-g-t v3 3/6] lib/igt_kmod: Stop passing debugfs_dir around Lucas De Marchi @ 2024-11-14 14:24 ` Janusz Krzysztofik 2024-11-14 20:58 ` Lucas De Marchi 0 siblings, 1 reply; 19+ messages in thread From: Janusz Krzysztofik @ 2024-11-14 14:24 UTC (permalink / raw) To: Lucas De Marchi, Janusz Krzysztofik; +Cc: igt-dev Hi Lucas, On Thursday, 7 November 2024 06:52:51 CET Lucas De Marchi wrote: > Just open and closes it while getting the list of tests. > > Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> > --- > lib/igt_kmod.c | 27 ++++++++++++--------------- > 1 file changed, 12 insertions(+), 15 deletions(-) > > diff --git a/lib/igt_kmod.c b/lib/igt_kmod.c > index 3729a053c..36578aa68 100644 > --- a/lib/igt_kmod.c > +++ b/lib/igt_kmod.c > @@ -1038,15 +1038,15 @@ static void kunit_get_tests(struct igt_list_head *tests, > const char *suite, > const char *opts, > const char *debugfs_path, > - DIR **debugfs_dir, > struct igt_ktap_results **ktap) > { > struct igt_ktap_result *r, *rn; > struct dirent *subdir; > unsigned long taints; > + DIR *debugfs_dir; > > - *debugfs_dir = opendir(debugfs_path); > - if (igt_debug_on(!*debugfs_dir)) > + debugfs_dir = opendir(debugfs_path); > + if (igt_debug_on(!debugfs_dir)) > return; > > /* > @@ -1057,21 +1057,23 @@ static void kunit_get_tests(struct igt_list_head *tests, > * we already can do perfectly -- seems to be more safe than extracting > * a free text list of unknown length from /dev/kmsg. > */ > - if (igt_debug_on(!kunit_set_filtering(suite, "module=none", "skip"))) > + if (igt_debug_on(!kunit_set_filtering(suite, "module=none", "skip"))) { > + closedir(debugfs_dir); > return; > + } > > if (!suite) { > - seekdir(*debugfs_dir, 2); /* directory itself and its parent */ > + seekdir(debugfs_dir, 2); /* directory itself and its parent */ > errno = 0; > - igt_skip_on_f(readdir(*debugfs_dir) || errno, > + igt_skip_on_f(readdir(debugfs_dir) || errno, > "Require empty KUnit debugfs directory\n"); > - rewinddir(*debugfs_dir); > + rewinddir(debugfs_dir); > } > > igt_skip_on(modprobe(tst->kmod, opts)); > igt_skip_on(igt_kernel_tainted(&taints)); How are we going to avoid leaking the open debugfs_dir descriptor if one of those igt_skips triggers a longjmp? Thanks, Janusz > > - while (subdir = readdir(*debugfs_dir), subdir) { > + while (subdir = readdir(debugfs_dir), subdir) { > if (!(subdir->d_type & DT_DIR)) > continue; > > @@ -1089,8 +1091,7 @@ static void kunit_get_tests(struct igt_list_head *tests, > break; > } > > - closedir(*debugfs_dir); > - *debugfs_dir = NULL; > + closedir(debugfs_dir); > > igt_list_for_each_entry_safe(r, rn, tests, link) > igt_require_f(r->code == IGT_EXIT_SKIP, > @@ -1197,7 +1198,6 @@ void igt_kunit(const char *module_name, const char *suite, const char *opts) > char debugfs_path[PATH_MAX] = { '\0', }; > struct igt_ktest tst = { .kmsg = -1, }; > struct igt_ktap_results *ktap = NULL; > - DIR *debugfs_dir = NULL; > char *subtest; > IGT_LIST_HEAD(tests); > > @@ -1244,7 +1244,7 @@ void igt_kunit(const char *module_name, const char *suite, const char *opts) > */ > igt_subtest_with_dynamic(subtest) { > kunit_get_tests(&tests, &tst, suite, opts, > - debugfs_path, &debugfs_dir, &ktap); > + debugfs_path, &ktap); > __igt_kunit(&tst, subtest, opts, debugfs_path, &tests, &ktap); > } > > @@ -1255,9 +1255,6 @@ void igt_kunit(const char *module_name, const char *suite, const char *opts) > > kunit_results_free(&tests, &suite_name, &case_name); > > - if (debugfs_dir) > - closedir(debugfs_dir); > - > igt_ktest_end(&tst); > } > > ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH i-g-t v3 3/6] lib/igt_kmod: Stop passing debugfs_dir around 2024-11-14 14:24 ` Janusz Krzysztofik @ 2024-11-14 20:58 ` Lucas De Marchi 2024-11-14 21:45 ` Lucas De Marchi 0 siblings, 1 reply; 19+ messages in thread From: Lucas De Marchi @ 2024-11-14 20:58 UTC (permalink / raw) To: Janusz Krzysztofik; +Cc: igt-dev On Thu, Nov 14, 2024 at 03:24:39PM +0100, Janusz Krzysztofik wrote: >Hi Lucas, > >On Thursday, 7 November 2024 06:52:51 CET Lucas De Marchi wrote: >> Just open and closes it while getting the list of tests. >> >> Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> >> --- >> lib/igt_kmod.c | 27 ++++++++++++--------------- >> 1 file changed, 12 insertions(+), 15 deletions(-) >> >> diff --git a/lib/igt_kmod.c b/lib/igt_kmod.c >> index 3729a053c..36578aa68 100644 >> --- a/lib/igt_kmod.c >> +++ b/lib/igt_kmod.c >> @@ -1038,15 +1038,15 @@ static void kunit_get_tests(struct igt_list_head *tests, >> const char *suite, >> const char *opts, >> const char *debugfs_path, >> - DIR **debugfs_dir, >> struct igt_ktap_results **ktap) >> { >> struct igt_ktap_result *r, *rn; >> struct dirent *subdir; >> unsigned long taints; >> + DIR *debugfs_dir; >> >> - *debugfs_dir = opendir(debugfs_path); >> - if (igt_debug_on(!*debugfs_dir)) >> + debugfs_dir = opendir(debugfs_path); >> + if (igt_debug_on(!debugfs_dir)) >> return; >> >> /* >> @@ -1057,21 +1057,23 @@ static void kunit_get_tests(struct igt_list_head *tests, >> * we already can do perfectly -- seems to be more safe than extracting >> * a free text list of unknown length from /dev/kmsg. >> */ >> - if (igt_debug_on(!kunit_set_filtering(suite, "module=none", "skip"))) >> + if (igt_debug_on(!kunit_set_filtering(suite, "module=none", "skip"))) { >> + closedir(debugfs_dir); >> return; >> + } >> >> if (!suite) { >> - seekdir(*debugfs_dir, 2); /* directory itself and its parent */ >> + seekdir(debugfs_dir, 2); /* directory itself and its parent */ >> errno = 0; >> - igt_skip_on_f(readdir(*debugfs_dir) || errno, >> + igt_skip_on_f(readdir(debugfs_dir) || errno, >> "Require empty KUnit debugfs directory\n"); >> - rewinddir(*debugfs_dir); >> + rewinddir(debugfs_dir); >> } >> >> igt_skip_on(modprobe(tst->kmod, opts)); >> igt_skip_on(igt_kernel_tainted(&taints)); > >How are we going to avoid leaking the open debugfs_dir descriptor if one of >those igt_skips triggers a longjmp? ugh, you're right. I hate these longjmp :(. I wish the require/assert would be left to the *tests* and lib code act as lib code :-/ I will drop this. Thanks Lucas De Marchi > >Thanks, >Janusz > >> >> - while (subdir = readdir(*debugfs_dir), subdir) { >> + while (subdir = readdir(debugfs_dir), subdir) { >> if (!(subdir->d_type & DT_DIR)) >> continue; >> >> @@ -1089,8 +1091,7 @@ static void kunit_get_tests(struct igt_list_head *tests, >> break; >> } >> >> - closedir(*debugfs_dir); >> - *debugfs_dir = NULL; >> + closedir(debugfs_dir); >> >> igt_list_for_each_entry_safe(r, rn, tests, link) >> igt_require_f(r->code == IGT_EXIT_SKIP, >> @@ -1197,7 +1198,6 @@ void igt_kunit(const char *module_name, const char *suite, const char *opts) >> char debugfs_path[PATH_MAX] = { '\0', }; >> struct igt_ktest tst = { .kmsg = -1, }; >> struct igt_ktap_results *ktap = NULL; >> - DIR *debugfs_dir = NULL; >> char *subtest; >> IGT_LIST_HEAD(tests); >> >> @@ -1244,7 +1244,7 @@ void igt_kunit(const char *module_name, const char *suite, const char *opts) >> */ >> igt_subtest_with_dynamic(subtest) { >> kunit_get_tests(&tests, &tst, suite, opts, >> - debugfs_path, &debugfs_dir, &ktap); >> + debugfs_path, &ktap); >> __igt_kunit(&tst, subtest, opts, debugfs_path, &tests, &ktap); >> } >> >> @@ -1255,9 +1255,6 @@ void igt_kunit(const char *module_name, const char *suite, const char *opts) >> >> kunit_results_free(&tests, &suite_name, &case_name); >> >> - if (debugfs_dir) >> - closedir(debugfs_dir); >> - >> igt_ktest_end(&tst); >> } >> >> > > > > ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH i-g-t v3 3/6] lib/igt_kmod: Stop passing debugfs_dir around 2024-11-14 20:58 ` Lucas De Marchi @ 2024-11-14 21:45 ` Lucas De Marchi 2024-11-15 14:24 ` Janusz Krzysztofik 0 siblings, 1 reply; 19+ messages in thread From: Lucas De Marchi @ 2024-11-14 21:45 UTC (permalink / raw) To: Janusz Krzysztofik; +Cc: igt-dev On Thu, Nov 14, 2024 at 02:58:49PM -0600, Lucas De Marchi wrote: >On Thu, Nov 14, 2024 at 03:24:39PM +0100, Janusz Krzysztofik wrote: >>Hi Lucas, >> >>On Thursday, 7 November 2024 06:52:51 CET Lucas De Marchi wrote: >>>Just open and closes it while getting the list of tests. >>> >>>Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> >>>--- >>> lib/igt_kmod.c | 27 ++++++++++++--------------- >>> 1 file changed, 12 insertions(+), 15 deletions(-) >>> >>>diff --git a/lib/igt_kmod.c b/lib/igt_kmod.c >>>index 3729a053c..36578aa68 100644 >>>--- a/lib/igt_kmod.c >>>+++ b/lib/igt_kmod.c >>>@@ -1038,15 +1038,15 @@ static void kunit_get_tests(struct igt_list_head *tests, >>> const char *suite, >>> const char *opts, >>> const char *debugfs_path, >>>- DIR **debugfs_dir, >>> struct igt_ktap_results **ktap) >>> { >>> struct igt_ktap_result *r, *rn; >>> struct dirent *subdir; >>> unsigned long taints; >>>+ DIR *debugfs_dir; >>> >>>- *debugfs_dir = opendir(debugfs_path); >>>- if (igt_debug_on(!*debugfs_dir)) >>>+ debugfs_dir = opendir(debugfs_path); >>>+ if (igt_debug_on(!debugfs_dir)) >>> return; >>> >>> /* >>>@@ -1057,21 +1057,23 @@ static void kunit_get_tests(struct igt_list_head *tests, >>> * we already can do perfectly -- seems to be more safe than extracting >>> * a free text list of unknown length from /dev/kmsg. >>> */ >>>- if (igt_debug_on(!kunit_set_filtering(suite, "module=none", "skip"))) >>>+ if (igt_debug_on(!kunit_set_filtering(suite, "module=none", "skip"))) { >>>+ closedir(debugfs_dir); >>> return; >>>+ } >>> >>> if (!suite) { >>>- seekdir(*debugfs_dir, 2); /* directory itself and its parent */ >>>+ seekdir(debugfs_dir, 2); /* directory itself and its parent */ >>> errno = 0; >>>- igt_skip_on_f(readdir(*debugfs_dir) || errno, >>>+ igt_skip_on_f(readdir(debugfs_dir) || errno, >>> "Require empty KUnit debugfs directory\n"); >>>- rewinddir(*debugfs_dir); >>>+ rewinddir(debugfs_dir); >>> } >>> >>> igt_skip_on(modprobe(tst->kmod, opts)); >>> igt_skip_on(igt_kernel_tainted(&taints)); >> >>How are we going to avoid leaking the open debugfs_dir descriptor if one of >>those igt_skips triggers a longjmp? > >ugh, you're right. I hate these longjmp :(. I wish the require/assert >would be left to the *tests* and lib code act as lib code :-/ > >I will drop this. humn.... what do you think about keeping open/close in the fixture and just removing the pointer to pointer? Something like this: diff --git a/lib/igt_kmod.c b/lib/igt_kmod.c index 3729a053c..2b96d2c45 100644 --- a/lib/igt_kmod.c +++ b/lib/igt_kmod.c @@ -1038,17 +1038,13 @@ static void kunit_get_tests(struct igt_list_head *tests, const char *suite, const char *opts, const char *debugfs_path, - DIR **debugfs_dir, + DIR *debugfs_dir, struct igt_ktap_results **ktap) { struct igt_ktap_result *r, *rn; struct dirent *subdir; unsigned long taints; - *debugfs_dir = opendir(debugfs_path); - if (igt_debug_on(!*debugfs_dir)) - return; - /* * To get a list of test cases provided by a kunit test module, ask the * generic kunit module to respond with SKIP result for each test found. @@ -1061,17 +1057,17 @@ static void kunit_get_tests(struct igt_list_head *tests, return; if (!suite) { - seekdir(*debugfs_dir, 2); /* directory itself and its parent */ + seekdir(debugfs_dir, 2); /* directory itself and its parent */ errno = 0; - igt_skip_on_f(readdir(*debugfs_dir) || errno, + igt_skip_on_f(readdir(debugfs_dir) || errno, "Require empty KUnit debugfs directory\n"); - rewinddir(*debugfs_dir); + rewinddir(debugfs_dir); } igt_skip_on(modprobe(tst->kmod, opts)); igt_skip_on(igt_kernel_tainted(&taints)); - while (subdir = readdir(*debugfs_dir), subdir) { + while (subdir = readdir(debugfs_dir), subdir) { if (!(subdir->d_type & DT_DIR)) continue; @@ -1089,9 +1085,6 @@ static void kunit_get_tests(struct igt_list_head *tests, break; } - closedir(*debugfs_dir); - *debugfs_dir = NULL; - igt_list_for_each_entry_safe(r, rn, tests, link) igt_require_f(r->code == IGT_EXIT_SKIP, "Unexpected non-SKIP result while listing test cases\n"); @@ -1232,6 +1225,9 @@ void igt_kunit(const char *module_name, const char *suite, const char *opts) igt_skip_on(igt_ktest_init(&tst, module_name)); igt_skip_on(igt_ktest_begin(&tst)); + debugfs_dir = opendir(debugfs_path); + igt_skip_on(!debugfs_dir); + igt_assert(igt_list_empty(&tests)); } @@ -1244,7 +1240,7 @@ void igt_kunit(const char *module_name, const char *suite, const char *opts) */ igt_subtest_with_dynamic(subtest) { kunit_get_tests(&tests, &tst, suite, opts, - debugfs_path, &debugfs_dir, &ktap); + debugfs_path, debugfs_dir, &ktap); __igt_kunit(&tst, subtest, opts, debugfs_path, &tests, &ktap); } @@ -1255,8 +1251,7 @@ void igt_kunit(const char *module_name, const char *suite, const char *opts) kunit_results_free(&tests, &suite_name, &case_name); - if (debugfs_dir) - closedir(debugfs_dir); + closedir(debugfs_dir); igt_ktest_end(&tst); } > >Thanks >Lucas De Marchi > >> >>Thanks, >>Janusz >> >>> >>>- while (subdir = readdir(*debugfs_dir), subdir) { >>>+ while (subdir = readdir(debugfs_dir), subdir) { >>> if (!(subdir->d_type & DT_DIR)) >>> continue; >>> >>>@@ -1089,8 +1091,7 @@ static void kunit_get_tests(struct igt_list_head *tests, >>> break; >>> } >>> >>>- closedir(*debugfs_dir); >>>- *debugfs_dir = NULL; >>>+ closedir(debugfs_dir); >>> >>> igt_list_for_each_entry_safe(r, rn, tests, link) >>> igt_require_f(r->code == IGT_EXIT_SKIP, >>>@@ -1197,7 +1198,6 @@ void igt_kunit(const char *module_name, const char *suite, const char *opts) >>> char debugfs_path[PATH_MAX] = { '\0', }; >>> struct igt_ktest tst = { .kmsg = -1, }; >>> struct igt_ktap_results *ktap = NULL; >>>- DIR *debugfs_dir = NULL; >>> char *subtest; >>> IGT_LIST_HEAD(tests); >>> >>>@@ -1244,7 +1244,7 @@ void igt_kunit(const char *module_name, const char *suite, const char *opts) >>> */ >>> igt_subtest_with_dynamic(subtest) { >>> kunit_get_tests(&tests, &tst, suite, opts, >>>- debugfs_path, &debugfs_dir, &ktap); >>>+ debugfs_path, &ktap); >>> __igt_kunit(&tst, subtest, opts, debugfs_path, &tests, &ktap); >>> } >>> >>>@@ -1255,9 +1255,6 @@ void igt_kunit(const char *module_name, const char *suite, const char *opts) >>> >>> kunit_results_free(&tests, &suite_name, &case_name); >>> >>>- if (debugfs_dir) >>>- closedir(debugfs_dir); >>>- >>> igt_ktest_end(&tst); >>> } >>> >>> >> >> >> >> ^ permalink raw reply related [flat|nested] 19+ messages in thread
* Re: [PATCH i-g-t v3 3/6] lib/igt_kmod: Stop passing debugfs_dir around 2024-11-14 21:45 ` Lucas De Marchi @ 2024-11-15 14:24 ` Janusz Krzysztofik 0 siblings, 0 replies; 19+ messages in thread From: Janusz Krzysztofik @ 2024-11-15 14:24 UTC (permalink / raw) To: Lucas De Marchi; +Cc: igt-dev, Janusz Krzysztofik Hi Lucas, On Thursday, 14 November 2024 22:45:31 CET Lucas De Marchi wrote: > On Thu, Nov 14, 2024 at 02:58:49PM -0600, Lucas De Marchi wrote: > >On Thu, Nov 14, 2024 at 03:24:39PM +0100, Janusz Krzysztofik wrote: > >>Hi Lucas, > >> > >>On Thursday, 7 November 2024 06:52:51 CET Lucas De Marchi wrote: > >>>Just open and closes it while getting the list of tests. > >>> > >>>Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> > >>>--- > >>> lib/igt_kmod.c | 27 ++++++++++++--------------- > >>> 1 file changed, 12 insertions(+), 15 deletions(-) > >>> > >>>diff --git a/lib/igt_kmod.c b/lib/igt_kmod.c > >>>index 3729a053c..36578aa68 100644 > >>>--- a/lib/igt_kmod.c > >>>+++ b/lib/igt_kmod.c > >>>@@ -1038,15 +1038,15 @@ static void kunit_get_tests(struct igt_list_head *tests, > >>> const char *suite, > >>> const char *opts, > >>> const char *debugfs_path, > >>>- DIR **debugfs_dir, > >>> struct igt_ktap_results **ktap) > >>> { > >>> struct igt_ktap_result *r, *rn; > >>> struct dirent *subdir; > >>> unsigned long taints; > >>>+ DIR *debugfs_dir; > >>> > >>>- *debugfs_dir = opendir(debugfs_path); > >>>- if (igt_debug_on(!*debugfs_dir)) > >>>+ debugfs_dir = opendir(debugfs_path); > >>>+ if (igt_debug_on(!debugfs_dir)) > >>> return; > >>> > >>> /* > >>>@@ -1057,21 +1057,23 @@ static void kunit_get_tests(struct igt_list_head *tests, > >>> * we already can do perfectly -- seems to be more safe than extracting > >>> * a free text list of unknown length from /dev/kmsg. > >>> */ > >>>- if (igt_debug_on(!kunit_set_filtering(suite, "module=none", "skip"))) > >>>+ if (igt_debug_on(!kunit_set_filtering(suite, "module=none", "skip"))) { > >>>+ closedir(debugfs_dir); > >>> return; > >>>+ } > >>> > >>> if (!suite) { > >>>- seekdir(*debugfs_dir, 2); /* directory itself and its parent */ > >>>+ seekdir(debugfs_dir, 2); /* directory itself and its parent */ > >>> errno = 0; > >>>- igt_skip_on_f(readdir(*debugfs_dir) || errno, > >>>+ igt_skip_on_f(readdir(debugfs_dir) || errno, > >>> "Require empty KUnit debugfs directory\n"); > >>>- rewinddir(*debugfs_dir); > >>>+ rewinddir(debugfs_dir); > >>> } > >>> > >>> igt_skip_on(modprobe(tst->kmod, opts)); > >>> igt_skip_on(igt_kernel_tainted(&taints)); > >> > >>How are we going to avoid leaking the open debugfs_dir descriptor if one of > >>those igt_skips triggers a longjmp? > > > >ugh, you're right. I hate these longjmp :(. I wish the require/assert > >would be left to the *tests* and lib code act as lib code :-/ > > > >I will drop this. > > humn.... what do you think about keeping open/close in the fixture and > just removing the pointer to pointer? Something like this: > > > diff --git a/lib/igt_kmod.c b/lib/igt_kmod.c > index 3729a053c..2b96d2c45 100644 > --- a/lib/igt_kmod.c > +++ b/lib/igt_kmod.c > @@ -1038,17 +1038,13 @@ static void kunit_get_tests(struct igt_list_head *tests, > const char *suite, > const char *opts, > const char *debugfs_path, > - DIR **debugfs_dir, > + DIR *debugfs_dir, > struct igt_ktap_results **ktap) > { > struct igt_ktap_result *r, *rn; > struct dirent *subdir; > unsigned long taints; > > - *debugfs_dir = opendir(debugfs_path); > - if (igt_debug_on(!*debugfs_dir)) > - return; > - > /* > * To get a list of test cases provided by a kunit test module, ask the > * generic kunit module to respond with SKIP result for each test found. > @@ -1061,17 +1057,17 @@ static void kunit_get_tests(struct igt_list_head *tests, > return; > > if (!suite) { > - seekdir(*debugfs_dir, 2); /* directory itself and its parent */ > + seekdir(debugfs_dir, 2); /* directory itself and its parent */ > errno = 0; > - igt_skip_on_f(readdir(*debugfs_dir) || errno, > + igt_skip_on_f(readdir(debugfs_dir) || errno, > "Require empty KUnit debugfs directory\n"); > - rewinddir(*debugfs_dir); > + rewinddir(debugfs_dir); > } > > igt_skip_on(modprobe(tst->kmod, opts)); > igt_skip_on(igt_kernel_tainted(&taints)); > > - while (subdir = readdir(*debugfs_dir), subdir) { > + while (subdir = readdir(debugfs_dir), subdir) { > if (!(subdir->d_type & DT_DIR)) > continue; > > @@ -1089,9 +1085,6 @@ static void kunit_get_tests(struct igt_list_head *tests, > break; > } > > - closedir(*debugfs_dir); > - *debugfs_dir = NULL; > - > igt_list_for_each_entry_safe(r, rn, tests, link) > igt_require_f(r->code == IGT_EXIT_SKIP, > "Unexpected non-SKIP result while listing test cases\n"); > @@ -1232,6 +1225,9 @@ void igt_kunit(const char *module_name, const char *suite, const char *opts) > igt_skip_on(igt_ktest_init(&tst, module_name)); > igt_skip_on(igt_ktest_begin(&tst)); > > + debugfs_dir = opendir(debugfs_path); > + igt_skip_on(!debugfs_dir); > + > igt_assert(igt_list_empty(&tests)); The idea looks good, but, while this should never happen in practice, there is an imaginary risk of the closing igt_fixture section, from where you are going to close debugfs_dir, not executed should this igt_assert() happen to fail. I would drop this igt_assert(), or move it to the top of the igt_fixture section. Thanks, Janusz > } > > @@ -1244,7 +1240,7 @@ void igt_kunit(const char *module_name, const char *suite, const char *opts) > */ > igt_subtest_with_dynamic(subtest) { > kunit_get_tests(&tests, &tst, suite, opts, > - debugfs_path, &debugfs_dir, &ktap); > + debugfs_path, debugfs_dir, &ktap); > __igt_kunit(&tst, subtest, opts, debugfs_path, &tests, &ktap); > } > > @@ -1255,8 +1251,7 @@ void igt_kunit(const char *module_name, const char *suite, const char *opts) > > kunit_results_free(&tests, &suite_name, &case_name); > > - if (debugfs_dir) > - closedir(debugfs_dir); > + closedir(debugfs_dir); > > igt_ktest_end(&tst); > } > > > > > > >Thanks > >Lucas De Marchi > > > >> > >>Thanks, > >>Janusz > >> > >>> > >>>- while (subdir = readdir(*debugfs_dir), subdir) { > >>>+ while (subdir = readdir(debugfs_dir), subdir) { > >>> if (!(subdir->d_type & DT_DIR)) > >>> continue; > >>> > >>>@@ -1089,8 +1091,7 @@ static void kunit_get_tests(struct igt_list_head *tests, > >>> break; > >>> } > >>> > >>>- closedir(*debugfs_dir); > >>>- *debugfs_dir = NULL; > >>>+ closedir(debugfs_dir); > >>> > >>> igt_list_for_each_entry_safe(r, rn, tests, link) > >>> igt_require_f(r->code == IGT_EXIT_SKIP, > >>>@@ -1197,7 +1198,6 @@ void igt_kunit(const char *module_name, const char *suite, const char *opts) > >>> char debugfs_path[PATH_MAX] = { '\0', }; > >>> struct igt_ktest tst = { .kmsg = -1, }; > >>> struct igt_ktap_results *ktap = NULL; > >>>- DIR *debugfs_dir = NULL; > >>> char *subtest; > >>> IGT_LIST_HEAD(tests); > >>> > >>>@@ -1244,7 +1244,7 @@ void igt_kunit(const char *module_name, const char *suite, const char *opts) > >>> */ > >>> igt_subtest_with_dynamic(subtest) { > >>> kunit_get_tests(&tests, &tst, suite, opts, > >>>- debugfs_path, &debugfs_dir, &ktap); > >>>+ debugfs_path, &ktap); > >>> __igt_kunit(&tst, subtest, opts, debugfs_path, &tests, &ktap); > >>> } > >>> > >>>@@ -1255,9 +1255,6 @@ void igt_kunit(const char *module_name, const char *suite, const char *opts) > >>> > >>> kunit_results_free(&tests, &suite_name, &case_name); > >>> > >>>- if (debugfs_dir) > >>>- closedir(debugfs_dir); > >>>- > >>> igt_ktest_end(&tst); > >>> } > >>> > >>> > >> > >> > >> > >> > ^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH i-g-t v3 4/6] lib/igt_kmod: Stop passing ktap around 2024-11-07 5:52 [PATCH i-g-t v3 0/6] lib/igt_kmod: Drop legacy kunit integration Lucas De Marchi ` (2 preceding siblings ...) 2024-11-07 5:52 ` [PATCH i-g-t v3 3/6] lib/igt_kmod: Stop passing debugfs_dir around Lucas De Marchi @ 2024-11-07 5:52 ` Lucas De Marchi 2024-11-14 15:00 ` Janusz Krzysztofik 2024-11-07 5:52 ` [PATCH i-g-t v3 5/6] lib/igt_ktap: Just free ktap Lucas De Marchi ` (6 subsequent siblings) 10 siblings, 1 reply; 19+ messages in thread From: Lucas De Marchi @ 2024-11-07 5:52 UTC (permalink / raw) To: igt-dev; +Cc: Janusz Krzysztofik, Lucas De Marchi Just allocate and free in the only function it's needed. Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> --- lib/igt_kmod.c | 29 ++++++++++++----------------- 1 file changed, 12 insertions(+), 17 deletions(-) diff --git a/lib/igt_kmod.c b/lib/igt_kmod.c index 36578aa68..fd79e8739 100644 --- a/lib/igt_kmod.c +++ b/lib/igt_kmod.c @@ -995,8 +995,9 @@ static void kunit_results_free(struct igt_list_head *results, } static int kunit_get_results(struct igt_list_head *results, const char *debugfs_path, - const char *suite, struct igt_ktap_results **ktap) + const char *suite) { + struct igt_ktap_results *ktap; char results_path[PATH_MAX]; FILE *results_stream; char *buf = NULL; @@ -1012,21 +1013,21 @@ static int kunit_get_results(struct igt_list_head *results, const char *debugfs_ if (igt_debug_on(!results_stream)) return -errno; - *ktap = igt_ktap_alloc(results); - if (igt_debug_on(!*ktap)) { + ktap = igt_ktap_alloc(results); + if (igt_debug_on(!ktap)) { err = -ENOMEM; goto out_fclose; } while (len = getline(&buf, &size, results_stream), len > 0) { - err = igt_ktap_parse(buf, *ktap); + err = igt_ktap_parse(buf, ktap); if (err != -EINPROGRESS) break; } free(buf); + igt_ktap_free(&ktap); - igt_ktap_free(ktap); out_fclose: fclose(results_stream); @@ -1037,8 +1038,7 @@ static void kunit_get_tests(struct igt_list_head *tests, struct igt_ktest *tst, const char *suite, const char *opts, - const char *debugfs_path, - struct igt_ktap_results **ktap) + const char *debugfs_path) { struct igt_ktap_result *r, *rn; struct dirent *subdir; @@ -1083,7 +1083,7 @@ static void kunit_get_tests(struct igt_list_head *tests, if (suite && strcmp(subdir->d_name, suite)) continue; - igt_warn_on_f(kunit_get_results(tests, debugfs_path, subdir->d_name, ktap), + igt_warn_on_f(kunit_get_results(tests, debugfs_path, subdir->d_name), "parsing KTAP report from test suite \"%s\" failed\n", subdir->d_name); @@ -1102,8 +1102,7 @@ static void __igt_kunit(struct igt_ktest *tst, const char *subtest, const char *opts, const char *debugfs_path, - struct igt_list_head *tests, - struct igt_ktap_results **ktap) + struct igt_list_head *tests) { struct igt_ktap_result *t; @@ -1133,7 +1132,7 @@ static void __igt_kunit(struct igt_ktest *tst, igt_assert_eq(igt_kernel_tainted(&taints), 0); igt_assert_eq(kunit_get_results(&results, debugfs_path, - t->suite_name, ktap), 0); + t->suite_name), 0); for (i = 0; i < 2; i++) { kunit_result_free(&r, &suite_name, &case_name); @@ -1197,7 +1196,6 @@ void igt_kunit(const char *module_name, const char *suite, const char *opts) { char debugfs_path[PATH_MAX] = { '\0', }; struct igt_ktest tst = { .kmsg = -1, }; - struct igt_ktap_results *ktap = NULL; char *subtest; IGT_LIST_HEAD(tests); @@ -1243,16 +1241,13 @@ void igt_kunit(const char *module_name, const char *suite, const char *opts) * and for documentation. */ igt_subtest_with_dynamic(subtest) { - kunit_get_tests(&tests, &tst, suite, opts, - debugfs_path, &ktap); - __igt_kunit(&tst, subtest, opts, debugfs_path, &tests, &ktap); + kunit_get_tests(&tests, &tst, suite, opts, debugfs_path); + __igt_kunit(&tst, subtest, opts, debugfs_path, &tests); } igt_fixture { char *suite_name = NULL, *case_name = NULL; - igt_ktap_free(&ktap); - kunit_results_free(&tests, &suite_name, &case_name); igt_ktest_end(&tst); -- 2.47.0 ^ permalink raw reply related [flat|nested] 19+ messages in thread
* Re: [PATCH i-g-t v3 4/6] lib/igt_kmod: Stop passing ktap around 2024-11-07 5:52 ` [PATCH i-g-t v3 4/6] lib/igt_kmod: Stop passing ktap around Lucas De Marchi @ 2024-11-14 15:00 ` Janusz Krzysztofik 0 siblings, 0 replies; 19+ messages in thread From: Janusz Krzysztofik @ 2024-11-14 15:00 UTC (permalink / raw) To: igt-dev, Lucas De Marchi; +Cc: Lucas De Marchi On Thursday, 7 November 2024 06:52:52 CET Lucas De Marchi wrote: > Just allocate and free in the only function it's needed. > > Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> Looks safe. Reviewed-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com> > --- > lib/igt_kmod.c | 29 ++++++++++++----------------- > 1 file changed, 12 insertions(+), 17 deletions(-) > > diff --git a/lib/igt_kmod.c b/lib/igt_kmod.c > index 36578aa68..fd79e8739 100644 > --- a/lib/igt_kmod.c > +++ b/lib/igt_kmod.c > @@ -995,8 +995,9 @@ static void kunit_results_free(struct igt_list_head *results, > } > > static int kunit_get_results(struct igt_list_head *results, const char *debugfs_path, > - const char *suite, struct igt_ktap_results **ktap) > + const char *suite) > { > + struct igt_ktap_results *ktap; > char results_path[PATH_MAX]; > FILE *results_stream; > char *buf = NULL; > @@ -1012,21 +1013,21 @@ static int kunit_get_results(struct igt_list_head *results, const char *debugfs_ > if (igt_debug_on(!results_stream)) > return -errno; > > - *ktap = igt_ktap_alloc(results); > - if (igt_debug_on(!*ktap)) { > + ktap = igt_ktap_alloc(results); > + if (igt_debug_on(!ktap)) { > err = -ENOMEM; > goto out_fclose; > } > > while (len = getline(&buf, &size, results_stream), len > 0) { > - err = igt_ktap_parse(buf, *ktap); > + err = igt_ktap_parse(buf, ktap); > if (err != -EINPROGRESS) > break; > } > > free(buf); > + igt_ktap_free(&ktap); > > - igt_ktap_free(ktap); > out_fclose: > fclose(results_stream); > > @@ -1037,8 +1038,7 @@ static void kunit_get_tests(struct igt_list_head *tests, > struct igt_ktest *tst, > const char *suite, > const char *opts, > - const char *debugfs_path, > - struct igt_ktap_results **ktap) > + const char *debugfs_path) > { > struct igt_ktap_result *r, *rn; > struct dirent *subdir; > @@ -1083,7 +1083,7 @@ static void kunit_get_tests(struct igt_list_head *tests, > if (suite && strcmp(subdir->d_name, suite)) > continue; > > - igt_warn_on_f(kunit_get_results(tests, debugfs_path, subdir->d_name, ktap), > + igt_warn_on_f(kunit_get_results(tests, debugfs_path, subdir->d_name), > "parsing KTAP report from test suite \"%s\" failed\n", > subdir->d_name); > > @@ -1102,8 +1102,7 @@ static void __igt_kunit(struct igt_ktest *tst, > const char *subtest, > const char *opts, > const char *debugfs_path, > - struct igt_list_head *tests, > - struct igt_ktap_results **ktap) > + struct igt_list_head *tests) > { > struct igt_ktap_result *t; > > @@ -1133,7 +1132,7 @@ static void __igt_kunit(struct igt_ktest *tst, > igt_assert_eq(igt_kernel_tainted(&taints), 0); > > igt_assert_eq(kunit_get_results(&results, debugfs_path, > - t->suite_name, ktap), 0); > + t->suite_name), 0); > > for (i = 0; i < 2; i++) { > kunit_result_free(&r, &suite_name, &case_name); > @@ -1197,7 +1196,6 @@ void igt_kunit(const char *module_name, const char *suite, const char *opts) > { > char debugfs_path[PATH_MAX] = { '\0', }; > struct igt_ktest tst = { .kmsg = -1, }; > - struct igt_ktap_results *ktap = NULL; > char *subtest; > IGT_LIST_HEAD(tests); > > @@ -1243,16 +1241,13 @@ void igt_kunit(const char *module_name, const char *suite, const char *opts) > * and for documentation. > */ > igt_subtest_with_dynamic(subtest) { > - kunit_get_tests(&tests, &tst, suite, opts, > - debugfs_path, &ktap); > - __igt_kunit(&tst, subtest, opts, debugfs_path, &tests, &ktap); > + kunit_get_tests(&tests, &tst, suite, opts, debugfs_path); > + __igt_kunit(&tst, subtest, opts, debugfs_path, &tests); > } > > igt_fixture { > char *suite_name = NULL, *case_name = NULL; > > - igt_ktap_free(&ktap); > - > kunit_results_free(&tests, &suite_name, &case_name); > > igt_ktest_end(&tst); > ^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH i-g-t v3 5/6] lib/igt_ktap: Just free ktap 2024-11-07 5:52 [PATCH i-g-t v3 0/6] lib/igt_kmod: Drop legacy kunit integration Lucas De Marchi ` (3 preceding siblings ...) 2024-11-07 5:52 ` [PATCH i-g-t v3 4/6] lib/igt_kmod: Stop passing ktap around Lucas De Marchi @ 2024-11-07 5:52 ` Lucas De Marchi 2024-11-14 15:02 ` Janusz Krzysztofik 2024-11-07 5:52 ` [PATCH i-g-t v3 6/6] lib/igt_kmod: Do not leak kmod ctx Lucas De Marchi ` (5 subsequent siblings) 10 siblings, 1 reply; 19+ messages in thread From: Lucas De Marchi @ 2024-11-07 5:52 UTC (permalink / raw) To: igt-dev; +Cc: Janusz Krzysztofik, Lucas De Marchi Change function signature so it only set the pointer free rather than also setting it to NULL. This matches alloc/free behavior for other objects in igt. Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> --- lib/igt_kmod.c | 2 +- lib/igt_ktap.c | 5 ++--- lib/igt_ktap.h | 2 +- lib/tests/igt_ktap_parser.c | 24 ++++++++++++------------ 4 files changed, 16 insertions(+), 17 deletions(-) diff --git a/lib/igt_kmod.c b/lib/igt_kmod.c index fd79e8739..7be95a61c 100644 --- a/lib/igt_kmod.c +++ b/lib/igt_kmod.c @@ -1026,7 +1026,7 @@ static int kunit_get_results(struct igt_list_head *results, const char *debugfs_ } free(buf); - igt_ktap_free(&ktap); + igt_ktap_free(ktap); out_fclose: fclose(results_stream); diff --git a/lib/igt_ktap.c b/lib/igt_ktap.c index 300fb2bb5..aa7ea8447 100644 --- a/lib/igt_ktap.c +++ b/lib/igt_ktap.c @@ -310,8 +310,7 @@ struct igt_ktap_results *igt_ktap_alloc(struct igt_list_head *results) return ktap; } -void igt_ktap_free(struct igt_ktap_results **ktap) +void igt_ktap_free(struct igt_ktap_results *ktap) { - free(*ktap); - *ktap = NULL; + free(ktap); } diff --git a/lib/igt_ktap.h b/lib/igt_ktap.h index 7684e859b..c422636bf 100644 --- a/lib/igt_ktap.h +++ b/lib/igt_ktap.h @@ -41,6 +41,6 @@ struct igt_ktap_results; struct igt_ktap_results *igt_ktap_alloc(struct igt_list_head *results); int igt_ktap_parse(const char *buf, struct igt_ktap_results *ktap); -void igt_ktap_free(struct igt_ktap_results **ktap); +void igt_ktap_free(struct igt_ktap_results *ktap); #endif /* IGT_KTAP_H */ diff --git a/lib/tests/igt_ktap_parser.c b/lib/tests/igt_ktap_parser.c index 8c2d16080..6357bdf6a 100644 --- a/lib/tests/igt_ktap_parser.c +++ b/lib/tests/igt_ktap_parser.c @@ -45,7 +45,7 @@ static void ktap_list(void) igt_assert_eq(igt_ktap_parse(" ok 4 test_case_4 # SKIP\n", ktap), -EINPROGRESS); igt_assert_eq(igt_ktap_parse("ok 3 test_suite_3\n", ktap), 0); - igt_ktap_free(&ktap); + igt_ktap_free(ktap); igt_assert_eq(igt_list_length(&results), 8); @@ -107,7 +107,7 @@ static void ktap_results(void) igt_assert_eq(igt_ktap_parse(" ok 1 test_case\n", ktap), -EINPROGRESS); igt_assert_eq(igt_ktap_parse("not ok 1 test_suite\n", ktap), 0); - igt_ktap_free(&ktap); + igt_ktap_free(ktap); igt_assert_eq(igt_list_length(&results), 2); @@ -162,7 +162,7 @@ static void ktap_success(void) igt_assert_eq(igt_ktap_parse("not ok 1 test_suite\n", ktap), 0); igt_assert_eq(igt_list_length(&results), 2); - igt_ktap_free(&ktap); + igt_ktap_free(ktap); result = igt_list_last_entry(&results, result, link); igt_list_del(&result->link); @@ -186,48 +186,48 @@ static void ktap_top_version(void) ktap = igt_ktap_alloc(&results); igt_require(ktap); igt_assert_eq(igt_ktap_parse("1..1\n", ktap), -EPROTO); - igt_ktap_free(&ktap); + igt_ktap_free(ktap); ktap = igt_ktap_alloc(&results); igt_require(ktap); /* TODO: change to -EPROTO as soon as related workaround is dropped */ igt_assert_eq(igt_ktap_parse(" KTAP version 1\n", ktap), -EINPROGRESS); - igt_ktap_free(&ktap); + igt_ktap_free(ktap); ktap = igt_ktap_alloc(&results); igt_require(ktap); igt_assert_eq(igt_ktap_parse(" # Subtest: test_suite\n", ktap), -EPROTO); - igt_ktap_free(&ktap); + igt_ktap_free(ktap); ktap = igt_ktap_alloc(&results); igt_require(ktap); igt_assert_eq(igt_ktap_parse(" 1..1\n", ktap), -EPROTO); - igt_ktap_free(&ktap); + igt_ktap_free(ktap); ktap = igt_ktap_alloc(&results); igt_require(ktap); igt_assert_eq(igt_ktap_parse(" KTAP version 1\n", ktap), -EPROTO); - igt_ktap_free(&ktap); + igt_ktap_free(ktap); ktap = igt_ktap_alloc(&results); igt_require(ktap); igt_assert_eq(igt_ktap_parse(" # Subtest: test_case\n", ktap), -EPROTO); - igt_ktap_free(&ktap); + igt_ktap_free(ktap); ktap = igt_ktap_alloc(&results); igt_require(ktap); igt_assert_eq(igt_ktap_parse(" ok 1 parameter 1\n", ktap), -EPROTO); - igt_ktap_free(&ktap); + igt_ktap_free(ktap); ktap = igt_ktap_alloc(&results); igt_require(ktap); igt_assert_eq(igt_ktap_parse(" ok 1 test_case\n", ktap), -EPROTO); - igt_ktap_free(&ktap); + igt_ktap_free(ktap); ktap = igt_ktap_alloc(&results); igt_require(ktap); igt_assert_eq(igt_ktap_parse("ok 1 test_suite\n", ktap), -EPROTO); - igt_ktap_free(&ktap); + igt_ktap_free(ktap); } igt_main -- 2.47.0 ^ permalink raw reply related [flat|nested] 19+ messages in thread
* Re: [PATCH i-g-t v3 5/6] lib/igt_ktap: Just free ktap 2024-11-07 5:52 ` [PATCH i-g-t v3 5/6] lib/igt_ktap: Just free ktap Lucas De Marchi @ 2024-11-14 15:02 ` Janusz Krzysztofik 0 siblings, 0 replies; 19+ messages in thread From: Janusz Krzysztofik @ 2024-11-14 15:02 UTC (permalink / raw) To: igt-dev, Lucas De Marchi; +Cc: Lucas De Marchi On Thursday, 7 November 2024 06:52:53 CET Lucas De Marchi wrote: > Change function signature so it only set the pointer free rather than > also setting it to NULL. This matches alloc/free behavior for other > objects in igt. > > Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> Reviewed-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com> > --- > lib/igt_kmod.c | 2 +- > lib/igt_ktap.c | 5 ++--- > lib/igt_ktap.h | 2 +- > lib/tests/igt_ktap_parser.c | 24 ++++++++++++------------ > 4 files changed, 16 insertions(+), 17 deletions(-) > > diff --git a/lib/igt_kmod.c b/lib/igt_kmod.c > index fd79e8739..7be95a61c 100644 > --- a/lib/igt_kmod.c > +++ b/lib/igt_kmod.c > @@ -1026,7 +1026,7 @@ static int kunit_get_results(struct igt_list_head *results, const char *debugfs_ > } > > free(buf); > - igt_ktap_free(&ktap); > + igt_ktap_free(ktap); > > out_fclose: > fclose(results_stream); > diff --git a/lib/igt_ktap.c b/lib/igt_ktap.c > index 300fb2bb5..aa7ea8447 100644 > --- a/lib/igt_ktap.c > +++ b/lib/igt_ktap.c > @@ -310,8 +310,7 @@ struct igt_ktap_results *igt_ktap_alloc(struct igt_list_head *results) > return ktap; > } > > -void igt_ktap_free(struct igt_ktap_results **ktap) > +void igt_ktap_free(struct igt_ktap_results *ktap) > { > - free(*ktap); > - *ktap = NULL; > + free(ktap); > } > diff --git a/lib/igt_ktap.h b/lib/igt_ktap.h > index 7684e859b..c422636bf 100644 > --- a/lib/igt_ktap.h > +++ b/lib/igt_ktap.h > @@ -41,6 +41,6 @@ struct igt_ktap_results; > > struct igt_ktap_results *igt_ktap_alloc(struct igt_list_head *results); > int igt_ktap_parse(const char *buf, struct igt_ktap_results *ktap); > -void igt_ktap_free(struct igt_ktap_results **ktap); > +void igt_ktap_free(struct igt_ktap_results *ktap); > > #endif /* IGT_KTAP_H */ > diff --git a/lib/tests/igt_ktap_parser.c b/lib/tests/igt_ktap_parser.c > index 8c2d16080..6357bdf6a 100644 > --- a/lib/tests/igt_ktap_parser.c > +++ b/lib/tests/igt_ktap_parser.c > @@ -45,7 +45,7 @@ static void ktap_list(void) > igt_assert_eq(igt_ktap_parse(" ok 4 test_case_4 # SKIP\n", ktap), -EINPROGRESS); > igt_assert_eq(igt_ktap_parse("ok 3 test_suite_3\n", ktap), 0); > > - igt_ktap_free(&ktap); > + igt_ktap_free(ktap); > > igt_assert_eq(igt_list_length(&results), 8); > > @@ -107,7 +107,7 @@ static void ktap_results(void) > igt_assert_eq(igt_ktap_parse(" ok 1 test_case\n", ktap), -EINPROGRESS); > igt_assert_eq(igt_ktap_parse("not ok 1 test_suite\n", ktap), 0); > > - igt_ktap_free(&ktap); > + igt_ktap_free(ktap); > > igt_assert_eq(igt_list_length(&results), 2); > > @@ -162,7 +162,7 @@ static void ktap_success(void) > igt_assert_eq(igt_ktap_parse("not ok 1 test_suite\n", ktap), 0); > igt_assert_eq(igt_list_length(&results), 2); > > - igt_ktap_free(&ktap); > + igt_ktap_free(ktap); > > result = igt_list_last_entry(&results, result, link); > igt_list_del(&result->link); > @@ -186,48 +186,48 @@ static void ktap_top_version(void) > ktap = igt_ktap_alloc(&results); > igt_require(ktap); > igt_assert_eq(igt_ktap_parse("1..1\n", ktap), -EPROTO); > - igt_ktap_free(&ktap); > + igt_ktap_free(ktap); > > ktap = igt_ktap_alloc(&results); > igt_require(ktap); > /* TODO: change to -EPROTO as soon as related workaround is dropped */ > igt_assert_eq(igt_ktap_parse(" KTAP version 1\n", ktap), -EINPROGRESS); > - igt_ktap_free(&ktap); > + igt_ktap_free(ktap); > > ktap = igt_ktap_alloc(&results); > igt_require(ktap); > igt_assert_eq(igt_ktap_parse(" # Subtest: test_suite\n", ktap), -EPROTO); > - igt_ktap_free(&ktap); > + igt_ktap_free(ktap); > > ktap = igt_ktap_alloc(&results); > igt_require(ktap); > igt_assert_eq(igt_ktap_parse(" 1..1\n", ktap), -EPROTO); > - igt_ktap_free(&ktap); > + igt_ktap_free(ktap); > > ktap = igt_ktap_alloc(&results); > igt_require(ktap); > igt_assert_eq(igt_ktap_parse(" KTAP version 1\n", ktap), -EPROTO); > - igt_ktap_free(&ktap); > + igt_ktap_free(ktap); > > ktap = igt_ktap_alloc(&results); > igt_require(ktap); > igt_assert_eq(igt_ktap_parse(" # Subtest: test_case\n", ktap), -EPROTO); > - igt_ktap_free(&ktap); > + igt_ktap_free(ktap); > > ktap = igt_ktap_alloc(&results); > igt_require(ktap); > igt_assert_eq(igt_ktap_parse(" ok 1 parameter 1\n", ktap), -EPROTO); > - igt_ktap_free(&ktap); > + igt_ktap_free(ktap); > > ktap = igt_ktap_alloc(&results); > igt_require(ktap); > igt_assert_eq(igt_ktap_parse(" ok 1 test_case\n", ktap), -EPROTO); > - igt_ktap_free(&ktap); > + igt_ktap_free(ktap); > > ktap = igt_ktap_alloc(&results); > igt_require(ktap); > igt_assert_eq(igt_ktap_parse("ok 1 test_suite\n", ktap), -EPROTO); > - igt_ktap_free(&ktap); > + igt_ktap_free(ktap); > } > > igt_main > ^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH i-g-t v3 6/6] lib/igt_kmod: Do not leak kmod ctx 2024-11-07 5:52 [PATCH i-g-t v3 0/6] lib/igt_kmod: Drop legacy kunit integration Lucas De Marchi ` (4 preceding siblings ...) 2024-11-07 5:52 ` [PATCH i-g-t v3 5/6] lib/igt_ktap: Just free ktap Lucas De Marchi @ 2024-11-07 5:52 ` Lucas De Marchi 2024-11-14 17:06 ` Janusz Krzysztofik 2024-11-07 6:22 ` ✓ CI.xeBAT: success for lib/igt_kmod: Drop legacy kunit integration (rev3) Patchwork ` (4 subsequent siblings) 10 siblings, 1 reply; 19+ messages in thread From: Lucas De Marchi @ 2024-11-07 5:52 UTC (permalink / raw) To: igt-dev; +Cc: Janusz Krzysztofik, Lucas De Marchi kmod_ctx() is used as a cheap way to cache the kmod ctx. Make sure it's released when the process exit by using igt_install_exit_handler(), which also guarantees children forked with igt_fork* don't free it on exit. Normal forks are still susceptible to breakage, but if it that happens, let it break so we can fix. Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> --- lib/igt_kmod.c | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/lib/igt_kmod.c b/lib/igt_kmod.c index 7be95a61c..89736ae59 100644 --- a/lib/igt_kmod.c +++ b/lib/igt_kmod.c @@ -71,14 +71,20 @@ static void squelch(void *data, int priority, { } +static struct kmod_ctx *ctx__; + +static void free_kmod_ctx(int sig) +{ + kmod_unref(ctx__); +} + static struct kmod_ctx *kmod_ctx(void) { - static struct kmod_ctx *ctx; const char **config_paths = NULL; char *config_paths_str; char *dirname; - if (ctx) + if (ctx__) goto out; dirname = getenv("IGT_KMOD_DIRNAME"); @@ -112,14 +118,16 @@ static struct kmod_ctx *kmod_ctx(void) config_paths[i] = NULL; } - ctx = kmod_new(dirname, config_paths); - igt_assert(ctx != NULL); + ctx__ = kmod_new(dirname, config_paths); + igt_assert(ctx__ != NULL); free(config_paths); + igt_install_exit_handler(free_kmod_ctx); + + kmod_set_log_fn(ctx__, squelch, NULL); - kmod_set_log_fn(ctx, squelch, NULL); out: - return ctx; + return ctx__; } /** -- 2.47.0 ^ permalink raw reply related [flat|nested] 19+ messages in thread
* Re: [PATCH i-g-t v3 6/6] lib/igt_kmod: Do not leak kmod ctx 2024-11-07 5:52 ` [PATCH i-g-t v3 6/6] lib/igt_kmod: Do not leak kmod ctx Lucas De Marchi @ 2024-11-14 17:06 ` Janusz Krzysztofik 0 siblings, 0 replies; 19+ messages in thread From: Janusz Krzysztofik @ 2024-11-14 17:06 UTC (permalink / raw) To: igt-dev, Lucas De Marchi; +Cc: Lucas De Marchi Hi Lucas, On Thursday, 7 November 2024 06:52:54 CET Lucas De Marchi wrote: > kmod_ctx() is used as a cheap way to cache the kmod ctx. Make sure it's > released when the process exit by using igt_install_exit_handler(), > which also guarantees children forked with igt_fork* don't free it on > exit. Normal forks are still susceptible to breakage, but if it that > happens, let it break so we can fix. > > Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> LGTM. Reviewed-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com> > --- > lib/igt_kmod.c | 20 ++++++++++++++------ > 1 file changed, 14 insertions(+), 6 deletions(-) > > diff --git a/lib/igt_kmod.c b/lib/igt_kmod.c > index 7be95a61c..89736ae59 100644 > --- a/lib/igt_kmod.c > +++ b/lib/igt_kmod.c > @@ -71,14 +71,20 @@ static void squelch(void *data, int priority, > { > } > > +static struct kmod_ctx *ctx__; > + > +static void free_kmod_ctx(int sig) > +{ > + kmod_unref(ctx__); > +} > + > static struct kmod_ctx *kmod_ctx(void) > { > - static struct kmod_ctx *ctx; > const char **config_paths = NULL; > char *config_paths_str; > char *dirname; > > - if (ctx) > + if (ctx__) > goto out; > > dirname = getenv("IGT_KMOD_DIRNAME"); > @@ -112,14 +118,16 @@ static struct kmod_ctx *kmod_ctx(void) > config_paths[i] = NULL; > } > > - ctx = kmod_new(dirname, config_paths); > - igt_assert(ctx != NULL); > + ctx__ = kmod_new(dirname, config_paths); > + igt_assert(ctx__ != NULL); > > free(config_paths); > + igt_install_exit_handler(free_kmod_ctx); > + > + kmod_set_log_fn(ctx__, squelch, NULL); > > - kmod_set_log_fn(ctx, squelch, NULL); > out: > - return ctx; > + return ctx__; > } > > /** > ^ permalink raw reply [flat|nested] 19+ messages in thread
* ✓ CI.xeBAT: success for lib/igt_kmod: Drop legacy kunit integration (rev3) 2024-11-07 5:52 [PATCH i-g-t v3 0/6] lib/igt_kmod: Drop legacy kunit integration Lucas De Marchi ` (5 preceding siblings ...) 2024-11-07 5:52 ` [PATCH i-g-t v3 6/6] lib/igt_kmod: Do not leak kmod ctx Lucas De Marchi @ 2024-11-07 6:22 ` Patchwork 2024-11-07 6:27 ` ✓ Fi.CI.BAT: " Patchwork ` (3 subsequent siblings) 10 siblings, 0 replies; 19+ messages in thread From: Patchwork @ 2024-11-07 6:22 UTC (permalink / raw) To: Lucas De Marchi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4390 bytes --] == Series Details == Series: lib/igt_kmod: Drop legacy kunit integration (rev3) URL : https://patchwork.freedesktop.org/series/140746/ State : success == Summary == CI Bug Log - changes from XEIGT_8100_BAT -> XEIGTPW_12056_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12056_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@xe_evict@evict-beng-small: - bat-adlp-7: NOTRUN -> [SKIP][1] ([Intel XE#261] / [Intel XE#688]) +15 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/bat-adlp-7/igt@xe_evict@evict-beng-small.html * igt@xe_exec_fault_mode@twice-bindexecqueue-userptr: - bat-dg2-oem2: NOTRUN -> [SKIP][2] ([Intel XE#288]) +32 other tests skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/bat-dg2-oem2/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr.html * igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch: - bat-adlp-7: NOTRUN -> [SKIP][3] ([Intel XE#288]) +32 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/bat-adlp-7/igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - bat-dg2-oem2: NOTRUN -> [SKIP][4] ([Intel XE#2229]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/bat-dg2-oem2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html - bat-adlp-7: NOTRUN -> [SKIP][5] ([Intel XE#2229]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/bat-adlp-7/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html #### Possible fixes #### * igt@kms_frontbuffer_tracking@basic: - bat-adlp-7: [FAIL][6] ([Intel XE#1861]) -> [PASS][7] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - bat-bmg-1: [INCOMPLETE][8] ([Intel XE#2874] / [Intel XE#2998]) -> [PASS][9] +1 other test pass [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/bat-bmg-1/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/bat-bmg-1/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html - bat-adlp-7: [INCOMPLETE][10] ([Intel XE#2874]) -> [PASS][11] +1 other test pass [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html - bat-dg2-oem2: [INCOMPLETE][12] ([Intel XE#2874]) -> [PASS][13] +1 other test pass [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261 [Intel XE#2874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2874 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2998]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2998 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 Build changes ------------- * IGT: IGT_8100 -> IGTPW_12056 * Linux: xe-2179-438ef86a725b59a171dba81fc258bb23a0ff536c -> xe-2180-5ce87c5ad2cbfd2b89a0347e4e4f75de2762b7a3 IGTPW_12056: 12056 IGT_8100: 84e42580f918da926481fd2fb37be01451d6ee9a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2179-438ef86a725b59a171dba81fc258bb23a0ff536c: 438ef86a725b59a171dba81fc258bb23a0ff536c xe-2180-5ce87c5ad2cbfd2b89a0347e4e4f75de2762b7a3: 5ce87c5ad2cbfd2b89a0347e4e4f75de2762b7a3 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/index.html [-- Attachment #2: Type: text/html, Size: 5388 bytes --] ^ permalink raw reply [flat|nested] 19+ messages in thread
* ✓ Fi.CI.BAT: success for lib/igt_kmod: Drop legacy kunit integration (rev3) 2024-11-07 5:52 [PATCH i-g-t v3 0/6] lib/igt_kmod: Drop legacy kunit integration Lucas De Marchi ` (6 preceding siblings ...) 2024-11-07 6:22 ` ✓ CI.xeBAT: success for lib/igt_kmod: Drop legacy kunit integration (rev3) Patchwork @ 2024-11-07 6:27 ` Patchwork 2024-11-07 7:29 ` ✗ Fi.CI.IGT: failure " Patchwork ` (2 subsequent siblings) 10 siblings, 0 replies; 19+ messages in thread From: Patchwork @ 2024-11-07 6:27 UTC (permalink / raw) To: Lucas De Marchi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2091 bytes --] == Series Details == Series: lib/igt_kmod: Drop legacy kunit integration (rev3) URL : https://patchwork.freedesktop.org/series/140746/ State : success == Summary == CI Bug Log - changes from IGT_8100 -> IGTPW_12056 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/index.html Participating hosts (45 -> 44) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12056 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@workarounds: - bat-mtlp-6: [PASS][1] -> [ABORT][2] ([i915#12061]) +1 other test abort [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8100/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/bat-mtlp-6/igt@i915_selftest@live@workarounds.html #### Possible fixes #### * igt@i915_selftest@live: - bat-arlh-3: [INCOMPLETE][3] ([i915#10341]) -> [PASS][4] +1 other test pass [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8100/bat-arlh-3/igt@i915_selftest@live.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/bat-arlh-3/igt@i915_selftest@live.html [i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8100 -> IGTPW_12056 * Linux: CI_DRM_15647 -> CI_DRM_15648 CI-20190529: 20190529 CI_DRM_15647: 438ef86a725b59a171dba81fc258bb23a0ff536c @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15648: 5ce87c5ad2cbfd2b89a0347e4e4f75de2762b7a3 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12056: 12056 IGT_8100: 84e42580f918da926481fd2fb37be01451d6ee9a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/index.html [-- Attachment #2: Type: text/html, Size: 2716 bytes --] ^ permalink raw reply [flat|nested] 19+ messages in thread
* ✗ Fi.CI.IGT: failure for lib/igt_kmod: Drop legacy kunit integration (rev3) 2024-11-07 5:52 [PATCH i-g-t v3 0/6] lib/igt_kmod: Drop legacy kunit integration Lucas De Marchi ` (7 preceding siblings ...) 2024-11-07 6:27 ` ✓ Fi.CI.BAT: " Patchwork @ 2024-11-07 7:29 ` Patchwork 2024-11-08 11:25 ` ✗ CI.xeFULL: " Patchwork 2024-11-14 22:00 ` ✗ Fi.CI.BUILD: failure for lib/igt_kmod: Drop legacy kunit integration (rev4) Patchwork 10 siblings, 0 replies; 19+ messages in thread From: Patchwork @ 2024-11-07 7:29 UTC (permalink / raw) To: Lucas De Marchi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 99788 bytes --] == Series Details == Series: lib/igt_kmod: Drop legacy kunit integration (rev3) URL : https://patchwork.freedesktop.org/series/140746/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15648_full -> IGTPW_12056_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12056_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12056_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_12056/index.html Participating hosts (10 -> 9) ------------------------------ Additional (1): shard-glk-0 Missing (2): shard-dg2-set2 shard-glk Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12056_full: ### IGT changes ### #### Possible regressions #### * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][1] +2 other tests skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-6/igt@kms_rotation_crc@primary-rotation-270.html Known issues ------------ Here are the changes found in IGTPW_12056_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][2] ([i915#8411]) +1 other test skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-19/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@object-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][3] ([i915#8411]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-1/igt@api_intel_bb@object-reloc-keep-cache.html * igt@device_reset@cold-reset-bound: - shard-dg2: NOTRUN -> [SKIP][4] ([i915#11078]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-1/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@all-busy-check-all: - shard-dg2: NOTRUN -> [SKIP][5] ([i915#8414]) +3 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-2/igt@drm_fdinfo@all-busy-check-all.html * igt@drm_fdinfo@isolation@rcs0: - shard-mtlp: NOTRUN -> [SKIP][6] ([i915#8414]) +6 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-7/igt@drm_fdinfo@isolation@rcs0.html * igt@fbdev@read: - shard-dg1: [PASS][7] -> [FAIL][8] ([i915#12673]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15648/shard-dg1-19/igt@fbdev@read.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-17/igt@fbdev@read.html * igt@gem_caching@read-writes: - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#4873]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-5/igt@gem_caching@read-writes.html * igt@gem_ccs@ctrl-surf-copy: - shard-tglu-1: NOTRUN -> [SKIP][10] ([i915#3555] / [i915#9323]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-1/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@suspend-resume: - shard-dg2: NOTRUN -> [INCOMPLETE][11] ([i915#7297]) +1 other test incomplete [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-7/igt@gem_ccs@suspend-resume.html - shard-rkl: NOTRUN -> [SKIP][12] ([i915#9323]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-7/igt@gem_ccs@suspend-resume.html - shard-dg1: NOTRUN -> [SKIP][13] ([i915#9323]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-14/igt@gem_ccs@suspend-resume.html - shard-tglu: NOTRUN -> [SKIP][14] ([i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-2/igt@gem_ccs@suspend-resume.html - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#9323]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-6/igt@gem_ccs@suspend-resume.html * igt@gem_create@create-ext-cpu-access-big: - shard-tglu-1: NOTRUN -> [SKIP][16] ([i915#6335]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-1/igt@gem_create@create-ext-cpu-access-big.html - shard-dg2: [PASS][17] -> [ABORT][18] ([i915#9846]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15648/shard-dg2-2/igt@gem_create@create-ext-cpu-access-big.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-1/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-tglu: NOTRUN -> [SKIP][19] ([i915#6335]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-8/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#8562]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-4/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_engines@invalid-engines: - shard-rkl: [PASS][21] -> [FAIL][22] ([i915#12031]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15648/shard-rkl-7/igt@gem_ctx_engines@invalid-engines.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-4/igt@gem_ctx_engines@invalid-engines.html - shard-tglu-1: NOTRUN -> [FAIL][23] ([i915#12031]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-1/igt@gem_ctx_engines@invalid-engines.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#8555]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_persistence@hostile: - shard-tglu: [PASS][25] -> [FAIL][26] ([i915#11980] / [i915#12580]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15648/shard-tglu-6/igt@gem_ctx_persistence@hostile.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-3/igt@gem_ctx_persistence@hostile.html * igt@gem_ctx_persistence@legacy-engines-persistence: - shard-snb: NOTRUN -> [SKIP][27] ([i915#1099]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-snb6/igt@gem_ctx_persistence@legacy-engines-persistence.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg1: NOTRUN -> [SKIP][28] ([i915#280]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-19/igt@gem_ctx_sseu@invalid-sseu.html - shard-tglu: NOTRUN -> [SKIP][29] ([i915#280]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-9/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_exec_balancer@bonded-dual: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#4771]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-5/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#4812]) +3 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-2/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_balancer@nop: - shard-mtlp: [PASS][32] -> [DMESG-WARN][33] ([i915#12412]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15648/shard-mtlp-1/igt@gem_exec_balancer@nop.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-1/igt@gem_exec_balancer@nop.html * igt@gem_exec_balancer@parallel-ordering: - shard-tglu-1: NOTRUN -> [FAIL][34] ([i915#6117]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-1/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_balancer@parallel-out-fence: - shard-rkl: NOTRUN -> [SKIP][35] ([i915#4525]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-2/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_exec_big@single: - shard-tglu: [PASS][36] -> [ABORT][37] ([i915#11713]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15648/shard-tglu-4/igt@gem_exec_big@single.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-7/igt@gem_exec_big@single.html * igt@gem_exec_capture@capture@vecs0-lmem0: - shard-dg2: NOTRUN -> [FAIL][38] ([i915#11965] / [i915#12558]) +2 other tests fail [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-4/igt@gem_exec_capture@capture@vecs0-lmem0.html * igt@gem_exec_capture@capture@vecs1-smem: - shard-dg2: NOTRUN -> [FAIL][39] ([i915#11965]) +1 other test fail [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-4/igt@gem_exec_capture@capture@vecs1-smem.html * igt@gem_exec_fair@basic-none-rrul: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#3539] / [i915#4852]) +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-8/igt@gem_exec_fair@basic-none-rrul.html - shard-rkl: NOTRUN -> [FAIL][41] ([i915#2842]) +1 other test fail [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-1/igt@gem_exec_fair@basic-none-rrul.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-tglu: NOTRUN -> [FAIL][42] ([i915#2842]) +1 other test fail [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-9/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-pace: - shard-tglu-1: NOTRUN -> [FAIL][43] ([i915#2842]) +7 other tests fail [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-1/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-rkl: [PASS][44] -> [FAIL][45] ([i915#2842]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15648/shard-rkl-1/igt@gem_exec_fair@basic-pace@rcs0.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-5/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#4812]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-18/igt@gem_exec_fence@submit.html - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4812]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-6/igt@gem_exec_fence@submit.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#3539] / [i915#4852]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-18/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_params@rsvd2-dirt: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#5107]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-6/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#3281]) +5 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-6/igt@gem_exec_reloc@basic-cpu-noreloc.html * igt@gem_exec_reloc@basic-gtt-cpu-active: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#3281]) +18 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-1/igt@gem_exec_reloc@basic-gtt-cpu-active.html * igt@gem_exec_reloc@basic-wc-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][52] ([i915#3281]) +7 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-5/igt@gem_exec_reloc@basic-wc-read-noreloc.html * igt@gem_exec_reloc@basic-write-cpu-active: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#3281]) +12 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-13/igt@gem_exec_reloc@basic-write-cpu-active.html * igt@gem_exec_schedule@pi-common@vcs0: - shard-rkl: NOTRUN -> [FAIL][54] ([i915#12296]) +4 other tests fail [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-1/igt@gem_exec_schedule@pi-common@vcs0.html * igt@gem_exec_schedule@pi-common@vecs0: - shard-dg2: NOTRUN -> [FAIL][55] ([i915#12296]) +7 other tests fail [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-8/igt@gem_exec_schedule@pi-common@vecs0.html * igt@gem_exec_schedule@pi-ringfull@vecs0: - shard-dg1: NOTRUN -> [FAIL][56] ([i915#12296]) +1 other test fail [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-13/igt@gem_exec_schedule@pi-ringfull@vecs0.html * igt@gem_exec_suspend@basic-s0@smem: - shard-dg2: [PASS][57] -> [INCOMPLETE][58] ([i915#11441]) +1 other test incomplete [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15648/shard-dg2-7/igt@gem_exec_suspend@basic-s0@smem.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-3/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_fence_thrash@bo-write-verify-x: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4860]) +3 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-5/igt@gem_fence_thrash@bo-write-verify-x.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4860]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-3/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html - shard-dg1: NOTRUN -> [SKIP][61] ([i915#4860]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-13/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-tglu: NOTRUN -> [SKIP][62] ([i915#4613]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-9/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4613]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-1/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html - shard-dg1: NOTRUN -> [SKIP][64] ([i915#12193]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/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][65] ([i915#4565]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-19/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-rkl: NOTRUN -> [SKIP][66] ([i915#4613]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-3/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@random-engines: - shard-tglu-1: NOTRUN -> [SKIP][67] ([i915#4613]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-1/igt@gem_lmem_swapping@random-engines.html * igt@gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#8289]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-5/igt@gem_media_fill@media-fill.html * igt@gem_mmap_gtt@basic-small-bo-tiledx: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4077]) +3 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-4/igt@gem_mmap_gtt@basic-small-bo-tiledx.html * igt@gem_mmap_gtt@cpuset-big-copy-odd: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4077]) +11 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-10/igt@gem_mmap_gtt@cpuset-big-copy-odd.html * igt@gem_mmap_gtt@flink-race: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#4077]) +3 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-19/igt@gem_mmap_gtt@flink-race.html * igt@gem_mmap_wc@fault-concurrent: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#4083]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-12/igt@gem_mmap_wc@fault-concurrent.html * igt@gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4083]) +5 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-2/igt@gem_mmap_wc@write-prefaulted.html - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4083]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-2/igt@gem_mmap_wc@write-prefaulted.html * igt@gem_partial_pwrite_pread@write-uncached: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#3282]) +3 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-8/igt@gem_partial_pwrite_pread@write-uncached.html - shard-rkl: NOTRUN -> [SKIP][76] ([i915#3282]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-2/igt@gem_partial_pwrite_pread@write-uncached.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-dg1: NOTRUN -> [SKIP][77] ([i915#3282]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-12/igt@gem_partial_pwrite_pread@writes-after-reads.html - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#3282]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-3/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_pxp@create-protected-buffer: - shard-rkl: NOTRUN -> [SKIP][79] ([i915#4270]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-7/igt@gem_pxp@create-protected-buffer.html * igt@gem_pxp@create-valid-protected-context: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4270]) +4 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-11/igt@gem_pxp@create-valid-protected-context.html * igt@gem_pxp@display-protected-crc: - shard-tglu-1: NOTRUN -> [SKIP][81] ([i915#4270]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-1/igt@gem_pxp@display-protected-crc.html * igt@gem_render_copy@linear-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#8428]) +4 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-6/igt@gem_render_copy@linear-to-vebox-y-tiled.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#5190] / [i915#8428]) +12 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-8/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt@gem_render_tiled_blits@basic: - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#4079]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-8/igt@gem_render_tiled_blits@basic.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#4079]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-6/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html - shard-rkl: NOTRUN -> [SKIP][86] ([i915#8411]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-2/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_set_tiling_vs_pwrite: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#4079]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-17/igt@gem_set_tiling_vs_pwrite.html * igt@gem_userptr_blits@access-control: - shard-dg1: NOTRUN -> [SKIP][88] ([i915#3297]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-14/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#3297]) +6 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-4/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-rkl: NOTRUN -> [SKIP][90] ([i915#3297]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-7/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-tglu-1: NOTRUN -> [SKIP][91] ([i915#3297]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-1/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#3297] / [i915#4880]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-5/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg1: NOTRUN -> [SKIP][93] ([i915#3297] / [i915#4880]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-14/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gen7_exec_parse@bitmasks: - shard-dg2: NOTRUN -> [SKIP][94] +13 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-5/igt@gen7_exec_parse@bitmasks.html * igt@gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][95] ([i915#2527]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-19/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@bb-start-out: - shard-mtlp: NOTRUN -> [SKIP][96] ([i915#2856]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-6/igt@gen9_exec_parse@bb-start-out.html * igt@gen9_exec_parse@bb-start-param: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#2856]) +3 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-8/igt@gen9_exec_parse@bb-start-param.html - shard-rkl: NOTRUN -> [SKIP][98] ([i915#2527]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-1/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@unaligned-jump: - shard-tglu: NOTRUN -> [SKIP][99] ([i915#2527] / [i915#2856]) +2 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-3/igt@gen9_exec_parse@unaligned-jump.html * igt@gen9_exec_parse@valid-registers: - shard-tglu-1: NOTRUN -> [SKIP][100] ([i915#2527] / [i915#2856]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-1/igt@gen9_exec_parse@valid-registers.html * igt@i915_module_load@reload: - shard-snb: [PASS][101] -> [ABORT][102] ([i915#12450]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15648/shard-snb2/igt@i915_module_load@reload.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-snb5/igt@i915_module_load@reload.html * igt@i915_module_load@resize-bar: - shard-rkl: NOTRUN -> [SKIP][103] ([i915#6412]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-2/igt@i915_module_load@resize-bar.html * igt@i915_pm_rps@reset: - shard-mtlp: NOTRUN -> [FAIL][104] ([i915#8346]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-3/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds-idle: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#11681]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-2/igt@i915_pm_rps@thresholds-idle.html * igt@i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#4387]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-1/igt@i915_pm_sseu@full-enable.html - shard-rkl: NOTRUN -> [SKIP][107] ([i915#4387]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-3/igt@i915_pm_sseu@full-enable.html - shard-dg1: NOTRUN -> [SKIP][108] ([i915#4387]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-14/igt@i915_pm_sseu@full-enable.html - shard-mtlp: NOTRUN -> [SKIP][109] ([i915#8437]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-1/igt@i915_pm_sseu@full-enable.html * igt@i915_query@hwconfig_table: - shard-tglu: NOTRUN -> [SKIP][110] ([i915#6245]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-5/igt@i915_query@hwconfig_table.html - shard-rkl: NOTRUN -> [SKIP][111] ([i915#6245]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-1/igt@i915_query@hwconfig_table.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#6188]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-8/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_suspend@basic-s3-without-i915: - shard-tglu: NOTRUN -> [INCOMPLETE][113] ([i915#7443]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-6/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@tile-pitch-mismatch: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#4212]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-11/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#8709]) +11 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html * igt@kms_async_flips@test-cursor: - shard-mtlp: NOTRUN -> [SKIP][116] ([i915#10333]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-7/igt@kms_async_flips@test-cursor.html * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-mtlp: NOTRUN -> [SKIP][117] ([i915#1769] / [i915#3555]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-8/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-4: - shard-dg1: [PASS][118] -> [FAIL][119] ([i915#5956]) +1 other test fail [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15648/shard-dg1-16/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-4.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-17/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-4.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#5286]) +2 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-1/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][121] ([i915#4538] / [i915#5286]) +2 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-12/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html - shard-tglu: NOTRUN -> [SKIP][122] ([i915#5286]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-4/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu-1: NOTRUN -> [SKIP][123] ([i915#5286]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][124] ([i915#3638]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-2/igt@kms_big_fb@linear-64bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][125] ([i915#3638]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-19/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#5190]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-11/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][127] +20 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#4538] / [i915#5190]) +14 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-7/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-addfb: - shard-mtlp: NOTRUN -> [SKIP][129] ([i915#6187]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-6/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][130] ([i915#4538]) +6 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-14/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#10307] / [i915#6095]) +182 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-10/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][133] ([i915#6095]) +44 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-5/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][134] ([i915#12313]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#6095]) +87 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][136] ([i915#12313]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][137] ([i915#6095]) +34 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-1/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][138] ([i915#6095]) +127 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#6095]) +9 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-6/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-edp-1.html * igt@kms_cdclk@mode-transition: - shard-tglu-1: NOTRUN -> [SKIP][140] ([i915#3742]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-1/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#4087]) +3 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-5/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html * igt@kms_chamelium_audio@dp-audio-edid: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#7828]) +11 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-2/igt@kms_chamelium_audio@dp-audio-edid.html * igt@kms_chamelium_color@ctm-max: - shard-mtlp: NOTRUN -> [SKIP][143] +8 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-1/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-4k: - shard-dg1: NOTRUN -> [SKIP][144] ([i915#7828]) +5 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-17/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html * igt@kms_chamelium_hpd@dp-hpd-after-suspend: - shard-tglu-1: NOTRUN -> [SKIP][145] ([i915#7828]) +6 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html * igt@kms_chamelium_hpd@dp-hpd-storm: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#7828]) +5 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-3/igt@kms_chamelium_hpd@dp-hpd-storm.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-tglu: NOTRUN -> [SKIP][147] ([i915#7828]) +4 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-8/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@vga-hpd: - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#7828]) +3 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-2/igt@kms_chamelium_hpd@vga-hpd.html * igt@kms_content_protection@dp-mst-type-1: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#3116]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-1/igt@kms_content_protection@dp-mst-type-1.html - shard-dg2: NOTRUN -> [SKIP][150] ([i915#3299]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-2/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy: - shard-tglu: NOTRUN -> [SKIP][151] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-3/igt@kms_content_protection@legacy.html - shard-dg1: NOTRUN -> [SKIP][152] ([i915#7116] / [i915#9424]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-19/igt@kms_content_protection@legacy.html * igt@kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#7118] / [i915#9424]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-3/igt@kms_content_protection@type1.html - shard-tglu-1: NOTRUN -> [SKIP][154] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-1/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][155] ([i915#1339] / [i915#7173]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-10/igt@kms_content_protection@uevent@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#11453] / [i915#3359]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-1/igt@kms_cursor_crc@cursor-offscreen-512x512.html - shard-rkl: NOTRUN -> [SKIP][157] ([i915#11453] / [i915#3359]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-3/igt@kms_cursor_crc@cursor-offscreen-512x512.html - shard-dg1: NOTRUN -> [SKIP][158] ([i915#11453] / [i915#3359]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-14/igt@kms_cursor_crc@cursor-offscreen-512x512.html - shard-tglu: NOTRUN -> [SKIP][159] ([i915#11453] / [i915#3359]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-8/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#11453] / [i915#3359]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-7/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#3555]) +4 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-1/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html - shard-rkl: NOTRUN -> [SKIP][162] ([i915#3555]) +3 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-3/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html - shard-tglu: NOTRUN -> [SKIP][163] ([i915#3555]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-8/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-64x21: - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#8814]) +3 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-6/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html * igt@kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-snb: [PASS][165] -> [FAIL][166] ([i915#2346]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15648/shard-snb2/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-snb6/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#9067]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-3/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-dg2: NOTRUN -> [SKIP][168] ([i915#9067]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-rkl: NOTRUN -> [SKIP][169] ([i915#9067]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-5/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-tglu-1: NOTRUN -> [SKIP][170] ([i915#9067]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-dg1: NOTRUN -> [SKIP][171] ([i915#9067]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-12/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-tglu-1: NOTRUN -> [SKIP][172] ([i915#9723]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg1: NOTRUN -> [SKIP][173] ([i915#8588]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-14/igt@kms_display_modes@mst-extended-mode-negative.html - shard-tglu: NOTRUN -> [SKIP][174] ([i915#8588]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-2/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dp_aux_dev: - shard-dg2: [PASS][175] -> [SKIP][176] ([i915#1257]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15648/shard-dg2-10/igt@kms_dp_aux_dev.html [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-4/igt@kms_dp_aux_dev.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#3840] / [i915#9688]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-8/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-tglu-1: NOTRUN -> [SKIP][178] ([i915#3840]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc: - shard-tglu-1: NOTRUN -> [SKIP][179] ([i915#3555] / [i915#3840]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-1/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-formats: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#3555] / [i915#3840]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-6/igt@kms_dsc@dsc-with-formats.html - shard-dg1: NOTRUN -> [SKIP][181] ([i915#3555] / [i915#3840]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-19/igt@kms_dsc@dsc-with-formats.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#3469]) +1 other test skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-3/igt@kms_fbcon_fbt@psr.html - shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#3469]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-1/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@chamelium: - shard-tglu: NOTRUN -> [SKIP][184] ([i915#2065] / [i915#4854]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-4/igt@kms_feature_discovery@chamelium.html - shard-dg1: NOTRUN -> [SKIP][185] ([i915#4854]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-12/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-mtlp: NOTRUN -> [SKIP][186] ([i915#1839]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-1/igt@kms_feature_discovery@display-2x.html - shard-rkl: NOTRUN -> [SKIP][187] ([i915#1839]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-2/igt@kms_feature_discovery@display-2x.html - shard-dg1: NOTRUN -> [SKIP][188] ([i915#1839]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-19/igt@kms_feature_discovery@display-2x.html - shard-tglu: NOTRUN -> [SKIP][189] ([i915#1839]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-9/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@dp-mst: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#9337]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-7/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][191] ([i915#658]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-3/igt@kms_feature_discovery@psr1.html - shard-dg2: NOTRUN -> [SKIP][192] ([i915#658]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-6/igt@kms_feature_discovery@psr1.html * igt@kms_feature_discovery@psr2: - shard-dg1: NOTRUN -> [SKIP][193] ([i915#658]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-16/igt@kms_feature_discovery@psr2.html * igt@kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#4881]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-6/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-flip-vs-fences: - shard-tglu: NOTRUN -> [SKIP][195] ([i915#3637]) +3 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-7/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-rmfb: - shard-dg1: NOTRUN -> [SKIP][196] ([i915#9934]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-14/igt@kms_flip@2x-flip-vs-rmfb.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-mtlp: NOTRUN -> [SKIP][197] ([i915#3637]) +4 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-6/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][198] ([i915#3637]) +2 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-1/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-snb: [PASS][199] -> [FAIL][200] ([i915#2122]) +5 other tests fail [199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15648/shard-snb5/igt@kms_flip@2x-plain-flip-fb-recreate.html [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-snb7/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@blocking-wf_vblank@c-hdmi-a1: - shard-tglu: [PASS][201] -> [FAIL][202] ([i915#2122]) +2 other tests fail [201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15648/shard-tglu-8/igt@kms_flip@blocking-wf_vblank@c-hdmi-a1.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-6/igt@kms_flip@blocking-wf_vblank@c-hdmi-a1.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#8381]) +2 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-10/igt@kms_flip@flip-vs-fences-interruptible.html - shard-dg1: NOTRUN -> [SKIP][204] ([i915#8381]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-16/igt@kms_flip@flip-vs-fences-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#8381]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-8/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip@flip-vs-suspend: - shard-dg2: NOTRUN -> [INCOMPLETE][206] ([i915#4839] / [i915#6113]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-2/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@d-hdmi-a3: - shard-dg2: NOTRUN -> [INCOMPLETE][207] ([i915#6113]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-2/igt@kms_flip@flip-vs-suspend@d-hdmi-a3.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-rkl: NOTRUN -> [SKIP][208] ([i915#2672] / [i915#3555]) +1 other test skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][209] ([i915#2672]) +1 other test skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-mtlp: NOTRUN -> [SKIP][210] ([i915#2672] / [i915#3555] / [i915#8813]) +3 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html - shard-dg1: NOTRUN -> [SKIP][211] ([i915#2672] / [i915#3555]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#2672] / [i915#8813]) +1 other test skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][213] ([i915#2587] / [i915#2672]) +1 other test skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][214] ([i915#2587] / [i915#2672] / [i915#3555]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][215] ([i915#2587] / [i915#2672] / [i915#3555]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html - shard-tglu: NOTRUN -> [SKIP][216] ([i915#2587] / [i915#2672] / [i915#3555]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][217] ([i915#2587] / [i915#2672]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][218] ([i915#2672] / [i915#3555]) +3 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][219] ([i915#2587] / [i915#2672]) +4 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#2672] / [i915#3555] / [i915#5190]) +4 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#2672]) +4 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move: - shard-dg2: [PASS][222] -> [FAIL][223] ([i915#6880]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15648/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#5354]) +56 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt: - shard-snb: [PASS][225] -> [SKIP][226] +7 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15648/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#3458]) +14 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#8708]) +29 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][229] ([i915#1825]) +14 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-tglu-1: NOTRUN -> [SKIP][230] +48 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][231] +25 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][232] ([i915#8708]) +4 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][233] ([i915#5439]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt: - shard-dg1: NOTRUN -> [SKIP][234] ([i915#3458]) +8 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][235] ([i915#3023]) +13 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-blt: - shard-dg1: NOTRUN -> [SKIP][236] ([i915#4423]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][237] ([i915#1825]) +22 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu: - shard-snb: NOTRUN -> [SKIP][238] +176 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-snb7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][239] +54 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][240] ([i915#8708]) +13 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt@kms_hdr@bpc-switch: - shard-tglu-1: NOTRUN -> [SKIP][241] ([i915#3555] / [i915#8228]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-1/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@static-toggle-suspend: - shard-tglu: NOTRUN -> [SKIP][242] ([i915#3555] / [i915#8228]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-8/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][243] ([i915#12394]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-5/igt@kms_joiner@basic-force-ultra-joiner.html - shard-dg2: NOTRUN -> [SKIP][244] ([i915#10656]) +1 other test skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-2/igt@kms_joiner@basic-force-ultra-joiner.html - shard-rkl: NOTRUN -> [SKIP][245] ([i915#12394]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-1/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][246] ([i915#12339]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-1/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-rkl: NOTRUN -> [SKIP][247] ([i915#10656]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-4/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#6301]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-2/igt@kms_panel_fitting@atomic-fastset.html - shard-rkl: NOTRUN -> [SKIP][249] ([i915#6301]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-7/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane_multiple@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#3555] / [i915#8806]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-4/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: - shard-tglu-1: NOTRUN -> [SKIP][251] ([i915#12247]) +9 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-1/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#12247] / [i915#9423]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#12247]) +4 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#12247]) +11 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][255] ([i915#12247] / [i915#6953] / [i915#9423]) +1 other test skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-dg1: NOTRUN -> [SKIP][256] ([i915#12247] / [i915#6953]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-17/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-mtlp: NOTRUN -> [SKIP][257] ([i915#12247] / [i915#6953]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b: - shard-mtlp: NOTRUN -> [SKIP][258] ([i915#12247]) +3 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c: - shard-dg1: NOTRUN -> [SKIP][259] ([i915#12247] / [i915#12504]) +2 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-17/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d: - shard-dg1: NOTRUN -> [SKIP][260] ([i915#12247]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-17/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][261] ([i915#12247] / [i915#6953]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][262] ([i915#12247] / [i915#3555]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-6/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-tglu: NOTRUN -> [SKIP][263] ([i915#12247]) +3 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a.html * igt@kms_pm_backlight@fade: - shard-tglu: NOTRUN -> [SKIP][264] ([i915#9812]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-5/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#9685]) +1 other test skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-10/igt@kms_pm_dc@dc3co-vpb-simulation.html - shard-rkl: NOTRUN -> [SKIP][266] ([i915#9685]) +1 other test skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-3/igt@kms_pm_dc@dc3co-vpb-simulation.html - shard-dg1: NOTRUN -> [SKIP][267] ([i915#9685]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-17/igt@kms_pm_dc@dc3co-vpb-simulation.html - shard-tglu: NOTRUN -> [SKIP][268] ([i915#9685]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-3/igt@kms_pm_dc@dc3co-vpb-simulation.html - shard-mtlp: NOTRUN -> [SKIP][269] ([i915#9292]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-3/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][270] ([i915#5978]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-3/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-tglu-1: NOTRUN -> [SKIP][271] ([i915#9685]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-1/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_lpsp@screens-disabled: - shard-rkl: NOTRUN -> [SKIP][272] ([i915#8430]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-1/igt@kms_pm_lpsp@screens-disabled.html - shard-dg2: NOTRUN -> [SKIP][273] ([i915#8430]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-2/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-tglu-1: NOTRUN -> [SKIP][274] ([i915#9519]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#9519]) +1 other test skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-rkl: NOTRUN -> [SKIP][276] ([i915#9519]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2: [PASS][277] -> [SKIP][278] ([i915#9519]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15648/shard-dg2-7/igt@kms_pm_rpm@modeset-non-lpsp.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][279] -> [SKIP][280] ([i915#9519]) +1 other test skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15648/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][281] ([i915#6524] / [i915#6805]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-3/igt@kms_prime@basic-crc-vgem.html - shard-dg1: NOTRUN -> [SKIP][282] ([i915#6524]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-13/igt@kms_prime@basic-crc-vgem.html * igt@kms_prime@basic-modeset-hybrid: - shard-tglu-1: NOTRUN -> [SKIP][283] ([i915#6524]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-1/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf: - shard-rkl: NOTRUN -> [SKIP][284] ([i915#11520]) +5 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-1/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html - shard-snb: NOTRUN -> [SKIP][285] ([i915#11520]) +6 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-snb1/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][286] ([i915#11520]) +12 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][287] ([i915#9808]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][288] ([i915#11520]) +5 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-4/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-mtlp: NOTRUN -> [SKIP][289] ([i915#12316]) +6 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-3/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-tglu-1: NOTRUN -> [SKIP][290] ([i915#11520]) +4 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-dg1: NOTRUN -> [SKIP][291] ([i915#11520]) +8 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-13/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][292] ([i915#9683]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-nv12: - shard-mtlp: NOTRUN -> [SKIP][293] ([i915#4348]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-3/igt@kms_psr2_su@page_flip-nv12.html - shard-tglu-1: NOTRUN -> [SKIP][294] ([i915#9683]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-1/igt@kms_psr2_su@page_flip-nv12.html - shard-dg1: NOTRUN -> [SKIP][295] ([i915#9683]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-12/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-pr-cursor-render: - shard-mtlp: NOTRUN -> [SKIP][296] ([i915#9688]) +15 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-4/igt@kms_psr@fbc-pr-cursor-render.html * igt@kms_psr@fbc-psr-sprite-plane-move: - shard-tglu: NOTRUN -> [SKIP][297] ([i915#9732]) +13 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-5/igt@kms_psr@fbc-psr-sprite-plane-move.html * igt@kms_psr@psr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][298] ([i915#1072] / [i915#9732]) +26 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-10/igt@kms_psr@psr-cursor-render.html * igt@kms_psr@psr-sprite-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][299] ([i915#1072] / [i915#9732]) +17 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-12/igt@kms_psr@psr-sprite-mmap-cpu.html * igt@kms_psr@psr2-cursor-blt: - shard-rkl: NOTRUN -> [SKIP][300] ([i915#1072] / [i915#9732]) +12 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-4/igt@kms_psr@psr2-cursor-blt.html * igt@kms_psr@psr2-sprite-blt: - shard-tglu-1: NOTRUN -> [SKIP][301] ([i915#9732]) +14 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-1/igt@kms_psr@psr2-sprite-blt.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-tglu-1: NOTRUN -> [SKIP][302] ([i915#5289]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_setmode@basic: - shard-dg1: [PASS][303] -> [FAIL][304] ([i915#5465]) +2 other tests fail [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15648/shard-dg1-18/igt@kms_setmode@basic.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-16/igt@kms_setmode@basic.html - shard-tglu: [PASS][305] -> [FAIL][306] ([i915#5465]) +2 other tests fail [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15648/shard-tglu-3/igt@kms_setmode@basic.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-3/igt@kms_setmode@basic.html * igt@kms_setmode@basic-clone-single-crtc: - shard-dg1: NOTRUN -> [SKIP][307] ([i915#3555]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-12/igt@kms_setmode@basic-clone-single-crtc.html - shard-mtlp: NOTRUN -> [SKIP][308] ([i915#3555] / [i915#8809]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-3/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [FAIL][309] ([i915#5465]) +2 other tests fail [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-4/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@kms_setmode@clone-exclusive-crtc: - shard-tglu-1: NOTRUN -> [SKIP][310] ([i915#3555]) +4 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-1/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_sysfs_edid_timing: - shard-dg1: NOTRUN -> [FAIL][311] ([IGT#2] / [i915#6493]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-17/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg1: NOTRUN -> [SKIP][312] ([i915#8623]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-18/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-tglu: NOTRUN -> [SKIP][313] ([i915#8623]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@flip-basic-fastset: - shard-tglu: NOTRUN -> [SKIP][314] ([i915#9906]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-2/igt@kms_vrr@flip-basic-fastset.html - shard-dg1: NOTRUN -> [SKIP][315] ([i915#9906]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-18/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@lobf: - shard-dg2: NOTRUN -> [SKIP][316] ([i915#11920]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-4/igt@kms_vrr@lobf.html - shard-rkl: NOTRUN -> [SKIP][317] ([i915#11920]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-4/igt@kms_vrr@lobf.html * igt@kms_vrr@negative-basic: - shard-dg2: NOTRUN -> [SKIP][318] ([i915#3555] / [i915#9906]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-1/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-dg2: NOTRUN -> [SKIP][319] ([i915#9906]) +1 other test skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-10/igt@kms_vrr@seamless-rr-switch-virtual.html - shard-rkl: NOTRUN -> [SKIP][320] ([i915#9906]) +1 other test skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-3/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][321] ([i915#2437]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-11/igt@kms_writeback@writeback-check-output.html - shard-rkl: NOTRUN -> [SKIP][322] ([i915#2437]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-5/igt@kms_writeback@writeback-check-output.html - shard-dg1: NOTRUN -> [SKIP][323] ([i915#2437]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-17/igt@kms_writeback@writeback-check-output.html - shard-tglu: NOTRUN -> [SKIP][324] ([i915#2437]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-7/igt@kms_writeback@writeback-check-output.html - shard-mtlp: NOTRUN -> [SKIP][325] ([i915#2437]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-2/igt@kms_writeback@writeback-check-output.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-dg2: NOTRUN -> [SKIP][326] ([i915#2436]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-2/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@non-zero-reason: - shard-dg2: NOTRUN -> [FAIL][327] ([i915#9100]) +1 other test fail [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-7/igt@perf@non-zero-reason.html * igt@perf_pmu@module-unload: - shard-dg2: NOTRUN -> [FAIL][328] ([i915#11823] / [i915#12555]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-5/igt@perf_pmu@module-unload.html * igt@prime_vgem@basic-write: - shard-dg1: NOTRUN -> [SKIP][329] ([i915#3708]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-17/igt@prime_vgem@basic-write.html * igt@prime_vgem@coherency-gtt: - shard-rkl: NOTRUN -> [SKIP][330] ([i915#3708]) +1 other test skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-2/igt@prime_vgem@coherency-gtt.html - shard-dg1: NOTRUN -> [SKIP][331] ([i915#3708] / [i915#4077]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-19/igt@prime_vgem@coherency-gtt.html - shard-mtlp: NOTRUN -> [SKIP][332] ([i915#3708] / [i915#4077]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-1/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-write-hang: - shard-dg2: NOTRUN -> [SKIP][333] ([i915#3708]) +1 other test skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-5/igt@prime_vgem@fence-write-hang.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg2: NOTRUN -> [SKIP][334] ([i915#9917]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-10/igt@sriov_basic@enable-vfs-autoprobe-off.html #### Possible fixes #### * igt@i915_module_load@reload-with-fault-injection: - shard-snb: [ABORT][335] ([i915#9820]) -> [PASS][336] [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15648/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html - shard-tglu: [ABORT][337] ([i915#9820]) -> [PASS][338] [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15648/shard-tglu-6/igt@i915_module_load@reload-with-fault-injection.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-7/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_selftest@live@workarounds: - shard-mtlp: [ABORT][339] ([i915#12061]) -> [PASS][340] +1 other test pass [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15648/shard-mtlp-2/igt@i915_selftest@live@workarounds.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-7/igt@i915_selftest@live@workarounds.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1: - shard-snb: [FAIL][341] ([i915#2122]) -> [PASS][342] +3 other tests pass [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15648/shard-snb6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-snb6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html * igt@kms_flip@flip-vs-blocking-wf-vblank: - shard-rkl: [FAIL][343] ([i915#11989] / [i915#2122]) -> [PASS][344] [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15648/shard-rkl-2/igt@kms_flip@flip-vs-blocking-wf-vblank.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-7/igt@kms_flip@flip-vs-blocking-wf-vblank.html * igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a1: - shard-rkl: [FAIL][345] ([i915#2122]) -> [PASS][346] +1 other test pass [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15648/shard-rkl-2/igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a1.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-7/igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a1.html * igt@kms_flip@flip-vs-suspend@b-edp1: - shard-mtlp: [INCOMPLETE][347] ([i915#6113]) -> [PASS][348] +1 other test pass [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15648/shard-mtlp-1/igt@kms_flip@flip-vs-suspend@b-edp1.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-2/igt@kms_flip@flip-vs-suspend@b-edp1.html * igt@kms_flip@plain-flip-fb-recreate: - shard-tglu: [FAIL][349] ([i915#2122]) -> [PASS][350] +5 other tests pass [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15648/shard-tglu-5/igt@kms_flip@plain-flip-fb-recreate.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-tglu-4/igt@kms_flip@plain-flip-fb-recreate.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-snb: [SKIP][351] -> [PASS][352] +1 other test pass [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15648/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [SKIP][353] ([i915#9519]) -> [PASS][354] +1 other test pass [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15648/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_psr@psr2-sprite-plane-move: - shard-mtlp: [FAIL][355] ([i915#12432]) -> [PASS][356] [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15648/shard-mtlp-7/igt@kms_psr@psr2-sprite-plane-move.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-5/igt@kms_psr@psr2-sprite-plane-move.html * igt@kms_psr@psr2-sprite-plane-move@edp-1: - shard-mtlp: [FAIL][357] ([i915#10105]) -> [PASS][358] [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15648/shard-mtlp-7/igt@kms_psr@psr2-sprite-plane-move@edp-1.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-5/igt@kms_psr@psr2-sprite-plane-move@edp-1.html #### Warnings #### * igt@kms_content_protection@atomic: - shard-snb: [SKIP][359] -> [INCOMPLETE][360] ([i915#8816]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15648/shard-snb1/igt@kms_content_protection@atomic.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-snb2/igt@kms_content_protection@atomic.html * igt@kms_content_protection@uevent: - shard-dg2: [SKIP][361] ([i915#7118] / [i915#9424]) -> [FAIL][362] ([i915#1339] / [i915#7173]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15648/shard-dg2-6/igt@kms_content_protection@uevent.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-10/igt@kms_content_protection@uevent.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt: - shard-dg2: [SKIP][363] ([i915#3458]) -> [SKIP][364] ([i915#10433] / [i915#3458]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15648/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render: - shard-dg2: [SKIP][365] ([i915#10433] / [i915#3458]) -> [SKIP][366] ([i915#3458]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15648/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html * igt@kms_hdr@brightness-with-hdr: - shard-dg1: [SKIP][367] ([i915#1187]) -> [SKIP][368] ([i915#12713]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15648/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-dg1-18/igt@kms_hdr@brightness-with-hdr.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][369] ([i915#4816]) -> [SKIP][370] ([i915#4070] / [i915#4816]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15648/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane_lowres@tiling-4: - shard-mtlp: [SKIP][371] ([i915#10226] / [i915#3555] / [i915#8821]) -> [SKIP][372] ([i915#10226] / [i915#11614] / [i915#3555] / [i915#8821]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15648/shard-mtlp-7/igt@kms_plane_lowres@tiling-4.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-7/igt@kms_plane_lowres@tiling-4.html * igt@kms_plane_lowres@tiling-none: - shard-mtlp: [SKIP][373] ([i915#3582]) -> [SKIP][374] ([i915#11614] / [i915#3582]) +1 other test skip [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15648/shard-mtlp-8/igt@kms_plane_lowres@tiling-none.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/shard-mtlp-1/igt@kms_plane_lowres@tiling-none.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [i915#10105]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10105 [i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10333]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10333 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11441 [i915#11453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713 [i915#11823]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11823 [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965 [i915#11980]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11980 [i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989 [i915#12031]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12031 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193 [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247 [i915#12296]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12296 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394 [i915#12412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12412 [i915#12432]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12432 [i915#12450]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12450 [i915#12504]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12504 [i915#12555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12555 [i915#12558]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12558 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12580]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12580 [i915#12673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12673 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#1339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1339 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065 [i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122 [i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346 [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348 [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4873 [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881 [i915#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#5978]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5978 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113 [i915#6117]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6117 [i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187 [i915#6188]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6188 [i915#6227]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6227 [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412 [i915#6493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6493 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7297 [i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289 [i915#8292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8292 [i915#8346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8346 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430 [i915#8437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8437 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562 [i915#8588]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8588 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709 [i915#8806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8806 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8816 [i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100 [i915#9292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9292 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337 [i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820 [i915#9846]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9846 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8100 -> IGTPW_12056 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_15648: 5ce87c5ad2cbfd2b89a0347e4e4f75de2762b7a3 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12056: 12056 IGT_8100: 84e42580f918da926481fd2fb37be01451d6ee9a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12056/index.html [-- Attachment #2: Type: text/html, Size: 124782 bytes --] ^ permalink raw reply [flat|nested] 19+ messages in thread
* ✗ CI.xeFULL: failure for lib/igt_kmod: Drop legacy kunit integration (rev3) 2024-11-07 5:52 [PATCH i-g-t v3 0/6] lib/igt_kmod: Drop legacy kunit integration Lucas De Marchi ` (8 preceding siblings ...) 2024-11-07 7:29 ` ✗ Fi.CI.IGT: failure " Patchwork @ 2024-11-08 11:25 ` Patchwork 2024-11-14 22:00 ` ✗ Fi.CI.BUILD: failure for lib/igt_kmod: Drop legacy kunit integration (rev4) Patchwork 10 siblings, 0 replies; 19+ messages in thread From: Patchwork @ 2024-11-08 11:25 UTC (permalink / raw) To: Lucas De Marchi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 47272 bytes --] == Series Details == Series: lib/igt_kmod: Drop legacy kunit integration (rev3) URL : https://patchwork.freedesktop.org/series/140746/ State : failure == Summary == CI Bug Log - changes from XEIGT_8100_full -> XEIGTPW_12056_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12056_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12056_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_12056_full: ### IGT changes ### #### Possible regressions #### * igt@kms_big_fb@linear-32bpp-rotate-180: - shard-lnl: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-5/igt@kms_big_fb@linear-32bpp-rotate-180.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-lnl-4/igt@kms_big_fb@linear-32bpp-rotate-180.html * igt@kms_pm_rpm@universal-planes-dpms@plane-59: - shard-lnl: [PASS][3] -> [DMESG-WARN][4] +1 other test dmesg-warn [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-1/igt@kms_pm_rpm@universal-planes-dpms@plane-59.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-lnl-2/igt@kms_pm_rpm@universal-planes-dpms@plane-59.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2-set2: NOTRUN -> [SKIP][5] +2 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-466/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html #### Warnings #### * igt@kms_content_protection@content-type-change: - shard-bmg: [SKIP][6] ([Intel XE#2341]) -> [INCOMPLETE][7] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-bmg-2/igt@kms_content_protection@content-type-change.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-bmg-8/igt@kms_content_protection@content-type-change.html New tests --------- New tests have been introduced between XEIGT_8100_full and XEIGTPW_12056_full: ### New IGT tests (7) ### * igt@kms_flip@2x-absolute-wf_vblank@ab-hdmi-a6-dp5: - Statuses : 1 pass(s) - Exec time: [5.41] s * igt@kms_flip@2x-absolute-wf_vblank@ac-hdmi-a6-dp5: - Statuses : 1 pass(s) - Exec time: [5.36] s * igt@kms_flip@2x-absolute-wf_vblank@ad-hdmi-a6-dp5: - Statuses : 1 pass(s) - Exec time: [5.37] s * igt@kms_flip@2x-absolute-wf_vblank@bc-hdmi-a6-dp5: - Statuses : 1 pass(s) - Exec time: [5.35] s * igt@kms_flip@2x-absolute-wf_vblank@bd-hdmi-a6-dp5: - Statuses : 1 pass(s) - Exec time: [5.35] s * igt@kms_flip@2x-absolute-wf_vblank@cd-hdmi-a6-dp5: - Statuses : 1 pass(s) - Exec time: [5.37] s * igt@kms_lease@lease-invalid-crtc@pipe-d-dp-5: - Statuses : 1 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in XEIGTPW_12056_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1: - shard-lnl: [PASS][8] -> [FAIL][9] ([Intel XE#1426]) +3 other tests fail [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-lnl-4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1407]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-lnl-4/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#316]) +2 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-434/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb: - shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#619]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#1124]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#1124]) +17 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#2191]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-lnl-4/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt@kms_bw@linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#367]) +7 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-466/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html * igt@kms_bw@linear-tiling-3-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#367]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-bmg-2/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#787]) +132 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-434/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#455] / [Intel XE#787]) +38 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-435/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-bmg-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#2887]) +2 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-lnl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#2669]) +3 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-lnl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][23] ([Intel XE#1195] / [Intel XE#3124]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#2907]) +3 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#314]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-433/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_audio@dp-audio: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#373]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-lnl-8/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_color@ctm-limited-range: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#306]) +3 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-463/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_color@ctm-max: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2325]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-bmg-6/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#373]) +12 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-463/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2252]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-bmg-4/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][31] ([Intel XE#3304]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-435/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html * igt@kms_content_protection@srm@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][32] ([Intel XE#1178]) +4 other tests fail [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-435/igt@kms_content_protection@srm@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-offscreen-max-size: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#1424]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-lnl-2/igt@kms_cursor_crc@cursor-offscreen-max-size.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#308]) +2 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-466/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2321]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#2321]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-lnl-1/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#309]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-lnl-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#323]) +4 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-435/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_fbcon_fbt@psr: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#776]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-433/igt@kms_fbcon_fbt@psr.html * igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3: - shard-bmg: [PASS][40] -> [FAIL][41] ([Intel XE#301]) +2 other tests fail [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-bmg-4/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: NOTRUN -> [FAIL][42] ([Intel XE#301]) +6 other tests fail [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-panning-interruptible: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#1421]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-lnl-1/igt@kms_flip@2x-flip-vs-panning-interruptible.html * igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1: - shard-lnl: NOTRUN -> [FAIL][44] ([Intel XE#886]) +3 other tests fail [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-lnl-4/igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1.html * igt@kms_flip@flip-vs-expired-vblank@b-edp1: - shard-lnl: [PASS][45] -> [FAIL][46] ([Intel XE#301]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html * igt@kms_flip@flip-vs-expired-vblank@c-edp1: - shard-lnl: [PASS][47] -> [FAIL][48] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html * igt@kms_flip@wf_vblank-ts-check@b-edp1: - shard-lnl: [PASS][49] -> [FAIL][50] ([Intel XE#886]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-1/igt@kms_flip@wf_vblank-ts-check@b-edp1.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-lnl-6/igt@kms_flip@wf_vblank-ts-check@b-edp1.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#455]) +25 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#651]) +40 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2311]) +5 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render: - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#651]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: NOTRUN -> [FAIL][55] ([Intel XE#2333]) +1 other test fail [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#656]) +8 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2313]) +3 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#653]) +41 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-slowdraw.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#605]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-434/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@brightness-with-hdr@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][60] ([Intel XE#3312]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-463/igt@kms_hdr@brightness-with-hdr@pipe-a-dp-4.html * igt@kms_joiner@basic-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#2927]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-432/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#346]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-lnl-5/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#356]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-433/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][64] ([Intel XE#616]) +3 other tests fail [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-434/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [FAIL][65] ([Intel XE#361]) +1 other test fail [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c: - shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#2763]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-435/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-435/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html * igt@kms_pm_backlight@fade-with-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#870]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-434/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_rpm@universal-planes-dpms: - shard-lnl: [PASS][69] -> [DMESG-WARN][70] ([Intel XE#2042]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-1/igt@kms_pm_rpm@universal-planes-dpms.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-lnl-2/igt@kms_pm_rpm@universal-planes-dpms.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#1489]) +5 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#1489]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-bmg-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-cursor-plane-update-sf: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#2893]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-lnl-4/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html * igt@kms_psr@pr-sprite-plane-move: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1406]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-lnl-4/igt@kms_psr@pr-sprite-plane-move.html * igt@kms_psr@psr2-basic: - shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#2850] / [Intel XE#929]) +20 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-464/igt@kms_psr@psr2-basic.html * igt@kms_psr@psr2-suspend: - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-bmg-3/igt@kms_psr@psr2-suspend.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#1127]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-435/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2-set2: NOTRUN -> [FAIL][78] ([Intel XE#1729]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-432/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_universal_plane@cursor-fb-leak: - shard-lnl: [PASS][79] -> [FAIL][80] ([Intel XE#899]) +1 other test fail [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-1/igt@kms_universal_plane@cursor-fb-leak.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-lnl-3/igt@kms_universal_plane@cursor-fb-leak.html * igt@kms_writeback@writeback-fb-id: - shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#756]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-434/igt@kms_writeback@writeback-fb-id.html * igt@xe_copy_basic@mem-copy-linear-0x369: - shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#1123]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0x369.html * igt@xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#1126]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0xfd.html * igt@xe_eudebug@basic-client: - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#2905]) +3 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-lnl-6/igt@xe_eudebug@basic-client.html * igt@xe_eudebug@multiple-sessions: - shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2905]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-bmg-7/igt@xe_eudebug@multiple-sessions.html * igt@xe_eudebug_online@preempt-breakpoint: - shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#2905]) +18 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-434/igt@xe_eudebug_online@preempt-breakpoint.html * igt@xe_evict@evict-mixed-many-threads-large: - shard-dg2-set2: NOTRUN -> [TIMEOUT][87] ([Intel XE#1473]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-464/igt@xe_evict@evict-mixed-many-threads-large.html * igt@xe_evict@evict-mixed-threads-small-multi-vm: - shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#688]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-lnl-7/igt@xe_evict@evict-mixed-threads-small-multi-vm.html * igt@xe_evict@evict-threads-large: - shard-bmg: [PASS][89] -> [TIMEOUT][90] ([Intel XE#1473] / [Intel XE#2472]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-bmg-4/igt@xe_evict@evict-threads-large.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-bmg-5/igt@xe_evict@evict-threads-large.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap: - shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#1392]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-lnl-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html * igt@xe_exec_basic@multigpu-once-userptr-invalidate-race: - shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2322]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-bmg-3/igt@xe_exec_basic@multigpu-once-userptr-invalidate-race.html * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race: - shard-bmg: [PASS][93] -> [FAIL][94] ([Intel XE#1630]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-bmg-2/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-bmg-3/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race.html * igt@xe_exec_fault_mode@twice-userptr-invalidate-race: - shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#288]) +31 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html * igt@xe_live_ktest@xe_bo: - shard-dg2-set2: NOTRUN -> [TIMEOUT][96] ([Intel XE#2961] / [Intel XE#3191]) +1 other test timeout [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-464/igt@xe_live_ktest@xe_bo.html * igt@xe_live_ktest@xe_mocs: - shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#1192]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-lnl-1/igt@xe_live_ktest@xe_mocs.html * igt@xe_oa@whitelisted-registers-userspace-config: - shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#2541]) +10 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-433/igt@xe_oa@whitelisted-registers-userspace-config.html * igt@xe_pat@display-vs-wb-transient: - shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#1337]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-466/igt@xe_pat@display-vs-wb-transient.html * igt@xe_pat@pat-index-xe2: - shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#2839] / [Intel XE#977]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-434/igt@xe_pat@pat-index-xe2.html * igt@xe_pat@pat-index-xelpg: - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#979]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-434/igt@xe_pat@pat-index-xelpg.html * igt@xe_pm@s2idle-basic-exec: - shard-dg2-set2: [PASS][102] -> [ABORT][103] ([Intel XE#1358]) +1 other test abort [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-464/igt@xe_pm@s2idle-basic-exec.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-432/igt@xe_pm@s2idle-basic-exec.html * igt@xe_pm@s2idle-vm-bind-unbind-all: - shard-dg2-set2: NOTRUN -> [ABORT][104] ([Intel XE#1694] / [Intel XE#1794]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-432/igt@xe_pm@s2idle-vm-bind-unbind-all.html * igt@xe_pm@s2idle-vm-bind-userptr: - shard-dg2-set2: [PASS][105] -> [ABORT][106] ([Intel XE#1694] / [Intel XE#1794]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-464/igt@xe_pm@s2idle-vm-bind-userptr.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-432/igt@xe_pm@s2idle-vm-bind-userptr.html * igt@xe_pm@s4-basic-exec: - shard-dg2-set2: [PASS][107] -> [ABORT][108] ([Intel XE#1358] / [Intel XE#1794]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-463/igt@xe_pm@s4-basic-exec.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-432/igt@xe_pm@s4-basic-exec.html * igt@xe_pm@s4-vm-bind-prefetch: - shard-lnl: [PASS][109] -> [ABORT][110] ([Intel XE#1607] / [Intel XE#1794]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-7/igt@xe_pm@s4-vm-bind-prefetch.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-lnl-2/igt@xe_pm@s4-vm-bind-prefetch.html * igt@xe_pm@s4-vm-bind-unbind-all: - shard-lnl: [PASS][111] -> [ABORT][112] ([Intel XE#1794]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-4/igt@xe_pm@s4-vm-bind-unbind-all.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.html * igt@xe_pm_residency@gt-c6-freeze: - shard-dg2-set2: [PASS][113] -> [ABORT][114] ([Intel XE#2625]) +1 other test abort [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-466/igt@xe_pm_residency@gt-c6-freeze.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-432/igt@xe_pm_residency@gt-c6-freeze.html * igt@xe_query@multigpu-query-invalid-extension: - shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#944]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-lnl-4/igt@xe_query@multigpu-query-invalid-extension.html * igt@xe_query@multigpu-query-mem-usage: - shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#944]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-bmg-7/igt@xe_query@multigpu-query-mem-usage.html * igt@xe_query@multigpu-query-uc-fw-version-guc: - shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#944]) +4 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-435/igt@xe_query@multigpu-query-uc-fw-version-guc.html * igt@xe_wedged@basic-wedged: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][118] ([Intel XE#2919]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-435/igt@xe_wedged@basic-wedged.html #### Possible fixes #### * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: [INCOMPLETE][119] ([Intel XE#1195]) -> [PASS][120] +1 other test pass [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [INCOMPLETE][121] ([Intel XE#1195] / [Intel XE#1727]) -> [PASS][122] [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6: - shard-dg2-set2: [DMESG-WARN][123] ([Intel XE#3113]) -> [PASS][124] [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4: - shard-dg2-set2: [INCOMPLETE][125] ([Intel XE#1195] / [Intel XE#3124]) -> [PASS][126] [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6: - shard-dg2-set2: [DMESG-WARN][127] -> [PASS][128] [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html * igt@kms_color@ctm-0-50@pipe-c-edp-1: - shard-lnl: [DMESG-WARN][129] ([Intel XE#2929]) -> [PASS][130] +1 other test pass [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-8/igt@kms_color@ctm-0-50@pipe-c-edp-1.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-lnl-8/igt@kms_color@ctm-0-50@pipe-c-edp-1.html * igt@kms_cursor_edge_walk@256x256-top-edge@pipe-a-edp-1: - shard-lnl: [FAIL][131] ([Intel XE#2577]) -> [PASS][132] +1 other test pass [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-4/igt@kms_cursor_edge_walk@256x256-top-edge@pipe-a-edp-1.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-lnl-7/igt@kms_cursor_edge_walk@256x256-top-edge@pipe-a-edp-1.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-dg2-set2: [FAIL][133] ([Intel XE#1475]) -> [PASS][134] [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-466/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-432/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html - shard-lnl: [FAIL][135] ([Intel XE#1475]) -> [PASS][136] [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-lnl-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-dg2-set2: [FAIL][137] ([Intel XE#301]) -> [PASS][138] [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3: - shard-bmg: [FAIL][139] ([Intel XE#301]) -> [PASS][140] +1 other test pass [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html * igt@kms_flip@blocking-wf_vblank: - shard-lnl: [FAIL][141] ([Intel XE#886]) -> [PASS][142] +4 other tests pass [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-7/igt@kms_flip@blocking-wf_vblank.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-lnl-3/igt@kms_flip@blocking-wf_vblank.html * igt@kms_lease@lease-uevent: - shard-lnl: [FAIL][143] -> [PASS][144] +1 other test pass [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-5/igt@kms_lease@lease-uevent.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-lnl-7/igt@kms_lease@lease-uevent.html * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race: - shard-lnl: [FAIL][145] ([Intel XE#1630]) -> [PASS][146] +1 other test pass [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-3/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-lnl-7/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race.html * igt@xe_gt_freq@freq_suspend: - shard-dg2-set2: [ABORT][147] ([Intel XE#2625]) -> [PASS][148] +1 other test pass [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-432/igt@xe_gt_freq@freq_suspend.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-463/igt@xe_gt_freq@freq_suspend.html * igt@xe_module_load@reload: - shard-dg2-set2: [FAIL][149] ([Intel XE#2136]) -> [PASS][150] [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-463/igt@xe_module_load@reload.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-435/igt@xe_module_load@reload.html - shard-bmg: [FAIL][151] ([Intel XE#2136]) -> [PASS][152] [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-bmg-6/igt@xe_module_load@reload.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-bmg-8/igt@xe_module_load@reload.html * igt@xe_pm@s2idle-basic: - shard-dg2-set2: [ABORT][153] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][154] [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-432/igt@xe_pm@s2idle-basic.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-435/igt@xe_pm@s2idle-basic.html * igt@xe_pm@s2idle-mocs: - shard-lnl: [DMESG-WARN][155] ([Intel XE#2932]) -> [PASS][156] [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-3/igt@xe_pm@s2idle-mocs.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-lnl-4/igt@xe_pm@s2idle-mocs.html * igt@xe_pm@s2idle-vm-bind-prefetch: - shard-dg2-set2: [ABORT][157] ([Intel XE#1694]) -> [PASS][158] [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-432/igt@xe_pm@s2idle-vm-bind-prefetch.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-466/igt@xe_pm@s2idle-vm-bind-prefetch.html * igt@xe_pm@s4-basic-exec: - shard-lnl: [ABORT][159] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) -> [PASS][160] [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-2/igt@xe_pm@s4-basic-exec.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-lnl-5/igt@xe_pm@s4-basic-exec.html * igt@xe_pm@s4-mocs: - shard-lnl: [ABORT][161] ([Intel XE#1794]) -> [PASS][162] [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-2/igt@xe_pm@s4-mocs.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-lnl-3/igt@xe_pm@s4-mocs.html * igt@xe_pm_residency@toggle-gt-c6: - shard-lnl: [FAIL][163] ([Intel XE#958]) -> [PASS][164] [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-4/igt@xe_pm_residency@toggle-gt-c6.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-lnl-6/igt@xe_pm_residency@toggle-gt-c6.html #### Warnings #### * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4: - shard-dg2-set2: [INCOMPLETE][165] ([Intel XE#1195]) -> [DMESG-WARN][166] ([Intel XE#3113]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][167] ([Intel XE#2509]) -> [SKIP][168] ([Intel XE#2426]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195 [Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1630]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1630 [Intel XE#1694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1694 [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#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042 [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#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [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#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [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#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472 [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509 [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#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2839]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2839 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#2929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2929 [Intel XE#2932]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2932 [Intel XE#2961]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2961 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [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#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3312 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [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 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 Build changes ------------- * IGT: IGT_8100 -> IGTPW_12056 * Linux: xe-2179-438ef86a725b59a171dba81fc258bb23a0ff536c -> xe-2180-5ce87c5ad2cbfd2b89a0347e4e4f75de2762b7a3 IGTPW_12056: 12056 IGT_8100: 84e42580f918da926481fd2fb37be01451d6ee9a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2179-438ef86a725b59a171dba81fc258bb23a0ff536c: 438ef86a725b59a171dba81fc258bb23a0ff536c xe-2180-5ce87c5ad2cbfd2b89a0347e4e4f75de2762b7a3: 5ce87c5ad2cbfd2b89a0347e4e4f75de2762b7a3 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12056/index.html [-- Attachment #2: Type: text/html, Size: 54093 bytes --] ^ permalink raw reply [flat|nested] 19+ messages in thread
* ✗ Fi.CI.BUILD: failure for lib/igt_kmod: Drop legacy kunit integration (rev4) 2024-11-07 5:52 [PATCH i-g-t v3 0/6] lib/igt_kmod: Drop legacy kunit integration Lucas De Marchi ` (9 preceding siblings ...) 2024-11-08 11:25 ` ✗ CI.xeFULL: " Patchwork @ 2024-11-14 22:00 ` Patchwork 10 siblings, 0 replies; 19+ messages in thread From: Patchwork @ 2024-11-14 22:00 UTC (permalink / raw) To: Lucas De Marchi; +Cc: igt-dev == Series Details == Series: lib/igt_kmod: Drop legacy kunit integration (rev4) URL : https://patchwork.freedesktop.org/series/140746/ State : failure == Summary == Applying: lib/igt_kmod: Drop legacy kunit fallback Applying: lib/igt_kmod: Fix leaking subtest name Applying: lib/igt_kmod: Stop passing debugfs_dir around Using index info to reconstruct a base tree... Patch failed at 0003 lib/igt_kmod: Stop passing debugfs_dir around When you have resolved this problem, run "git am --continue". If you prefer to skip this patch, run "git am --skip" instead. To restore the original branch and stop patching, run "git am --abort". ^ permalink raw reply [flat|nested] 19+ messages in thread
end of thread, other threads:[~2024-11-15 14:24 UTC | newest] Thread overview: 19+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-11-07 5:52 [PATCH i-g-t v3 0/6] lib/igt_kmod: Drop legacy kunit integration Lucas De Marchi 2024-11-07 5:52 ` [PATCH i-g-t v3 1/6] lib/igt_kmod: Drop legacy kunit fallback Lucas De Marchi 2024-11-07 5:52 ` [PATCH i-g-t v3 2/6] lib/igt_kmod: Fix leaking subtest name Lucas De Marchi 2024-11-07 5:52 ` [PATCH i-g-t v3 3/6] lib/igt_kmod: Stop passing debugfs_dir around Lucas De Marchi 2024-11-14 14:24 ` Janusz Krzysztofik 2024-11-14 20:58 ` Lucas De Marchi 2024-11-14 21:45 ` Lucas De Marchi 2024-11-15 14:24 ` Janusz Krzysztofik 2024-11-07 5:52 ` [PATCH i-g-t v3 4/6] lib/igt_kmod: Stop passing ktap around Lucas De Marchi 2024-11-14 15:00 ` Janusz Krzysztofik 2024-11-07 5:52 ` [PATCH i-g-t v3 5/6] lib/igt_ktap: Just free ktap Lucas De Marchi 2024-11-14 15:02 ` Janusz Krzysztofik 2024-11-07 5:52 ` [PATCH i-g-t v3 6/6] lib/igt_kmod: Do not leak kmod ctx Lucas De Marchi 2024-11-14 17:06 ` Janusz Krzysztofik 2024-11-07 6:22 ` ✓ CI.xeBAT: success for lib/igt_kmod: Drop legacy kunit integration (rev3) Patchwork 2024-11-07 6:27 ` ✓ Fi.CI.BAT: " Patchwork 2024-11-07 7:29 ` ✗ Fi.CI.IGT: failure " Patchwork 2024-11-08 11:25 ` ✗ CI.xeFULL: " Patchwork 2024-11-14 22:00 ` ✗ Fi.CI.BUILD: failure for lib/igt_kmod: Drop legacy kunit integration (rev4) Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox