* [PATCH 0/5] Update image assets
@ 2024-11-19 7:52 Naladala Ramanaidu
2024-11-19 7:52 ` [PATCH 1/5] data: create new data directory Naladala Ramanaidu
` (8 more replies)
0 siblings, 9 replies; 14+ messages in thread
From: Naladala Ramanaidu @ 2024-11-19 7:52 UTC (permalink / raw)
To: igt-dev; +Cc: swati2.sharma, Naladala Ramanaidu
Update image assets and improve file handling.
Naladala Ramanaidu (3):
runner/settings: Update absolute_path function to accept const char*
parameter
runner/settings: Add function to set IMGDIR environment variable
HAX patch do not merge
Naladala, Ramanaidu (2):
data: create new data directory
lib: update fopen() to accomodate imgdir
{tests => data}/1080p-left.png | Bin
{tests => data}/1080p-right.png | Bin
data/meson.build | 9 +
{tests => data}/pass.png | Bin
lib/igt_core.c | 17 +-
lib/igt_core.h | 4 +-
lib/meson.build | 1 +
meson.build | 2 +
runner/runner.c | 2 +
runner/settings.c | 15 +-
runner/settings.h | 10 +-
tests/intel-ci/fast-feedback.testlist | 168 +-------------
tests/intel-ci/xe-fast-feedback.testlist | 279 +----------------------
tests/meson.build | 6 -
14 files changed, 56 insertions(+), 457 deletions(-)
rename {tests => data}/1080p-left.png (100%)
rename {tests => data}/1080p-right.png (100%)
create mode 100644 data/meson.build
rename {tests => data}/pass.png (100%)
--
2.43.0
^ permalink raw reply [flat|nested] 14+ messages in thread* [PATCH 1/5] data: create new data directory 2024-11-19 7:52 [PATCH 0/5] Update image assets Naladala Ramanaidu @ 2024-11-19 7:52 ` Naladala Ramanaidu 2024-12-11 9:25 ` Kamil Konieczny 2024-11-19 7:52 ` [PATCH 2/5] runner/settings: Update absolute_path function to accept const char* parameter Naladala Ramanaidu ` (7 subsequent siblings) 8 siblings, 1 reply; 14+ messages in thread From: Naladala Ramanaidu @ 2024-11-19 7:52 UTC (permalink / raw) To: igt-dev; +Cc: swati2.sharma, Naladala, Ramanaidu From: "Naladala, Ramanaidu" <ramanaidu.naladala@intel.com> Placing png images inside "tests/" directory seems wrong, as these are not source files. These images should ideally be in a directory with other non-exec files, so creating a new "data/" directory to store such non-exec files. Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com> Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- {tests => data}/1080p-left.png | Bin {tests => data}/1080p-right.png | Bin data/meson.build | 9 +++++++++ {tests => data}/pass.png | Bin lib/meson.build | 1 + meson.build | 2 ++ tests/meson.build | 6 ------ 7 files changed, 12 insertions(+), 6 deletions(-) rename {tests => data}/1080p-left.png (100%) rename {tests => data}/1080p-right.png (100%) create mode 100644 data/meson.build rename {tests => data}/pass.png (100%) diff --git a/tests/1080p-left.png b/data/1080p-left.png similarity index 100% rename from tests/1080p-left.png rename to data/1080p-left.png diff --git a/tests/1080p-right.png b/data/1080p-right.png similarity index 100% rename from tests/1080p-right.png rename to data/1080p-right.png diff --git a/data/meson.build b/data/meson.build new file mode 100644 index 000000000..415cf9b6b --- /dev/null +++ b/data/meson.build @@ -0,0 +1,9 @@ +image_files = [ + '1080p-left.png', + '1080p-right.png', + 'pass.png', +] + +foreach img : image_files + configure_file(output:img, input:img, copy:true) +endforeach diff --git a/tests/pass.png b/data/pass.png similarity index 100% rename from tests/pass.png rename to data/pass.png diff --git a/lib/meson.build b/lib/meson.build index 3d459c7a3..6f8f479ff 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -238,6 +238,7 @@ foreach f: lib_sources '-DIGT_DATADIR="@0@"'.format(join_paths(prefix, datadir)), '-DIGT_SRCDIR="@0@"'.format(srcdir), '-DIGT_LOG_DOMAIN="@0@"'.format(f.split('.')[0]), + '-DIGT_IMGDIR="@0@"'.format(imgdir), ]) lib_intermediates += lib diff --git a/meson.build b/meson.build index 64f57f232..5ff646825 100644 --- a/meson.build +++ b/meson.build @@ -286,6 +286,7 @@ vmwgfxdir = join_paths(libexecdir, 'vmwgfx') mandir = get_option('mandir') pkgconfigdir = join_paths(libdir, 'pkgconfig') python3 = find_program('python3', required : true) +imgdir = join_paths(build_root, 'data') if get_option('use_rpath') # Set up runpath for the test executables towards libigt.so. @@ -381,6 +382,7 @@ endif subdir('overlay') subdir('man') subdir('docs') +subdir('data') message('Build options') message('=============') diff --git a/tests/meson.build b/tests/meson.build index 2724c7a9a..61dc7ed34 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -508,11 +508,5 @@ if not meson.is_cross_build() output : 'gem_stress.testlist') endif -image_files = [ - '1080p-left.png', - '1080p-right.png', - 'pass.png', -] -install_data(sources : image_files, install_dir : datadir) subdir('intel-ci') -- 2.43.0 ^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [PATCH 1/5] data: create new data directory 2024-11-19 7:52 ` [PATCH 1/5] data: create new data directory Naladala Ramanaidu @ 2024-12-11 9:25 ` Kamil Konieczny 0 siblings, 0 replies; 14+ messages in thread From: Kamil Konieczny @ 2024-12-11 9:25 UTC (permalink / raw) To: Naladala Ramanaidu; +Cc: igt-dev, swati2.sharma Hi Naladala, On 2024-11-19 at 13:22:55 +0530, Naladala Ramanaidu wrote: > From: "Naladala, Ramanaidu" <ramanaidu.naladala@intel.com> This should be the same as your s-o-b like: From: Naladala Ramanaidu <ramanaidu.naladala@intel.com> As for subject, could you improve it a little? [PATCH 1/5] data: Move PNG images to new data directory Or even let it be 'data/images'? So it would be: [PATCH 1/5] data/images: Move PNG images to new directory Rest looks good. Regards, Kamil > > Placing png images inside "tests/" directory seems wrong, as these > are not source files. These images should ideally be in a directory > with other non-exec files, so creating a new "data/" directory to > store such non-exec files. > > Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com> > Signed-off-by: Swati Sharma <swati2.sharma@intel.com> > --- > {tests => data}/1080p-left.png | Bin > {tests => data}/1080p-right.png | Bin > data/meson.build | 9 +++++++++ > {tests => data}/pass.png | Bin > lib/meson.build | 1 + > meson.build | 2 ++ > tests/meson.build | 6 ------ > 7 files changed, 12 insertions(+), 6 deletions(-) > rename {tests => data}/1080p-left.png (100%) > rename {tests => data}/1080p-right.png (100%) > create mode 100644 data/meson.build > rename {tests => data}/pass.png (100%) > > diff --git a/tests/1080p-left.png b/data/1080p-left.png > similarity index 100% > rename from tests/1080p-left.png > rename to data/1080p-left.png > diff --git a/tests/1080p-right.png b/data/1080p-right.png > similarity index 100% > rename from tests/1080p-right.png > rename to data/1080p-right.png > diff --git a/data/meson.build b/data/meson.build > new file mode 100644 > index 000000000..415cf9b6b > --- /dev/null > +++ b/data/meson.build > @@ -0,0 +1,9 @@ > +image_files = [ > + '1080p-left.png', > + '1080p-right.png', > + 'pass.png', > +] > + > +foreach img : image_files > + configure_file(output:img, input:img, copy:true) > +endforeach > diff --git a/tests/pass.png b/data/pass.png > similarity index 100% > rename from tests/pass.png > rename to data/pass.png > diff --git a/lib/meson.build b/lib/meson.build > index 3d459c7a3..6f8f479ff 100644 > --- a/lib/meson.build > +++ b/lib/meson.build > @@ -238,6 +238,7 @@ foreach f: lib_sources > '-DIGT_DATADIR="@0@"'.format(join_paths(prefix, datadir)), > '-DIGT_SRCDIR="@0@"'.format(srcdir), > '-DIGT_LOG_DOMAIN="@0@"'.format(f.split('.')[0]), > + '-DIGT_IMGDIR="@0@"'.format(imgdir), > ]) > > lib_intermediates += lib > diff --git a/meson.build b/meson.build > index 64f57f232..5ff646825 100644 > --- a/meson.build > +++ b/meson.build > @@ -286,6 +286,7 @@ vmwgfxdir = join_paths(libexecdir, 'vmwgfx') > mandir = get_option('mandir') > pkgconfigdir = join_paths(libdir, 'pkgconfig') > python3 = find_program('python3', required : true) > +imgdir = join_paths(build_root, 'data') > > if get_option('use_rpath') > # Set up runpath for the test executables towards libigt.so. > @@ -381,6 +382,7 @@ endif > subdir('overlay') > subdir('man') > subdir('docs') > +subdir('data') > > message('Build options') > message('=============') > diff --git a/tests/meson.build b/tests/meson.build > index 2724c7a9a..61dc7ed34 100644 > --- a/tests/meson.build > +++ b/tests/meson.build > @@ -508,11 +508,5 @@ if not meson.is_cross_build() > output : 'gem_stress.testlist') > endif > > -image_files = [ > - '1080p-left.png', > - '1080p-right.png', > - 'pass.png', > -] > -install_data(sources : image_files, install_dir : datadir) > > subdir('intel-ci') > -- > 2.43.0 > ^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH 2/5] runner/settings: Update absolute_path function to accept const char* parameter 2024-11-19 7:52 [PATCH 0/5] Update image assets Naladala Ramanaidu 2024-11-19 7:52 ` [PATCH 1/5] data: create new data directory Naladala Ramanaidu @ 2024-11-19 7:52 ` Naladala Ramanaidu 2024-11-19 7:52 ` [PATCH 3/5] runner/settings: Add function to set IMGDIR environment variable Naladala Ramanaidu ` (6 subsequent siblings) 8 siblings, 0 replies; 14+ messages in thread From: Naladala Ramanaidu @ 2024-11-19 7:52 UTC (permalink / raw) To: igt-dev; +Cc: swati2.sharma, Naladala Ramanaidu Modified the absolute_path function in settings.c to take a const char* parameter instead of char*. Updated the corresponding declaration in settings.h.This change ensures that the input path is not modified within the function, improving code safety and clarity. Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com> --- runner/settings.c | 2 +- runner/settings.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/runner/settings.c b/runner/settings.c index 0d27e7af3..dd4b08dd7 100644 --- a/runner/settings.c +++ b/runner/settings.c @@ -565,7 +565,7 @@ static char *_basename(const char *path) return tmpname; } -char *absolute_path(char *path) +char *absolute_path(const char *path) { char *result = NULL; char *base, *dir; diff --git a/runner/settings.h b/runner/settings.h index 8335f0b8c..6246d0c3d 100644 --- a/runner/settings.h +++ b/runner/settings.h @@ -135,7 +135,7 @@ bool parse_options(int argc, char **argv, bool validate_settings(struct settings *settings); /* TODO: Better place for this */ -char *absolute_path(char *path); +char *absolute_path(const char *path); /** * serialize_settings: -- 2.43.0 ^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH 3/5] runner/settings: Add function to set IMGDIR environment variable 2024-11-19 7:52 [PATCH 0/5] Update image assets Naladala Ramanaidu 2024-11-19 7:52 ` [PATCH 1/5] data: create new data directory Naladala Ramanaidu 2024-11-19 7:52 ` [PATCH 2/5] runner/settings: Update absolute_path function to accept const char* parameter Naladala Ramanaidu @ 2024-11-19 7:52 ` Naladala Ramanaidu 2024-12-11 9:14 ` Kamil Konieczny 2024-11-19 7:52 ` [PATCH 4/5] lib: update fopen() to accomodate imgdir Naladala Ramanaidu ` (5 subsequent siblings) 8 siblings, 1 reply; 14+ messages in thread From: Naladala Ramanaidu @ 2024-11-19 7:52 UTC (permalink / raw) To: igt-dev; +Cc: swati2.sharma, Naladala Ramanaidu Introduced set_imgdir() function in settings.c to set the IMGDIR environment variable. The function uses absolute_path() to convert the relative path "../share/igt-gpu-tools" to an absolute path. Added the declaration of set_imgdir() in settings.h with a brief description. Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com> --- runner/runner.c | 2 ++ runner/settings.c | 13 +++++++++++++ runner/settings.h | 8 ++++++++ 3 files changed, 23 insertions(+) diff --git a/runner/runner.c b/runner/runner.c index 4855ad641..a52834197 100644 --- a/runner/runner.c +++ b/runner/runner.c @@ -49,6 +49,8 @@ int main(int argc, char **argv) exitcode = 1; } + unsetenv("IMGDIR"); + printf("Done.\n"); return exitcode; } diff --git a/runner/settings.c b/runner/settings.c index dd4b08dd7..d42f3a68a 100644 --- a/runner/settings.c +++ b/runner/settings.c @@ -587,6 +587,15 @@ char *absolute_path(const char *path) return result; } +int set_imgdir(void) +{ + const char *path = "../share/igt-gpu-tools"; + char *abpath; + + abpath = absolute_path(path); + return setenv("IMGDIR", abpath, 1); +} + static char *bin_path(char *fname) { char *path, *p; @@ -863,6 +872,10 @@ bool parse_options(int argc, char **argv, settings->test_root = absolute_path(env_test_root); } + if (set_imgdir() != 0) { + usage(stderr, "img dir not set"); + } + if (!settings->test_root) { usage(stderr, "Test root not set"); goto error; diff --git a/runner/settings.h b/runner/settings.h index 6246d0c3d..a7abe19fd 100644 --- a/runner/settings.h +++ b/runner/settings.h @@ -150,4 +150,12 @@ bool serialize_settings(struct settings *settings); bool read_settings_from_file(struct settings *settings, FILE* f); bool read_settings_from_dir(struct settings *settings, int dirfd); +/** + * set_imgdir: + * + * The function will set the environment variable. + * + */ +int set_imgdir(void); + #endif -- 2.43.0 ^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [PATCH 3/5] runner/settings: Add function to set IMGDIR environment variable 2024-11-19 7:52 ` [PATCH 3/5] runner/settings: Add function to set IMGDIR environment variable Naladala Ramanaidu @ 2024-12-11 9:14 ` Kamil Konieczny 2024-12-13 13:10 ` Sharma, Swati2 0 siblings, 1 reply; 14+ messages in thread From: Kamil Konieczny @ 2024-12-11 9:14 UTC (permalink / raw) To: Naladala Ramanaidu; +Cc: igt-dev, swati2.sharma Hi Naladala, On 2024-11-19 at 13:22:57 +0530, Naladala Ramanaidu wrote: > Introduced set_imgdir() function in settings.c to set the IMGDIR imho better name is IGT_DATA or IGT_IMAGES, also you do not need to write about which file you changed, it is already in patch itself. Swati, do you have suggestions here for this env var? > environment variable. The function uses absolute_path() to convert > the relative path "../share/igt-gpu-tools" to an absolute path. > Added the declaration of set_imgdir() in settings.h with a brief > description. Drop this "C to description", it is in patch. > > Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com> > --- > runner/runner.c | 2 ++ > runner/settings.c | 13 +++++++++++++ > runner/settings.h | 8 ++++++++ > 3 files changed, 23 insertions(+) > > diff --git a/runner/runner.c b/runner/runner.c > index 4855ad641..a52834197 100644 > --- a/runner/runner.c > +++ b/runner/runner.c > @@ -49,6 +49,8 @@ int main(int argc, char **argv) > exitcode = 1; > } > > + unsetenv("IMGDIR"); imho you should have a flag and do not unset this if user sets this before runner starts, e.g. honor user environment. > + Remove this empty line. > printf("Done.\n"); Why this print is here? While at this, could you add newline here? > return exitcode; > } > diff --git a/runner/settings.c b/runner/settings.c > index dd4b08dd7..d42f3a68a 100644 > --- a/runner/settings.c > +++ b/runner/settings.c > @@ -587,6 +587,15 @@ char *absolute_path(const char *path) > return result; > } > > +int set_imgdir(void) > +{ > + const char *path = "../share/igt-gpu-tools"; > + char *abpath; > + > + abpath = absolute_path(path); > + return setenv("IMGDIR", abpath, 1); Repeated string here shows we need a global const char for it. > +} > + > static char *bin_path(char *fname) > { > char *path, *p; > @@ -863,6 +872,10 @@ bool parse_options(int argc, char **argv, > settings->test_root = absolute_path(env_test_root); > } > > + if (set_imgdir() != 0) { > + usage(stderr, "img dir not set"); > + } > + > if (!settings->test_root) { > usage(stderr, "Test root not set"); > goto error; > diff --git a/runner/settings.h b/runner/settings.h > index 6246d0c3d..a7abe19fd 100644 > --- a/runner/settings.h > +++ b/runner/settings.h > @@ -150,4 +150,12 @@ bool serialize_settings(struct settings *settings); > bool read_settings_from_file(struct settings *settings, FILE* f); > bool read_settings_from_dir(struct settings *settings, int dirfd); > > +/** > + * set_imgdir: > + * > + * The function will set the environment variable. > + * > + */ Description is needed in C source, not in header. Regards, Kamil > +int set_imgdir(void); > + > #endif > -- > 2.43.0 > ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH 3/5] runner/settings: Add function to set IMGDIR environment variable 2024-12-11 9:14 ` Kamil Konieczny @ 2024-12-13 13:10 ` Sharma, Swati2 0 siblings, 0 replies; 14+ messages in thread From: Sharma, Swati2 @ 2024-12-13 13:10 UTC (permalink / raw) To: Kamil Konieczny, Naladala Ramanaidu, igt-dev Hi Ramanaidu, On 11-12-2024 02:44 pm, Kamil Konieczny wrote: > Hi Naladala, > On 2024-11-19 at 13:22:57 +0530, Naladala Ramanaidu wrote: >> Introduced set_imgdir() function in settings.c to set the IMGDIR > imho better name is IGT_DATA or IGT_IMAGES, also you do not > need to write about which file you changed, it is already in patch > itself. > > Swati, do you have suggestions here for this env var? Agree with Kamil, IGT_DATA might be better choice for environment variable which is inline with other env var too like IGT_RUNNER_DISABLE_SOCKET_COMMUNICATION, IGT_HOOK*, etc. >> environment variable. The function uses absolute_path() to convert >> the relative path "../share/igt-gpu-tools" to an absolute path. >> Added the declaration of set_imgdir() in settings.h with a brief >> description. > Drop this "C to description", it is in patch. > >> Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com> >> --- >> runner/runner.c | 2 ++ >> runner/settings.c | 13 +++++++++++++ >> runner/settings.h | 8 ++++++++ >> 3 files changed, 23 insertions(+) >> >> diff --git a/runner/runner.c b/runner/runner.c >> index 4855ad641..a52834197 100644 >> --- a/runner/runner.c >> +++ b/runner/runner.c >> @@ -49,6 +49,8 @@ int main(int argc, char **argv) >> exitcode = 1; >> } >> >> + unsetenv("IMGDIR"); > imho you should have a flag and do not unset this > if user sets this before runner starts, e.g. honor > user environment. > >> + > Remove this empty line. > >> printf("Done.\n"); > Why this print is here? > > While at this, could you add newline here? > >> return exitcode; >> } >> diff --git a/runner/settings.c b/runner/settings.c >> index dd4b08dd7..d42f3a68a 100644 >> --- a/runner/settings.c >> +++ b/runner/settings.c >> @@ -587,6 +587,15 @@ char *absolute_path(const char *path) >> return result; >> } >> >> +int set_imgdir(void) >> +{ >> + const char *path = "../share/igt-gpu-tools"; >> + char *abpath; >> + >> + abpath = absolute_path(path); >> + return setenv("IMGDIR", abpath, 1); > Repeated string here shows we need a global const char for it. > >> +} >> + >> static char *bin_path(char *fname) >> { >> char *path, *p; >> @@ -863,6 +872,10 @@ bool parse_options(int argc, char **argv, >> settings->test_root = absolute_path(env_test_root); >> } >> >> + if (set_imgdir() != 0) { >> + usage(stderr, "img dir not set"); >> + } >> + >> if (!settings->test_root) { >> usage(stderr, "Test root not set"); >> goto error; >> diff --git a/runner/settings.h b/runner/settings.h >> index 6246d0c3d..a7abe19fd 100644 >> --- a/runner/settings.h >> +++ b/runner/settings.h >> @@ -150,4 +150,12 @@ bool serialize_settings(struct settings *settings); >> bool read_settings_from_file(struct settings *settings, FILE* f); >> bool read_settings_from_dir(struct settings *settings, int dirfd); >> >> +/** >> + * set_imgdir: >> + * >> + * The function will set the environment variable. >> + * >> + */ > Description is needed in C source, not in header. > > Regards, > Kamil > >> +int set_imgdir(void); >> + >> #endif >> -- >> 2.43.0 >> ^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH 4/5] lib: update fopen() to accomodate imgdir 2024-11-19 7:52 [PATCH 0/5] Update image assets Naladala Ramanaidu ` (2 preceding siblings ...) 2024-11-19 7:52 ` [PATCH 3/5] runner/settings: Add function to set IMGDIR environment variable Naladala Ramanaidu @ 2024-11-19 7:52 ` Naladala Ramanaidu 2024-11-20 3:06 ` Reddy Guddati, Santhosh 2024-11-19 7:52 ` [PATCH 5/5] HAX patch do not merge Naladala Ramanaidu ` (4 subsequent siblings) 8 siblings, 1 reply; 14+ messages in thread From: Naladala Ramanaidu @ 2024-11-19 7:52 UTC (permalink / raw) To: igt-dev; +Cc: swati2.sharma, Naladala, Ramanaidu From: "Naladala, Ramanaidu" <ramanaidu.naladala@intel.com> Update fopen() to accomodate imgage directory path. Tests like kms_3d use this function while creating fb from png image. Signed-off-by: Ramanaidu Naladala <ramanaidu.naladala@intel.com> Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- lib/igt_core.c | 17 +++++++++++++++-- lib/igt_core.h | 4 ++-- 2 files changed, 17 insertions(+), 4 deletions(-) diff --git a/lib/igt_core.c b/lib/igt_core.c index 407f7b551..8dae8f51d 100644 --- a/lib/igt_core.c +++ b/lib/igt_core.c @@ -3306,10 +3306,11 @@ void igt_reset_timeout(void) } FILE *__igt_fopen_data(const char* igt_srcdir, const char* igt_datadir, - const char* filename) + const char* igt_imgdir, const char* filename) { char path[PATH_MAX]; FILE *fp; + char *abpath; snprintf(path, sizeof(path), "%s/%s", igt_datadir, filename); fp = fopen(path, "r"); @@ -3317,8 +3318,20 @@ FILE *__igt_fopen_data(const char* igt_srcdir, const char* igt_datadir, snprintf(path, sizeof(path), "%s/%s", igt_srcdir, filename); fp = fopen(path, "r"); } + + if (!fp) { + snprintf(path, sizeof(path), "%s/%s", igt_imgdir, filename); + fp = fopen(path, "r"); + } + + if (!fp) { + abpath = getenv("IMGDIR"); + snprintf(path, sizeof(path), "%s/%s", abpath, filename); + fp = fopen(path, "r"); + } + if (!fp) { - snprintf(path, sizeof(path), "./%s", filename); + snprintf(path, sizeof(path), "./data/%s", filename); fp = fopen(path, "r"); } diff --git a/lib/igt_core.h b/lib/igt_core.h index 90f57402f..5b058a8d0 100644 --- a/lib/igt_core.h +++ b/lib/igt_core.h @@ -1457,7 +1457,7 @@ static inline uint32_t igt_seconds_elapsed(struct timespec *start) void igt_reset_timeout(void); FILE *__igt_fopen_data(const char* igt_srcdir, const char* igt_datadir, - const char* filename); + const char* igt_imgdir, const char* filename); /** * igt_fopen_data: * @filename: filename to open. @@ -1466,7 +1466,7 @@ FILE *__igt_fopen_data(const char* igt_srcdir, const char* igt_datadir, * then from build directory, and finally from current directory. */ #define igt_fopen_data(filename) \ - __igt_fopen_data(IGT_SRCDIR, IGT_DATADIR, filename) + __igt_fopen_data(IGT_SRCDIR, IGT_DATADIR, IGT_IMGDIR, filename) int igt_system(const char *command); int igt_system_quiet(const char *command); -- 2.43.0 ^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [PATCH 4/5] lib: update fopen() to accomodate imgdir 2024-11-19 7:52 ` [PATCH 4/5] lib: update fopen() to accomodate imgdir Naladala Ramanaidu @ 2024-11-20 3:06 ` Reddy Guddati, Santhosh 0 siblings, 0 replies; 14+ messages in thread From: Reddy Guddati, Santhosh @ 2024-11-20 3:06 UTC (permalink / raw) To: igt-dev Hi Rama, On 19-11-2024 13:22, Naladala Ramanaidu wrote: > From: "Naladala, Ramanaidu" <ramanaidu.naladala@intel.com> > > Update fopen() to accomodate imgage directory path. Tests like kms_3d > use this function while creating fb from png image. > > Signed-off-by: Ramanaidu Naladala <ramanaidu.naladala@intel.com> > Signed-off-by: Swati Sharma <swati2.sharma@intel.com> > --- > lib/igt_core.c | 17 +++++++++++++++-- > lib/igt_core.h | 4 ++-- > 2 files changed, 17 insertions(+), 4 deletions(-) > > diff --git a/lib/igt_core.c b/lib/igt_core.c > index 407f7b551..8dae8f51d 100644 > --- a/lib/igt_core.c > +++ b/lib/igt_core.c > @@ -3306,10 +3306,11 @@ void igt_reset_timeout(void) > } > > FILE *__igt_fopen_data(const char* igt_srcdir, const char* igt_datadir, > - const char* filename) > + const char* igt_imgdir, const char* filename) > { > char path[PATH_MAX]; > FILE *fp; > + char *abpath; > > snprintf(path, sizeof(path), "%s/%s", igt_datadir, filename); > fp = fopen(path, "r"); > @@ -3317,8 +3318,20 @@ FILE *__igt_fopen_data(const char* igt_srcdir, const char* igt_datadir, > snprintf(path, sizeof(path), "%s/%s", igt_srcdir, filename); > fp = fopen(path, "r"); > } > + > + if (!fp) { > + snprintf(path, sizeof(path), "%s/%s", igt_imgdir, filename); > + fp = fopen(path, "r"); > + } > + > + if (!fp) { > + abpath = getenv("IMGDIR"); >> check for the return value of getenv before usig abpath. if (abpath) {} > + snprintf(path, sizeof(path), "%s/%s", abpath, filename); > + fp = fopen(path, "r"); > + } > + > if (!fp) { > - snprintf(path, sizeof(path), "./%s", filename); > + snprintf(path, sizeof(path), "./data/%s", filename); > fp = fopen(path, "r"); > } >> Also , imo It would be better to move the repeated code for constructing path to a seperate helper function. > > diff --git a/lib/igt_core.h b/lib/igt_core.h > index 90f57402f..5b058a8d0 100644 > --- a/lib/igt_core.h > +++ b/lib/igt_core.h > @@ -1457,7 +1457,7 @@ static inline uint32_t igt_seconds_elapsed(struct timespec *start) > void igt_reset_timeout(void); > > FILE *__igt_fopen_data(const char* igt_srcdir, const char* igt_datadir, > - const char* filename); > + const char* igt_imgdir, const char* filename); > /** > * igt_fopen_data: > * @filename: filename to open. > @@ -1466,7 +1466,7 @@ FILE *__igt_fopen_data(const char* igt_srcdir, const char* igt_datadir, > * then from build directory, and finally from current directory. > */ > #define igt_fopen_data(filename) \ > - __igt_fopen_data(IGT_SRCDIR, IGT_DATADIR, filename) > + __igt_fopen_data(IGT_SRCDIR, IGT_DATADIR, IGT_IMGDIR, filename) > > int igt_system(const char *command); > int igt_system_quiet(const char *command); ^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH 5/5] HAX patch do not merge 2024-11-19 7:52 [PATCH 0/5] Update image assets Naladala Ramanaidu ` (3 preceding siblings ...) 2024-11-19 7:52 ` [PATCH 4/5] lib: update fopen() to accomodate imgdir Naladala Ramanaidu @ 2024-11-19 7:52 ` Naladala Ramanaidu 2024-11-19 22:42 ` ✗ GitLab.Pipeline: warning for Update image assets Patchwork ` (3 subsequent siblings) 8 siblings, 0 replies; 14+ messages in thread From: Naladala Ramanaidu @ 2024-11-19 7:52 UTC (permalink / raw) To: igt-dev; +Cc: swati2.sharma, Naladala Ramanaidu HAX patch do not merge Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com> --- tests/intel-ci/fast-feedback.testlist | 168 +------------- tests/intel-ci/xe-fast-feedback.testlist | 279 +---------------------- 2 files changed, 2 insertions(+), 445 deletions(-) diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist index be0965110..d8fae0172 100644 --- a/tests/intel-ci/fast-feedback.testlist +++ b/tests/intel-ci/fast-feedback.testlist @@ -2,170 +2,4 @@ igt@i915_module_load@load # Keep alphabetically sorted by default -igt@core_auth@basic-auth -igt@debugfs_test@read_all_entries -igt@debugfs_test@basic-hwmon -igt@debugfs_test@sysfs -igt@fbdev@eof -igt@fbdev@info -igt@fbdev@nullptr -igt@fbdev@read -igt@fbdev@write -igt@gem_basic@bad-close -igt@gem_basic@create-close -igt@gem_basic@create-fd-close -igt@gem_busy@busy@all-engines -igt@gem_close_race@basic-process -igt@gem_close_race@basic-threads -igt@gem_ctx_create@basic -igt@gem_ctx_create@basic-files -igt@gem_ctx_exec@basic -igt@gem_exec_basic@basic -igt@gem_exec_create@basic -igt@gem_exec_fence@basic-busy -igt@gem_exec_fence@basic-wait -igt@gem_exec_fence@basic-await -igt@gem_exec_fence@nb-await -igt@gem_exec_gttfill@basic -igt@gem_exec_parallel@engines -igt@gem_exec_store@basic -igt@gem_flink_basic@bad-flink -igt@gem_flink_basic@bad-open -igt@gem_flink_basic@basic -igt@gem_flink_basic@double-flink -igt@gem_flink_basic@flink-lifetime -igt@gem_huc_copy@huc-copy -igt@gem_linear_blits@basic -igt@gem_mmap@basic -igt@gem_mmap_gtt@basic -igt@gem_render_linear_blits@basic -igt@gem_render_tiled_blits@basic -igt@gem_ringfill@basic-all -igt@gem_softpin@allocator-basic -igt@gem_softpin@allocator-basic-reserve -igt@gem_softpin@safe-alignment -igt@gem_sync@basic-all -igt@gem_sync@basic-each -igt@gem_tiled_blits@basic -igt@gem_tiled_fence_blits@basic -igt@gem_tiled_pread_basic -igt@gem_wait@busy@all-engines -igt@gem_wait@wait@all-engines -igt@i915_getparams_basic@basic-eu-total -igt@i915_getparams_basic@basic-subslice-total -igt@i915_hangman@error-state-basic -igt@i915_pciid -igt@kms_addfb_basic@addfb25-4-tiled -igt@kms_addfb_basic@addfb25-bad-modifier -igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling -igt@kms_addfb_basic@addfb25-modifier-no-flag -igt@kms_addfb_basic@addfb25-x-tiled-legacy -igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy -igt@kms_addfb_basic@addfb25-yf-tiled-legacy -igt@kms_addfb_basic@addfb25-y-tiled-legacy -igt@kms_addfb_basic@addfb25-y-tiled-small-legacy -igt@kms_addfb_basic@bad-pitch-0 -igt@kms_addfb_basic@bad-pitch-1024 -igt@kms_addfb_basic@bad-pitch-128 -igt@kms_addfb_basic@bad-pitch-256 -igt@kms_addfb_basic@bad-pitch-32 -igt@kms_addfb_basic@bad-pitch-63 -igt@kms_addfb_basic@bad-pitch-65536 -igt@kms_addfb_basic@bad-pitch-999 -igt@kms_addfb_basic@basic -igt@kms_addfb_basic@basic-x-tiled-legacy -igt@kms_addfb_basic@basic-y-tiled-legacy -igt@kms_addfb_basic@bo-too-small -igt@kms_addfb_basic@bo-too-small-due-to-tiling -igt@kms_addfb_basic@clobberred-modifier -igt@kms_addfb_basic@framebuffer-vs-set-tiling -igt@kms_addfb_basic@invalid-get-prop -igt@kms_addfb_basic@invalid-get-prop-any -igt@kms_addfb_basic@invalid-set-prop -igt@kms_addfb_basic@invalid-set-prop-any -igt@kms_addfb_basic@no-handle -igt@kms_addfb_basic@size-max -igt@kms_addfb_basic@small-bo -igt@kms_addfb_basic@tile-pitch-mismatch -igt@kms_addfb_basic@too-high -igt@kms_addfb_basic@too-wide -igt@kms_addfb_basic@unused-handle -igt@kms_addfb_basic@unused-modifier -igt@kms_addfb_basic@unused-offsets -igt@kms_addfb_basic@unused-pitches -igt@kms_busy@basic -igt@kms_prop_blob@basic -igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic -igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy -igt@kms_cursor_legacy@basic-flip-after-cursor-atomic -igt@kms_cursor_legacy@basic-flip-after-cursor-legacy -igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size -igt@kms_cursor_legacy@basic-flip-before-cursor-atomic -igt@kms_cursor_legacy@basic-flip-before-cursor-legacy -igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size -igt@kms_dsc@dsc-basic -igt@kms_flip@basic-flip-vs-dpms -igt@kms_flip@basic-flip-vs-modeset -igt@kms_flip@basic-flip-vs-wf_vblank -igt@kms_flip@basic-plain-flip -igt@kms_force_connector_basic@force-connector-state -igt@kms_force_connector_basic@force-edid -igt@kms_force_connector_basic@force-load-detect -igt@kms_force_connector_basic@prune-stale-modes -igt@kms_frontbuffer_tracking@basic -igt@kms_hdmi_inject@inject-audio -igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24 -igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12 -igt@kms_pipe_crc_basic@hang-read-crc -igt@kms_pipe_crc_basic@nonblocking-crc -igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence -igt@kms_pipe_crc_basic@read-crc -igt@kms_pipe_crc_basic@read-crc-frame-sequence -igt@kms_pm_backlight@basic-brightness -igt@kms_pm_rpm@basic-pci-d3-state -igt@kms_pm_rpm@basic-rte -igt@kms_psr@psr-primary-page-flip -igt@kms_psr@psr-cursor-plane-move -igt@kms_psr@psr-sprite-plane-onoff -igt@kms_psr@psr-primary-mmap-gtt -igt@kms_setmode@basic-clone-single-crtc -igt@i915_pm_rps@basic-api -igt@prime_self_import@basic-llseek-bad -igt@prime_self_import@basic-llseek-size -igt@prime_self_import@basic-with_fd_dup -igt@prime_self_import@basic-with_one_bo -igt@prime_self_import@basic-with_one_bo_two_files -igt@prime_self_import@basic-with_two_bos -igt@prime_vgem@basic-fence-flip -igt@prime_vgem@basic-fence-mmap -igt@prime_vgem@basic-fence-read -igt@prime_vgem@basic-gtt -igt@prime_vgem@basic-read -igt@prime_vgem@basic-write -igt@vgem_basic@setversion -igt@vgem_basic@create -igt@vgem_basic@debugfs -igt@vgem_basic@dmabuf-export -igt@vgem_basic@dmabuf-fence -igt@vgem_basic@dmabuf-fence-before -igt@vgem_basic@dmabuf-mmap -igt@vgem_basic@mmap -igt@vgem_basic@second-client -igt@vgem_basic@sysfs - -# All tests that do module unloading and reloading are executed last. -# They will sometimes reveal issues of earlier tests leaving the -# driver in a broken state that is not otherwise noticed in that test. - -igt@core_hotunplug@unbind-rebind -igt@vgem_basic@unload -igt@i915_module_load@reload -igt@gem_lmem_swapping@basic -igt@gem_lmem_swapping@parallel-random-engines -igt@gem_lmem_swapping@random-engines -igt@gem_lmem_swapping@verify-random -igt@i915_pm_rpm@module-reload - -# Kernel selftests -igt@i915_selftest@live -igt@dmabuf@all-tests +igt@kms_3d diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist index 727be9230..c1c1f735e 100644 --- a/tests/intel-ci/xe-fast-feedback.testlist +++ b/tests/intel-ci/xe-fast-feedback.testlist @@ -1,281 +1,4 @@ # Should be the first test igt@xe_module_load@load -igt@fbdev@eof -igt@fbdev@info -igt@fbdev@nullptr -igt@fbdev@read -igt@fbdev@write - -igt@kms_addfb_basic@addfb25-4-tiled -igt@kms_addfb_basic@addfb25-bad-modifier -igt@kms_addfb_basic@addfb25-modifier-no-flag -igt@kms_addfb_basic@addfb25-x-tiled-legacy -igt@kms_addfb_basic@addfb25-yf-tiled-legacy -igt@kms_addfb_basic@addfb25-y-tiled-legacy -igt@kms_addfb_basic@addfb25-y-tiled-small-legacy -igt@kms_addfb_basic@bad-pitch-0 -igt@kms_addfb_basic@bad-pitch-1024 -igt@kms_addfb_basic@bad-pitch-128 -igt@kms_addfb_basic@bad-pitch-256 -igt@kms_addfb_basic@bad-pitch-32 -igt@kms_addfb_basic@bad-pitch-63 -igt@kms_addfb_basic@bad-pitch-65536 -igt@kms_addfb_basic@bad-pitch-999 -igt@kms_addfb_basic@basic -igt@kms_addfb_basic@basic-x-tiled-legacy -igt@kms_addfb_basic@bo-too-small -igt@kms_addfb_basic@invalid-get-prop -igt@kms_addfb_basic@invalid-get-prop-any -igt@kms_addfb_basic@invalid-set-prop -igt@kms_addfb_basic@invalid-set-prop-any -igt@kms_addfb_basic@no-handle -igt@kms_addfb_basic@size-max -igt@kms_addfb_basic@small-bo -igt@kms_addfb_basic@too-high -igt@kms_addfb_basic@too-wide -igt@kms_addfb_basic@unused-handle -igt@kms_addfb_basic@unused-modifier -igt@kms_addfb_basic@unused-offsets -igt@kms_addfb_basic@unused-pitches -igt@kms_cursor_legacy@basic-flip-after-cursor-atomic -igt@kms_cursor_legacy@basic-flip-after-cursor-legacy -igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size -igt@kms_cursor_legacy@basic-flip-before-cursor-atomic -igt@kms_cursor_legacy@basic-flip-before-cursor-legacy -igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size -igt@kms_dsc@dsc-basic -igt@kms_flip@basic-flip-vs-dpms -igt@kms_flip@basic-flip-vs-modeset -igt@kms_flip@basic-flip-vs-wf_vblank -igt@kms_flip@basic-plain-flip -igt@kms_force_connector_basic@force-connector-state -igt@kms_force_connector_basic@force-edid -igt@kms_force_connector_basic@prune-stale-modes -igt@kms_frontbuffer_tracking@basic -igt@kms_hdmi_inject@inject-audio -igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24 -igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12 -igt@kms_pipe_crc_basic@hang-read-crc -igt@kms_pipe_crc_basic@nonblocking-crc -igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence -igt@kms_pipe_crc_basic@read-crc -igt@kms_pipe_crc_basic@read-crc-frame-sequence -igt@kms_prop_blob@basic -igt@kms_psr@psr-primary-page-flip -igt@kms_psr@psr-cursor-plane-move -igt@kms_psr@psr-sprite-plane-onoff -igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-all -igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1 -igt@xe_compute@compute-square -igt@xe_create@create-execqueues-noleak -igt@xe_create@create-execqueues-leak -igt@xe_create@create-invalid-mbz -igt@xe_create@create-massive-size -igt@xe_debugfs@base -igt@xe_debugfs@gt -igt@xe_debugfs@forcewake -igt@xe_dma_buf_sync@export-dma-buf-once-write-sync -igt@xe_dma_buf_sync@export-dma-buf-once-read-sync -igt@xe_dma_buf_sync@export-dma-buf-once-read-write-sync -igt@xe_dma_buf_sync@export-dma-buf-once-write-read-sync -igt@xe_evict_ccs@evict-overcommit-simple -igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd -igt@xe_exec_atomic@basic-dec-all -igt@xe_exec_atomic@basic-inc-all -igt@xe_exec_balancer@twice-virtual-basic -igt@xe_exec_balancer@no-exec-virtual-basic -igt@xe_exec_balancer@twice-cm-virtual-basic -igt@xe_exec_balancer@no-exec-cm-virtual-basic -igt@xe_exec_balancer@twice-virtual-userptr -igt@xe_exec_balancer@twice-cm-virtual-userptr -igt@xe_exec_balancer@twice-virtual-rebind -igt@xe_exec_balancer@twice-cm-virtual-rebind -igt@xe_exec_balancer@twice-virtual-userptr-rebind -igt@xe_exec_balancer@twice-cm-virtual-userptr-rebind -igt@xe_exec_balancer@twice-virtual-userptr-invalidate -igt@xe_exec_balancer@twice-cm-virtual-userptr-invalidate -igt@xe_exec_balancer@twice-parallel-basic -igt@xe_exec_balancer@no-exec-parallel-basic -igt@xe_exec_balancer@twice-parallel-userptr -igt@xe_exec_balancer@twice-parallel-rebind -igt@xe_exec_balancer@twice-parallel-userptr-rebind -igt@xe_exec_balancer@twice-parallel-userptr-invalidate -igt@xe_exec_basic@twice-basic -igt@xe_exec_basic@no-exec-basic -igt@xe_exec_basic@twice-basic-defer-mmap -igt@xe_exec_basic@twice-basic-defer-bind -igt@xe_exec_basic@twice-userptr -igt@xe_exec_basic@twice-rebind -igt@xe_exec_basic@twice-userptr-rebind -igt@xe_exec_basic@twice-userptr-invalidate -igt@xe_exec_basic@no-exec-userptr-invalidate -igt@xe_exec_basic@twice-bindexecqueue -igt@xe_exec_basic@no-exec-bindexecqueue -igt@xe_exec_basic@twice-bindexecqueue-userptr -igt@xe_exec_basic@twice-bindexecqueue-rebind -igt@xe_exec_basic@twice-bindexecqueue-userptr-rebind -igt@xe_exec_basic@twice-bindexecqueue-userptr-invalidate -igt@xe_exec_compute_mode@twice-basic -igt@xe_exec_compute_mode@twice-preempt-fence-early -igt@xe_exec_compute_mode@twice-userptr -igt@xe_exec_compute_mode@twice-rebind -igt@xe_exec_compute_mode@twice-userptr-rebind -igt@xe_exec_compute_mode@twice-userptr-invalidate -igt@xe_exec_compute_mode@twice-bindexecqueue -igt@xe_exec_compute_mode@twice-bindexecqueue-userptr -igt@xe_exec_compute_mode@twice-bindexecqueue-rebind -igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-rebind -igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate -igt@xe_exec_queue_property@invalid-property -igt@xe_exec_reset@close-fd-no-exec -igt@xe_exec_reset@cm-close-fd-no-exec -igt@xe_exec_reset@virtual-close-fd-no-exec -igt@xe_exec_store@basic-store -igt@xe_gpgpu_fill@basic -igt@xe_gt_freq@freq_basic_api -igt@xe_gt_freq@freq_fixed_idle -igt@xe_gt_freq@freq_range_idle -igt@xe_huc_copy@huc_copy -igt@xe_intel_bb@add-remove-objects -igt@xe_intel_bb@bb-with-allocator -igt@xe_intel_bb@blit-reloc -igt@xe_intel_bb@blit-simple -igt@xe_intel_bb@create-in-region -igt@xe_intel_bb@delta-check -igt@xe_intel_bb@destroy-bb -igt@xe_intel_bb@intel-bb-blit-none -igt@xe_intel_bb@intel-bb-blit-x -igt@xe_intel_bb@intel-bb-blit-y -igt@xe_intel_bb@lot-of-buffers -igt@xe_intel_bb@offset-control -igt@xe_intel_bb@purge-bb -igt@xe_intel_bb@render -igt@xe_intel_bb@reset-bb -igt@xe_intel_bb@simple-bb -igt@xe_intel_bb@simple-bb-ctx -igt@xe_mmap@bad-extensions -igt@xe_mmap@bad-flags -igt@xe_mmap@bad-object -igt@xe_mmap@cpu-caching -igt@xe_mmap@system -igt@xe_mmap@vram -igt@xe_mmap@vram-system -igt@xe_pm_residency@gt-c6-on-idle -igt@xe_prime_self_import@basic-with_one_bo -igt@xe_prime_self_import@basic-with_fd_dup -#igt@xe_prime_self_import@basic-llseek-size -igt@xe_query@query-engines -igt@xe_query@query-mem-usage -igt@xe_query@query-gt-list -igt@xe_query@query-config -igt@xe_query@query-hwconfig -igt@xe_query@query-topology -igt@xe_query@query-invalid-extension -igt@xe_query@query-invalid-query -igt@xe_query@query-invalid-size -igt@xe_spin_batch@spin-basic -igt@xe_spin_batch@spin-batch -igt@xe_sriov_flr@flr-vf1-clear -igt@xe_sysfs_defaults@engine-defaults -igt@xe_sysfs_scheduler@preempt_timeout_us-invalid -igt@xe_sysfs_scheduler@preempt_timeout_us-min-max -igt@xe_sysfs_scheduler@timeslice_duration_us-invalid -igt@xe_sysfs_scheduler@timeslice_duration_us-min-max -igt@xe_sysfs_scheduler@job_timeout_ms-invalid -igt@xe_sysfs_scheduler@job_timeout_ms-min-max -#igt@xe_vm@bind-once -#igt@xe_vm@scratch -igt@xe_vm@shared-pte-page -igt@xe_vm@shared-pde-page -igt@xe_vm@shared-pde2-page -igt@xe_vm@shared-pde3-page -igt@xe_vm@bind-execqueues-independent -igt@xe_vm@large-split-binds-268435456 -igt@xe_vm@munmap-style-unbind-one-partial -igt@xe_vm@munmap-style-unbind-end -igt@xe_vm@munmap-style-unbind-front -igt@xe_vm@munmap-style-unbind-userptr-one-partial -igt@xe_vm@munmap-style-unbind-userptr-end -igt@xe_vm@munmap-style-unbind-userptr-front -igt@xe_vm@munmap-style-unbind-userptr-inval-end -igt@xe_vm@munmap-style-unbind-userptr-inval-front -igt@xe_pat@userptr-coh-none -igt@xe_pat@prime-self-import-coh -igt@xe_pat@prime-external-import-coh -igt@xe_pat@pat-index-all -igt@xe_pat@pat-index-xelp -igt@xe_pat@pat-index-xehpc -igt@xe_pat@pat-index-xelpg -igt@xe_pat@pat-index-xe2 -igt@xe_waitfence@abstime -igt@xe_waitfence@engine -igt@xe_waitfence@reltime - -# All tests that do module unloading and reloading are executed last. -# They will sometimes reveal issues of earlier tests leaving the -# driver in a broken state that is not otherwise noticed in that test. -igt@core_hotunplug@unbind-rebind - -# Run KUnit tests at the end -igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit -igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit -igt@xe_live_ktest@xe_dma_buf -igt@xe_live_ktest@xe_migrate - -# Move fault_mode tests at the end to unblock execution -igt@xe_exec_fault_mode@twice-basic -igt@xe_exec_fault_mode@many-basic -igt@xe_exec_fault_mode@twice-userptr -igt@xe_exec_fault_mode@twice-rebind -igt@xe_exec_fault_mode@twice-userptr-rebind -igt@xe_exec_fault_mode@twice-userptr-invalidate -igt@xe_exec_fault_mode@twice-bindexecqueue -igt@xe_exec_fault_mode@twice-bindexecqueue-userptr -igt@xe_exec_fault_mode@twice-bindexecqueue-rebind -igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind -igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate -igt@xe_exec_fault_mode@twice-basic-imm -igt@xe_exec_fault_mode@twice-userptr-imm -igt@xe_exec_fault_mode@twice-rebind-imm -igt@xe_exec_fault_mode@twice-userptr-rebind-imm -igt@xe_exec_fault_mode@twice-userptr-invalidate-imm -igt@xe_exec_fault_mode@twice-bindexecqueue-imm -igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-imm -igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-imm -igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-imm -igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-imm -igt@xe_exec_fault_mode@twice-basic-prefetch -igt@xe_exec_fault_mode@twice-userptr-prefetch -igt@xe_exec_fault_mode@twice-rebind-prefetch -igt@xe_exec_fault_mode@twice-userptr-rebind-prefetch -igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch -igt@xe_exec_fault_mode@twice-bindexecqueue-prefetch -igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-prefetch -igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-prefetch -igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch -igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-prefetch -igt@xe_exec_fault_mode@twice-invalid-fault -igt@xe_exec_fault_mode@twice-invalid-userptr-fault -igt@xe_exec_threads@threads-basic -igt@xe_exec_threads@threads-mixed-basic -igt@xe_exec_threads@threads-mixed-shared-vm-basic -igt@xe_exec_threads@threads-mixed-fd-basic -igt@xe_exec_threads@threads-mixed-userptr-invalidate -igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race -igt@xe_evict@evict-beng-mixed-threads-small-multi-vm -igt@xe_evict@evict-beng-small -igt@xe_evict@evict-beng-small-cm -igt@xe_evict@evict-beng-small-external -igt@xe_evict@evict-beng-small-external-cm -igt@xe_evict@evict-beng-small-multi-vm -igt@xe_evict@evict-cm-threads-small -igt@xe_evict@evict-mixed-threads-small -igt@xe_evict@evict-mixed-threads-small-multi-vm -igt@xe_evict@evict-small -igt@xe_evict@evict-small-cm -igt@xe_evict@evict-small-external -igt@xe_evict@evict-small-external-cm -igt@xe_evict@evict-small-multi-vm -igt@xe_evict@evict-small-multi-vm-cm -igt@xe_evict@evict-threads-small +igt@kms_3d -- 2.43.0 ^ permalink raw reply related [flat|nested] 14+ messages in thread
* ✗ GitLab.Pipeline: warning for Update image assets 2024-11-19 7:52 [PATCH 0/5] Update image assets Naladala Ramanaidu ` (4 preceding siblings ...) 2024-11-19 7:52 ` [PATCH 5/5] HAX patch do not merge Naladala Ramanaidu @ 2024-11-19 22:42 ` Patchwork 2024-11-19 22:45 ` ✗ CI.xeBAT: failure " Patchwork ` (2 subsequent siblings) 8 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2024-11-19 22:42 UTC (permalink / raw) To: Naladala Ramanaidu; +Cc: igt-dev == Series Details == Series: Update image assets URL : https://patchwork.freedesktop.org/series/141539/ State : warning == Summary == Pipeline status: FAILED. see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1313450 for the overview. test:ninja-test-clang has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/66864689): Skipping Git submodules setup section_end:1732056028:get_sources section_start:1732056028:step_script Executing "step_script" stage of the job script Using docker image sha256:4b3054d89ef79f9be95501786fbbbe22857d02c867fff99693808cd80909939f for registry.freedesktop.org/gfx-ci/igt-ci-tags/build-fedora:commit-873197e99079ab454491578d284d135882179b13 with digest registry.freedesktop.org/gfx-ci/igt-ci-tags/build-fedora@sha256:17d64607d998df2bf29a56b88922d3a598e6f1daa3b51ece2a892c2f293daf83 ... $ /host/bin/curl -s -L --cacert /host/ca-certificates.crt --retry 4 -f --retry-delay 60 https://gitlab.freedesktop.org/freedesktop/helm-gitlab-infra/-/raw/main/runner-gating/runner-gating.sh | sh Checking if the user of the pipeline is allowed... Checking if the job's project is part of a well-known group... Thank you for contributing to freedesktop.org $ meson test -C build --num-processes ${FDO_CI_CONCURRENT:-4} Only ninja backend is supported to rebuild tests before running them. ERROR: Directory '/builds/gfx-ci/igt-ci-tags/build' does not seem to be a Meson build directory. section_end:1732056038:step_script section_start:1732056038:cleanup_file_variables Cleaning up project directory and file based variables section_end:1732056039:cleanup_file_variables ERROR: Job failed: exit code 1 == Logs == For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1313450 ^ permalink raw reply [flat|nested] 14+ messages in thread
* ✗ CI.xeBAT: failure for Update image assets 2024-11-19 7:52 [PATCH 0/5] Update image assets Naladala Ramanaidu ` (5 preceding siblings ...) 2024-11-19 22:42 ` ✗ GitLab.Pipeline: warning for Update image assets Patchwork @ 2024-11-19 22:45 ` Patchwork 2024-11-19 23:04 ` ✗ Fi.CI.BAT: " Patchwork 2024-11-20 11:14 ` ✗ CI.xeFULL: " Patchwork 8 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2024-11-19 22:45 UTC (permalink / raw) To: Naladala Ramanaidu; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3167 bytes --] == Series Details == Series: Update image assets URL : https://patchwork.freedesktop.org/series/141539/ State : failure == Summary == CI Bug Log - changes from XEIGT_8118_BAT -> XEIGTPW_12140_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12140_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12140_BAT, 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 (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12140_BAT: ### IGT changes ### #### Possible regressions #### * igt@kms_3d: - bat-dg2-oem2: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/bat-dg2-oem2/igt@kms_3d.html - bat-bmg-2: NOTRUN -> [FAIL][2] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/bat-bmg-2/igt@kms_3d.html - bat-bmg-1: NOTRUN -> [FAIL][3] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/bat-bmg-1/igt@kms_3d.html - bat-adlp-7: NOTRUN -> [FAIL][4] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/bat-adlp-7/igt@kms_3d.html Known issues ------------ Here are the changes found in XEIGTPW_12140_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_3d: - bat-adlp-vf: NOTRUN -> [SKIP][5] ([Intel XE#540]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/bat-adlp-vf/igt@kms_3d.html - bat-lnl-1: NOTRUN -> [SKIP][6] ([Intel XE#1465]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/bat-lnl-1/igt@kms_3d.html - bat-pvc-2: NOTRUN -> [SKIP][7] ([Intel XE#540]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/bat-pvc-2/igt@kms_3d.html - bat-atsm-2: NOTRUN -> [SKIP][8] ([Intel XE#540]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/bat-atsm-2/igt@kms_3d.html - bat-lnl-2: NOTRUN -> [SKIP][9] ([Intel XE#1465]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/bat-lnl-2/igt@kms_3d.html [Intel XE#1465]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1465 [Intel XE#540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/540 Build changes ------------- * IGT: IGT_8118 -> IGTPW_12140 * Linux: xe-2252-f8f85a38f6c75e091805f01ceff4041ac2fdf3fd -> xe-2254-ccf64319402f90f68549e2047a7f985a46436e41 IGTPW_12140: 12140 IGT_8118: 17707095f1e5d3c30f463b43022f01c0160579b6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2252-f8f85a38f6c75e091805f01ceff4041ac2fdf3fd: f8f85a38f6c75e091805f01ceff4041ac2fdf3fd xe-2254-ccf64319402f90f68549e2047a7f985a46436e41: ccf64319402f90f68549e2047a7f985a46436e41 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/index.html [-- Attachment #2: Type: text/html, Size: 4030 bytes --] ^ permalink raw reply [flat|nested] 14+ messages in thread
* ✗ Fi.CI.BAT: failure for Update image assets 2024-11-19 7:52 [PATCH 0/5] Update image assets Naladala Ramanaidu ` (6 preceding siblings ...) 2024-11-19 22:45 ` ✗ CI.xeBAT: failure " Patchwork @ 2024-11-19 23:04 ` Patchwork 2024-11-20 11:14 ` ✗ CI.xeFULL: " Patchwork 8 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2024-11-19 23:04 UTC (permalink / raw) To: Naladala Ramanaidu; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 8915 bytes --] == Series Details == Series: Update image assets URL : https://patchwork.freedesktop.org/series/141539/ State : failure == Summary == CI Bug Log - changes from IGT_8118 -> IGTPW_12140 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12140 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12140, 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_12140/index.html Participating hosts (46 -> 45) ------------------------------ Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12140: ### IGT changes ### #### Possible regressions #### * igt@kms_3d: - fi-cfl-8700k: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/fi-cfl-8700k/igt@kms_3d.html - bat-twl-1: NOTRUN -> [FAIL][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/bat-twl-1/igt@kms_3d.html - bat-dg2-14: NOTRUN -> [FAIL][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/bat-dg2-14/igt@kms_3d.html - fi-bsw-nick: NOTRUN -> [FAIL][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/fi-bsw-nick/igt@kms_3d.html - bat-kbl-2: NOTRUN -> [FAIL][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/bat-kbl-2/igt@kms_3d.html - bat-arls-5: NOTRUN -> [FAIL][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/bat-arls-5/igt@kms_3d.html - bat-adlp-6: NOTRUN -> [FAIL][7] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/bat-adlp-6/igt@kms_3d.html - fi-rkl-11600: NOTRUN -> [FAIL][8] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/fi-rkl-11600/igt@kms_3d.html - bat-dg1-7: NOTRUN -> [FAIL][9] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/bat-dg1-7/igt@kms_3d.html - bat-jsl-3: NOTRUN -> [FAIL][10] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/bat-jsl-3/igt@kms_3d.html - bat-dg2-9: NOTRUN -> [FAIL][11] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/bat-dg2-9/igt@kms_3d.html - bat-dg2-11: NOTRUN -> [FAIL][12] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/bat-dg2-11/igt@kms_3d.html - fi-kbl-x1275: NOTRUN -> [FAIL][13] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/fi-kbl-x1275/igt@kms_3d.html - fi-hsw-4770: NOTRUN -> [FAIL][14] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/fi-hsw-4770/igt@kms_3d.html - bat-rpls-4: NOTRUN -> [FAIL][15] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/bat-rpls-4/igt@kms_3d.html - fi-cfl-8109u: NOTRUN -> [FAIL][16] [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/fi-cfl-8109u/igt@kms_3d.html - fi-kbl-7567u: NOTRUN -> [FAIL][17] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/fi-kbl-7567u/igt@kms_3d.html - fi-ivb-3770: NOTRUN -> [FAIL][18] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/fi-ivb-3770/igt@kms_3d.html - bat-mtlp-8: NOTRUN -> [FAIL][19] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/bat-mtlp-8/igt@kms_3d.html - bat-dg1-6: NOTRUN -> [FAIL][20] [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/bat-dg1-6/igt@kms_3d.html - fi-elk-e7500: NOTRUN -> [FAIL][21] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/fi-elk-e7500/igt@kms_3d.html - bat-dg2-8: NOTRUN -> [FAIL][22] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/bat-dg2-8/igt@kms_3d.html - fi-kbl-guc: NOTRUN -> [FAIL][23] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/fi-kbl-guc/igt@kms_3d.html - bat-adls-6: NOTRUN -> [FAIL][24] [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/bat-adls-6/igt@kms_3d.html - bat-adlm-1: NOTRUN -> [FAIL][25] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/bat-adlm-1/igt@kms_3d.html - fi-ilk-650: NOTRUN -> [FAIL][26] [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/fi-ilk-650/igt@kms_3d.html - bat-jsl-1: NOTRUN -> [FAIL][27] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/bat-jsl-1/igt@kms_3d.html - fi-tgl-1115g4: NOTRUN -> [FAIL][28] [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/fi-tgl-1115g4/igt@kms_3d.html - fi-cfl-guc: NOTRUN -> [FAIL][29] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/fi-cfl-guc/igt@kms_3d.html - bat-mtlp-6: NOTRUN -> [FAIL][30] [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/bat-mtlp-6/igt@kms_3d.html - fi-skl-6600u: NOTRUN -> [FAIL][31] [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/fi-skl-6600u/igt@kms_3d.html - bat-arlh-3: NOTRUN -> [FAIL][32] [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/bat-arlh-3/igt@kms_3d.html - fi-glk-j4005: NOTRUN -> [FAIL][33] [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/fi-glk-j4005/igt@kms_3d.html - bat-adlp-9: NOTRUN -> [FAIL][34] [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/bat-adlp-9/igt@kms_3d.html - bat-twl-2: NOTRUN -> [FAIL][35] [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/bat-twl-2/igt@kms_3d.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_3d: - {bat-mtlp-9}: NOTRUN -> [FAIL][36] [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/bat-mtlp-9/igt@kms_3d.html - {bat-arls-6}: NOTRUN -> [FAIL][37] [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/bat-arls-6/igt@kms_3d.html Known issues ------------ Here are the changes found in IGTPW_12140 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_3d: - bat-apl-1: NOTRUN -> [SKIP][38] [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/bat-apl-1/igt@kms_3d.html - fi-blb-e6850: NOTRUN -> [SKIP][39] [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/fi-blb-e6850/igt@kms_3d.html - bat-rplp-1: NOTRUN -> [SKIP][40] ([i915#4369]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/bat-rplp-1/igt@kms_3d.html - bat-arlh-2: NOTRUN -> [SKIP][41] ([i915#11346]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/bat-arlh-2/igt@kms_3d.html - bat-adlp-11: NOTRUN -> [SKIP][42] ([i915#4369]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/bat-adlp-11/igt@kms_3d.html - fi-kbl-8809g: NOTRUN -> [SKIP][43] [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/fi-kbl-8809g/igt@kms_3d.html - fi-pnv-d510: NOTRUN -> [SKIP][44] [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/fi-pnv-d510/igt@kms_3d.html * igt@runner@aborted: - bat-dg2-13: NOTRUN -> [FAIL][45] ([i915#12658]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/bat-dg2-13/igt@runner@aborted.html #### Possible fixes #### * igt@i915_module_load@load: - bat-twl-2: [DMESG-WARN][46] ([i915#1982]) -> [PASS][47] [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-twl-2/igt@i915_module_load@load.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/bat-twl-2/igt@i915_module_load@load.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346 [i915#12658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12658 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#4369]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4369 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8118 -> IGTPW_12140 * Linux: CI_DRM_15720 -> CI_DRM_15722 CI-20190529: 20190529 CI_DRM_15720: f8f85a38f6c75e091805f01ceff4041ac2fdf3fd @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15722: ccf64319402f90f68549e2047a7f985a46436e41 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12140: 12140 IGT_8118: 17707095f1e5d3c30f463b43022f01c0160579b6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12140/index.html [-- Attachment #2: Type: text/html, Size: 9945 bytes --] ^ permalink raw reply [flat|nested] 14+ messages in thread
* ✗ CI.xeFULL: failure for Update image assets 2024-11-19 7:52 [PATCH 0/5] Update image assets Naladala Ramanaidu ` (7 preceding siblings ...) 2024-11-19 23:04 ` ✗ Fi.CI.BAT: " Patchwork @ 2024-11-20 11:14 ` Patchwork 8 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2024-11-20 11:14 UTC (permalink / raw) To: Naladala Ramanaidu; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 135713 bytes --] == Series Details == Series: Update image assets URL : https://patchwork.freedesktop.org/series/141539/ State : failure == Summary == CI Bug Log - changes from XEIGT_8118_full -> XEIGTPW_12140_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12140_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12140_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_12140_full: ### IGT changes ### #### Possible regressions #### * igt@kms_3d: - shard-bmg: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_3d.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-3/igt@kms_3d.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-dg2-set2: [PASS][3] -> [INCOMPLETE][4] +2 other tests incomplete [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html * igt@kms_lease@simple-lease: - shard-bmg: NOTRUN -> [INCOMPLETE][5] +1 other test incomplete [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-2/igt@kms_lease@simple-lease.html * igt@kms_plane@plane-position-covered@pipe-a-plane-1: - shard-bmg: NOTRUN -> [DMESG-FAIL][6] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-6/igt@kms_plane@plane-position-covered@pipe-a-plane-1.html * igt@kms_plane@plane-position-covered@pipe-a-plane-2: - shard-bmg: NOTRUN -> [FAIL][7] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-6/igt@kms_plane@plane-position-covered@pipe-a-plane-2.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf@pipe-b-edp-1: - shard-lnl: [PASS][8] -> [DMESG-WARN][9] +28 other tests dmesg-warn [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-6/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf@pipe-b-edp-1.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-2/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf@pipe-b-edp-1.html * igt@kms_psr@fbc-psr2-sprite-plane-move: - shard-lnl: [PASS][10] -> [FAIL][11] +3 other tests fail [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-6/igt@kms_psr@fbc-psr2-sprite-plane-move.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-1/igt@kms_psr@fbc-psr2-sprite-plane-move.html * igt@kms_sequence@get-forked-busy: - shard-bmg: [PASS][12] -> [INCOMPLETE][13] +1 other test incomplete [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@kms_sequence@get-forked-busy.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-1/igt@kms_sequence@get-forked-busy.html * igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race: - shard-bmg: NOTRUN -> [DMESG-WARN][14] +4 other tests dmesg-warn [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-8/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race.html * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-prefetch: - shard-lnl: NOTRUN -> [DMESG-WARN][15] +1 other test dmesg-warn [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-2/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-prefetch.html * igt@xe_exec_threads@threads-mixed-fd-userptr-invalidate-race: - shard-bmg: [PASS][16] -> [DMESG-WARN][17] +6 other tests dmesg-warn [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@xe_exec_threads@threads-mixed-fd-userptr-invalidate-race.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-6/igt@xe_exec_threads@threads-mixed-fd-userptr-invalidate-race.html * igt@xe_vm@large-binds-4194304: - shard-dg2-set2: [PASS][18] -> [DMESG-WARN][19] +2 other tests dmesg-warn [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_vm@large-binds-4194304.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-435/igt@xe_vm@large-binds-4194304.html #### Warnings #### * igt@core_getversion@all-cards: - shard-dg2-set2: [FAIL][20] ([Intel XE#3440]) -> [DMESG-WARN][21] [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@core_getversion@all-cards.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-435/igt@core_getversion@all-cards.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-dg2-set2: [SKIP][22] ([Intel XE#2423] / [i915#2575]) -> [INCOMPLETE][23] [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-463/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt@kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][24] ([Intel XE#3374]) -> [SKIP][25] [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html * igt@kms_pm_dc@dc5-dpms: - shard-dg2-set2: [SKIP][26] ([Intel XE#2136]) -> [INCOMPLETE][27] [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_pm_dc@dc5-dpms.html [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-435/igt@kms_pm_dc@dc5-dpms.html * igt@xe_module_load@reload-no-display: - shard-bmg: [DMESG-WARN][28] ([Intel XE#3467]) -> [ABORT][29] [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@xe_module_load@reload-no-display.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-8/igt@xe_module_load@reload-no-display.html Known issues ------------ Here are the changes found in XEIGTPW_12140_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@unplug-rescan: - shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#1885]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-434/igt@core_hotunplug@unplug-rescan.html * igt@fbdev@info: - shard-dg2-set2: [PASS][31] -> [SKIP][32] ([Intel XE#2134]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@fbdev@info.html [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-466/igt@fbdev@info.html * igt@kms_async_flips@alternate-sync-async-flip: - shard-dg2-set2: [PASS][33] -> [FAIL][34] ([Intel XE#827]) +1 other test fail [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_async_flips@alternate-sync-async-flip.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-436/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#2550]) +23 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-464/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs.html * igt@kms_atomic_interruptible@legacy-setmode@pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][36] -> [DMESG-WARN][37] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_atomic_interruptible@legacy-setmode@pipe-a-hdmi-a-6.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-435/igt@kms_atomic_interruptible@legacy-setmode@pipe-a-hdmi-a-6.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#3279]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-lnl: [PASS][39] -> [FAIL][40] ([Intel XE#1426]) +1 other test fail [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-180: - shard-bmg: [PASS][41] -> [DMESG-FAIL][42] ([Intel XE#3468]) +11 other tests dmesg-fail [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-7/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-8/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#1407]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-7/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-dg2-set2: [PASS][44] -> [SKIP][45] ([Intel XE#2136]) +33 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-466/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2327]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-5/igt@kms_big_fb@linear-32bpp-rotate-270.html - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#316]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-463/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@linear-8bpp-rotate-180: - shard-bmg: NOTRUN -> [DMESG-FAIL][48] ([Intel XE#3468]) +4 other tests dmesg-fail [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-8/igt@kms_big_fb@linear-8bpp-rotate-180.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#1124]) +6 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#1124]) +3 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#1124]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-463/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#2191]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-2/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2314] / [Intel XE#2894]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-5/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html * igt@kms_bw@linear-tiling-3-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#367]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-463/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html * igt@kms_bw@linear-tiling-4-displays-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#367]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-2/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#787]) +125 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-464/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#2887]) +8 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-8/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#455] / [Intel XE#787]) +18 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-436/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2887]) +7 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-4/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#3433]) +3 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html * igt@kms_cdclk@plane-scaling@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#1152]) +3 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-436/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html * igt@kms_chamelium_audio@dp-audio: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#373]) +8 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-2/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_color@ctm-max: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2325]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-6/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2252]) +3 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-5/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_content_protection@atomic-dpms: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#3278]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-1/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#307]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-6/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][67] ([Intel XE#1178]) +1 other test fail [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-2/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html * igt@kms_content_protection@uevent@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][68] ([Intel XE#1188]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-463/igt@kms_content_protection@uevent@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2320]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-7/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#2321]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-3/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-sliding-256x256: - shard-bmg: [PASS][71] -> [INCOMPLETE][72] ([Intel XE#3416]) +1 other test incomplete [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-256x256.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-4/igt@kms_cursor_crc@cursor-sliding-256x256.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#2321]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-5/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_crc@cursor-sliding-64x21: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1424]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-8/igt@kms_cursor_crc@cursor-sliding-64x21.html * igt@kms_cursor_edge_walk@256x256-right-edge: - shard-lnl: NOTRUN -> [DMESG-WARN][75] ([Intel XE#3466]) +11 other tests dmesg-warn [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-7/igt@kms_cursor_edge_walk@256x256-right-edge.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#309]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [PASS][77] -> [DMESG-WARN][78] ([Intel XE#3468] / [Intel XE#877]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#1508]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-3/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#3070]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-1/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#2244]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-output-formats: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2244]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-1/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_feature_discovery@display-4x: - shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#1138]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-1/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#1137]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-433/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-dg2-set2: [PASS][85] -> [SKIP][86] ([Intel XE#2423] / [i915#2575]) +82 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_flip@2x-dpms-vs-vblank-race.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-466/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-hdmi-a6-dp4: - shard-dg2-set2: [PASS][87] -> [FAIL][88] ([Intel XE#301]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-hdmi-a6-dp4.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-464/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-rmfb: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1421]) +3 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-1/igt@kms_flip@2x-flip-vs-rmfb.html * igt@kms_flip@blocking-wf_vblank: - shard-lnl: [PASS][90] -> [FAIL][91] ([Intel XE#886]) +5 other tests fail [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-5/igt@kms_flip@blocking-wf_vblank.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-5/igt@kms_flip@blocking-wf_vblank.html * igt@kms_flip@flip-vs-expired-vblank@c-edp1: - shard-lnl: [PASS][92] -> [FAIL][93] ([Intel XE#3149] / [Intel XE#886]) +1 other test fail [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html * igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3: - shard-bmg: [PASS][94] -> [DMESG-WARN][95] ([Intel XE#3468]) +54 other tests dmesg-warn [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-6/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#1397] / [Intel XE#1745]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#1397]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2380]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling: - shard-bmg: NOTRUN -> [INCOMPLETE][99] ([Intel XE#3468]) +1 other test incomplete [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling: - shard-dg2-set2: [PASS][100] -> [SKIP][101] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling: - shard-bmg: [PASS][102] -> [DMESG-WARN][103] ([Intel XE#2705]) +1 other test dmesg-warn [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#455]) +6 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-464/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#1401]) +2 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#2293]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#651]) +8 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-1/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: NOTRUN -> [FAIL][110] ([Intel XE#2333]) +6 other tests fail [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#2311]) +16 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html - shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#651]) +4 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#656]) +16 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#2136] / [Intel XE#2351]) +12 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html - shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#2352]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#2313]) +15 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#653]) +7 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-suspend: - shard-lnl: [PASS][118] -> [DMESG-WARN][119] ([Intel XE#2932]) +2 other tests dmesg-warn [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#658]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_hdr@static-toggle-dpms: - shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#1503]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-3/igt@kms_hdr@static-toggle-dpms.html * igt@kms_lease@lease-invalid-crtc: - shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#2423] / [i915#2575]) +36 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-434/igt@kms_lease@lease-invalid-crtc.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][123] -> [INCOMPLETE][124] ([Intel XE#3468]) +1 other test incomplete [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-6.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-436/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-6.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format: - shard-bmg: NOTRUN -> [DMESG-WARN][125] ([Intel XE#3468]) +10 other tests dmesg-warn [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a: - shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#2763]) +11 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d: - shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#2763]) +9 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#2763]) +2 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-464/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#2763] / [Intel XE#455]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-464/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d.html * igt@kms_pm_rpm@basic-pci-d3-state: - shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#2446]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-434/igt@kms_pm_rpm@basic-pci-d3-state.html * igt@kms_pm_rpm@cursor: - shard-bmg: [PASS][131] -> [INCOMPLETE][132] ([Intel XE#3468]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_pm_rpm@cursor.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-5/igt@kms_pm_rpm@cursor.html * igt@kms_pm_rpm@cursor-dpms: - shard-dg2-set2: [PASS][133] -> [DMESG-WARN][134] ([Intel XE#3468]) +3 other tests dmesg-warn [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_pm_rpm@cursor-dpms.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-435/igt@kms_pm_rpm@cursor-dpms.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#1439] / [Intel XE#3141]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-4/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2-set2: [PASS][136] -> [SKIP][137] ([Intel XE#2446]) +3 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-434/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#2893]) +2 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-3/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#1489]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-5/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_su@page_flip-p010: - shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#2387]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-6/igt@kms_psr2_su@page_flip-p010.html - shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#1128]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-8/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr2-sprite-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][142] ([Intel XE#2136]) +29 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-466/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html * igt@kms_psr@pr-cursor-plane-move: - shard-lnl: NOTRUN -> [SKIP][143] ([Intel XE#1406]) +4 other tests skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-7/igt@kms_psr@pr-cursor-plane-move.html * igt@kms_psr@psr-cursor-plane-onoff: - shard-bmg: NOTRUN -> [SKIP][144] ([Intel XE#2234] / [Intel XE#2850]) +8 other tests skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-5/igt@kms_psr@psr-cursor-plane-onoff.html - shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#2850] / [Intel XE#929]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-436/igt@kms_psr@psr-cursor-plane-onoff.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-lnl: NOTRUN -> [INCOMPLETE][146] ([Intel XE#3466]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@bad-pixel-format: - shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#3414]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-8/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#3414]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-433/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html - shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#3414]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-bmg: NOTRUN -> [SKIP][150] ([Intel XE#2330]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_scaling_modes@scaling-mode-center@pipe-a-edp-1: - shard-lnl: [PASS][151] -> [DMESG-WARN][152] ([Intel XE#3466]) +86 other tests dmesg-warn [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-5/igt@kms_scaling_modes@scaling-mode-center@pipe-a-edp-1.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-7/igt@kms_scaling_modes@scaling-mode-center@pipe-a-edp-1.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [PASS][153] -> [FAIL][154] ([Intel XE#2159]) +1 other test fail [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-1/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@kms_vrr@flip-basic: - shard-bmg: NOTRUN -> [SKIP][155] ([Intel XE#1499]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-7/igt@kms_vrr@flip-basic.html * igt@kms_writeback@writeback-fb-id: - shard-lnl: NOTRUN -> [SKIP][156] ([Intel XE#756]) +2 other tests skip [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-7/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-pixel-formats: - shard-bmg: NOTRUN -> [SKIP][157] ([Intel XE#756]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-4/igt@kms_writeback@writeback-pixel-formats.html * igt@testdisplay: - shard-dg2-set2: [PASS][158] -> [SKIP][159] ([Intel XE#2423]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@testdisplay.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-434/igt@testdisplay.html * igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][160] ([Intel XE#1280] / [Intel XE#455]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-433/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html * igt@xe_eudebug@basic-close: - shard-lnl: NOTRUN -> [SKIP][161] ([Intel XE#2905]) +5 other tests skip [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-5/igt@xe_eudebug@basic-close.html * igt@xe_eudebug_online@resume-one: - shard-dg2-set2: NOTRUN -> [SKIP][162] ([Intel XE#2905]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-464/igt@xe_eudebug_online@resume-one.html * igt@xe_eudebug_online@single-step-one: - shard-bmg: NOTRUN -> [SKIP][163] ([Intel XE#2905]) +4 other tests skip [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-2/igt@xe_eudebug_online@single-step-one.html * igt@xe_evict@evict-beng-mixed-many-threads-large: - shard-bmg: NOTRUN -> [INCOMPLETE][164] ([Intel XE#1473]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-1/igt@xe_evict@evict-beng-mixed-many-threads-large.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-bmg: [PASS][165] -> [INCOMPLETE][166] ([Intel XE#1473]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@xe_evict@evict-beng-mixed-many-threads-small.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-5/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: [PASS][167] -> [TIMEOUT][168] ([Intel XE#1473] / [Intel XE#2472]) +1 other test timeout [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen: - shard-lnl: NOTRUN -> [SKIP][169] ([Intel XE#688]) +3 other tests skip [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-8/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html * igt@xe_exec_basic@many-execqueues-many-vm-bindexecqueue: - shard-lnl: NOTRUN -> [DMESG-WARN][170] ([Intel XE#3514]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-2/igt@xe_exec_basic@many-execqueues-many-vm-bindexecqueue.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr: - shard-bmg: NOTRUN -> [SKIP][171] ([Intel XE#2322]) +7 other tests skip [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html * igt@xe_exec_basic@multigpu-once-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][172] ([Intel XE#1392]) +4 other tests skip [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-2/igt@xe_exec_basic@multigpu-once-userptr-invalidate.html * igt@xe_exec_basic@no-exec-basic-defer-bind: - shard-dg2-set2: NOTRUN -> [SKIP][173] ([Intel XE#1130]) +53 other tests skip [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-466/igt@xe_exec_basic@no-exec-basic-defer-bind.html * igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm: - shard-dg2-set2: NOTRUN -> [SKIP][174] ([Intel XE#288]) +5 other tests skip [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-435/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm.html * igt@xe_exec_fault_mode@once-invalid-userptr-fault: - shard-lnl: [PASS][175] -> [DMESG-FAIL][176] ([Intel XE#3466]) +5 other tests dmesg-fail [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-2/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-8/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html * igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate: - shard-bmg: [PASS][177] -> [DMESG-FAIL][178] ([Intel XE#3371]) [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-2/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html - shard-lnl: [PASS][179] -> [DMESG-FAIL][180] ([Intel XE#2687] / [Intel XE#3371]) [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-2/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-3/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html * igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early: - shard-bmg: [PASS][181] -> [DMESG-WARN][182] ([Intel XE#3467] / [Intel XE#3468]) +1 other test dmesg-warn [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html * igt@xe_gt_freq@freq_reset_multiple: - shard-lnl: [PASS][183] -> [DMESG-WARN][184] ([Intel XE#3184]) [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-5/igt@xe_gt_freq@freq_reset_multiple.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-2/igt@xe_gt_freq@freq_reset_multiple.html * igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit: - shard-dg2-set2: NOTRUN -> [FAIL][185] ([Intel XE#1999]) +1 other test fail [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-434/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html * igt@xe_module_load@force-load: - shard-bmg: NOTRUN -> [SKIP][186] ([Intel XE#2457]) [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-8/igt@xe_module_load@force-load.html * igt@xe_module_load@unload: - shard-bmg: [PASS][187] -> [DMESG-WARN][188] ([Intel XE#3467]) +1 other test dmesg-warn [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@xe_module_load@unload.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-2/igt@xe_module_load@unload.html - shard-dg2-set2: [PASS][189] -> [DMESG-WARN][190] ([Intel XE#3467]) [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_module_load@unload.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-463/igt@xe_module_load@unload.html * igt@xe_oa@oa-tlb-invalidate: - shard-dg2-set2: NOTRUN -> [SKIP][191] ([Intel XE#2541]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-464/igt@xe_oa@oa-tlb-invalidate.html - shard-bmg: NOTRUN -> [SKIP][192] ([Intel XE#2248]) [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-7/igt@xe_oa@oa-tlb-invalidate.html * igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][193] ([Intel XE#1173]) [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-436/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html * igt@xe_pm@d3cold-mmap-system: - shard-lnl: NOTRUN -> [SKIP][194] ([Intel XE#2284] / [Intel XE#366]) [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-4/igt@xe_pm@d3cold-mmap-system.html * igt@xe_pm@d3cold-mmap-vram: - shard-dg2-set2: NOTRUN -> [SKIP][195] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-433/igt@xe_pm@d3cold-mmap-vram.html - shard-bmg: NOTRUN -> [SKIP][196] ([Intel XE#2284]) [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-4/igt@xe_pm@d3cold-mmap-vram.html * igt@xe_pm@s2idle-basic: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][197] ([Intel XE#3468]) [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-435/igt@xe_pm@s2idle-basic.html * igt@xe_pm@s2idle-exec-after: - shard-dg2-set2: [PASS][198] -> [SKIP][199] ([Intel XE#1130]) +165 other tests skip [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@xe_pm@s2idle-exec-after.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-434/igt@xe_pm@s2idle-exec-after.html * igt@xe_pm@s2idle-vm-bind-unbind-all: - shard-bmg: NOTRUN -> [DMESG-WARN][200] ([Intel XE#1616] / [Intel XE#3468]) [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-1/igt@xe_pm@s2idle-vm-bind-unbind-all.html * igt@xe_pm@s3-vm-bind-userptr: - shard-bmg: [PASS][201] -> [DMESG-WARN][202] ([Intel XE#3468] / [Intel XE#569]) +1 other test dmesg-warn [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@xe_pm@s3-vm-bind-userptr.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-3/igt@xe_pm@s3-vm-bind-userptr.html * igt@xe_pm@s4-basic-exec: - shard-bmg: [PASS][203] -> [DMESG-WARN][204] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@xe_pm@s4-basic-exec.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-1/igt@xe_pm@s4-basic-exec.html * igt@xe_pm@s4-vm-bind-unbind-all: - shard-lnl: [PASS][205] -> [ABORT][206] ([Intel XE#1794]) [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-6/igt@xe_pm@s4-vm-bind-unbind-all.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.html * igt@xe_pm_residency@cpg-basic: - shard-lnl: NOTRUN -> [SKIP][207] ([Intel XE#584]) [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-8/igt@xe_pm_residency@cpg-basic.html * igt@xe_pm_residency@toggle-gt-c6: - shard-lnl: [PASS][208] -> [FAIL][209] ([Intel XE#958]) [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-6/igt@xe_pm_residency@toggle-gt-c6.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-5/igt@xe_pm_residency@toggle-gt-c6.html * igt@xe_query@multigpu-query-invalid-cs-cycles: - shard-bmg: NOTRUN -> [SKIP][210] ([Intel XE#944]) +3 other tests skip [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-3/igt@xe_query@multigpu-query-invalid-cs-cycles.html * igt@xe_sriov_flr@flr-each-isolation: - shard-lnl: NOTRUN -> [SKIP][211] ([Intel XE#3342]) [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-2/igt@xe_sriov_flr@flr-each-isolation.html * igt@xe_vm@large-split-misaligned-binds-33554432: - shard-lnl: [PASS][212] -> [DMESG-WARN][213] ([Intel XE#3514]) [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-4/igt@xe_vm@large-split-misaligned-binds-33554432.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-2/igt@xe_vm@large-split-misaligned-binds-33554432.html * igt@xe_wedged@basic-wedged: - shard-bmg: NOTRUN -> [DMESG-WARN][214] ([Intel XE#2919]) [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-8/igt@xe_wedged@basic-wedged.html #### Possible fixes #### * igt@core_hotunplug@hotreplug: - shard-bmg: [DMESG-WARN][215] ([Intel XE#3521]) -> [PASS][216] [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@core_hotunplug@hotreplug.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-6/igt@core_hotunplug@hotreplug.html - shard-dg2-set2: [SKIP][217] ([Intel XE#1885]) -> [PASS][218] +1 other test pass [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@core_hotunplug@hotreplug.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-464/igt@core_hotunplug@hotreplug.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-bmg: [INCOMPLETE][219] ([Intel XE#2613]) -> [PASS][220] [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg2-set2: [SKIP][221] ([Intel XE#2136]) -> [PASS][222] +29 other tests pass [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_big_fb@4-tiled-addfb-size-overflow.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-464/igt@kms_big_fb@4-tiled-addfb-size-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-lnl: [INCOMPLETE][223] ([Intel XE#3466]) -> [PASS][224] [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-bmg: [DMESG-WARN][225] ([Intel XE#2705]) -> [PASS][226] [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [SKIP][227] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][228] +17 other tests pass [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-435/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-dg2-set2: [INCOMPLETE][229] ([Intel XE#1195] / [Intel XE#3226]) -> [PASS][230] [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-435/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-toggle: - shard-dg2-set2: [FAIL][231] ([Intel XE#1475]) -> [PASS][232] [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-435/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html * igt@kms_dirtyfb@default-dirtyfb-ioctl@a-dp-2: - shard-bmg: [DMESG-WARN][233] -> [PASS][234] +1 other test pass [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@kms_dirtyfb@default-dirtyfb-ioctl@a-dp-2.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-5/igt@kms_dirtyfb@default-dirtyfb-ioctl@a-dp-2.html * igt@kms_dp_aux_dev: - shard-dg2-set2: [SKIP][235] ([Intel XE#2423]) -> [PASS][236] [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_dp_aux_dev.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-436/igt@kms_dp_aux_dev.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][237] ([Intel XE#2882]) -> [PASS][238] [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3: - shard-bmg: [FAIL][239] ([Intel XE#3321] / [Intel XE#3486]) -> [PASS][240] [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-suspend: - shard-bmg: [INCOMPLETE][241] ([Intel XE#2597]) -> [PASS][242] [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-2/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-flip-vs-suspend@ac-dp2-hdmi-a3: - shard-bmg: [DMESG-FAIL][243] ([Intel XE#3468]) -> [PASS][244] +27 other tests pass [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend@ac-dp2-hdmi-a3.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-2/igt@kms_flip@2x-flip-vs-suspend@ac-dp2-hdmi-a3.html * igt@kms_flip@absolute-wf_vblank-interruptible@a-hdmi-a3: - shard-bmg: [DMESG-WARN][245] ([Intel XE#3468]) -> [PASS][246] +88 other tests pass [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_flip@absolute-wf_vblank-interruptible@a-hdmi-a3.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-5/igt@kms_flip@absolute-wf_vblank-interruptible@a-hdmi-a3.html * igt@kms_flip@wf_vblank-ts-check: - shard-lnl: [FAIL][247] ([Intel XE#3149] / [Intel XE#886]) -> [PASS][248] [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-2/igt@kms_flip@wf_vblank-ts-check.html * igt@kms_flip@wf_vblank-ts-check@c-edp1: - shard-lnl: [FAIL][249] ([Intel XE#886]) -> [PASS][250] [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check@c-edp1.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-2/igt@kms_flip@wf_vblank-ts-check@c-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-valid-mode: - shard-bmg: [INCOMPLETE][251] ([Intel XE#1727]) -> [PASS][252] +1 other test pass [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-valid-mode.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-valid-mode.html * igt@kms_hdr@invalid-hdr: - shard-bmg: [SKIP][253] ([Intel XE#1503]) -> [PASS][254] [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@kms_hdr@invalid-hdr.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-4/igt@kms_hdr@invalid-hdr.html * igt@kms_plane_cursor@primary: - shard-lnl: [DMESG-WARN][255] ([Intel XE#3466]) -> [PASS][256] +36 other tests pass [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-7/igt@kms_plane_cursor@primary.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-7/igt@kms_plane_cursor@primary.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format: - shard-bmg: [DMESG-WARN][257] ([Intel XE#2566]) -> [PASS][258] +1 other test pass [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-8/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html * igt@kms_pm_rpm@basic-rte: - shard-dg2-set2: [ABORT][259] ([Intel XE#3468]) -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_pm_rpm@basic-rte.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-464/igt@kms_pm_rpm@basic-rte.html * igt@kms_pm_rpm@i2c: - shard-dg2-set2: [SKIP][261] ([Intel XE#2446]) -> [PASS][262] +2 other tests pass [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_pm_rpm@i2c.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-433/igt@kms_pm_rpm@i2c.html * igt@kms_pm_rpm@modeset-stress-extra-wait: - shard-bmg: [INCOMPLETE][263] ([Intel XE#2864]) -> [PASS][264] [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-7/igt@kms_pm_rpm@modeset-stress-extra-wait.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-2/igt@kms_pm_rpm@modeset-stress-extra-wait.html * igt@kms_psr@psr2-sprite-render: - shard-lnl: [FAIL][265] -> [PASS][266] +1 other test pass [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-5/igt@kms_psr@psr2-sprite-render.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-1/igt@kms_psr@psr2-sprite-render.html * igt@kms_rotation_crc@sprite-rotation-180: - shard-dg2-set2: [SKIP][267] ([Intel XE#2423] / [i915#2575]) -> [PASS][268] +96 other tests pass [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_rotation_crc@sprite-rotation-180.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-436/igt@kms_rotation_crc@sprite-rotation-180.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-lnl: [FAIL][269] ([Intel XE#2883]) -> [PASS][270] +2 other tests pass [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-2/igt@kms_setmode@basic@pipe-b-edp-1.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-8/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@kms_vrr@negative-basic: - shard-bmg: [INCOMPLETE][271] -> [PASS][272] +2 other tests pass [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_vrr@negative-basic.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-7/igt@kms_vrr@negative-basic.html * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race: - shard-lnl: [DMESG-FAIL][273] ([Intel XE#3466]) -> [PASS][274] +4 other tests pass [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-7/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-4/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race.html * igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate: - shard-lnl: [DMESG-WARN][275] ([Intel XE#3371]) -> [PASS][276] [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-5/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-3/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html * igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready: - shard-bmg: [DMESG-WARN][277] ([Intel XE#3467]) -> [PASS][278] [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html * igt@xe_live_ktest@xe_mocs: - shard-bmg: [SKIP][279] ([Intel XE#1192]) -> [PASS][280] [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@xe_live_ktest@xe_mocs.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-1/igt@xe_live_ktest@xe_mocs.html * igt@xe_module_load@reload-no-display: - shard-dg2-set2: [FAIL][281] ([Intel XE#2136]) -> [PASS][282] [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_module_load@reload-no-display.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-435/igt@xe_module_load@reload-no-display.html * igt@xe_pm@s2idle-vm-bind-prefetch: - shard-dg2-set2: [DMESG-FAIL][283] ([Intel XE#3468]) -> [PASS][284] [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_pm@s2idle-vm-bind-prefetch.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-433/igt@xe_pm@s2idle-vm-bind-prefetch.html * igt@xe_pm@s3-multiple-execs: - shard-bmg: [DMESG-WARN][285] ([Intel XE#569]) -> [PASS][286] [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@xe_pm@s3-multiple-execs.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-4/igt@xe_pm@s3-multiple-execs.html - shard-dg2-set2: [DMESG-WARN][287] ([Intel XE#569]) -> [PASS][288] [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_pm@s3-multiple-execs.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-433/igt@xe_pm@s3-multiple-execs.html * igt@xe_pm@s4-basic-exec: - shard-lnl: [ABORT][289] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) -> [PASS][290] [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-2/igt@xe_pm@s4-basic-exec.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-7/igt@xe_pm@s4-basic-exec.html * igt@xe_pm_residency@gt-c6-freeze@gt1: - shard-bmg: [DMESG-FAIL][291] ([Intel XE#1727]) -> [PASS][292] +1 other test pass [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-7/igt@xe_pm_residency@gt-c6-freeze@gt1.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-3/igt@xe_pm_residency@gt-c6-freeze@gt1.html * igt@xe_vm@munmap-style-unbind-either-side-partial-split-page-hammer: - shard-bmg: [DMESG-WARN][293] ([Intel XE#1727]) -> [PASS][294] +9 other tests pass [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@xe_vm@munmap-style-unbind-either-side-partial-split-page-hammer.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-5/igt@xe_vm@munmap-style-unbind-either-side-partial-split-page-hammer.html - shard-dg2-set2: [DMESG-WARN][295] ([Intel XE#1727]) -> [PASS][296] +1 other test pass [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_vm@munmap-style-unbind-either-side-partial-split-page-hammer.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-463/igt@xe_vm@munmap-style-unbind-either-side-partial-split-page-hammer.html * igt@xe_vm@munmap-style-unbind-many-either-side-partial: - shard-dg2-set2: [SKIP][297] ([Intel XE#1130]) -> [PASS][298] +165 other tests pass [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_vm@munmap-style-unbind-many-either-side-partial.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-433/igt@xe_vm@munmap-style-unbind-many-either-side-partial.html #### Warnings #### * igt@core_hotunplug@hotunbind-rebind: - shard-dg2-set2: [DMESG-WARN][299] ([Intel XE#3521]) -> [DMESG-WARN][300] ([Intel XE#3468] / [Intel XE#3521]) [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@core_hotunplug@hotunbind-rebind.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-436/igt@core_hotunplug@hotunbind-rebind.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2-set2: [SKIP][301] ([Intel XE#2423] / [i915#2575]) -> [SKIP][302] ([Intel XE#873]) [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_async_flips@invalid-async-flip.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-464/igt@kms_async_flips@invalid-async-flip.html * igt@kms_big_fb@4-tiled-64bpp-rotate-270: - shard-dg2-set2: [SKIP][303] ([Intel XE#316]) -> [SKIP][304] ([Intel XE#2136] / [Intel XE#2351]) [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-434/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-dg2-set2: [SKIP][305] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][306] ([Intel XE#316]) [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-464/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg2-set2: [SKIP][307] ([Intel XE#2136]) -> [INCOMPLETE][308] ([Intel XE#402]) [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-463/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-dg2-set2: [SKIP][309] ([Intel XE#2136]) -> [SKIP][310] ([Intel XE#316]) +2 other tests skip [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_big_fb@linear-32bpp-rotate-90.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-464/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@linear-8bpp-rotate-180: - shard-lnl: [INCOMPLETE][311] ([Intel XE#3466]) -> [DMESG-WARN][312] ([Intel XE#3466]) [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-7/igt@kms_big_fb@linear-8bpp-rotate-180.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-2/igt@kms_big_fb@linear-8bpp-rotate-180.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: [SKIP][313] ([Intel XE#316]) -> [SKIP][314] ([Intel XE#2136]) +4 other tests skip [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-434/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-180: - shard-dg2-set2: [SKIP][315] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][316] ([Intel XE#1124]) [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-464/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-dg2-set2: [SKIP][317] ([Intel XE#1124]) -> [SKIP][318] ([Intel XE#2136] / [Intel XE#2351]) +7 other tests skip [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-466/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2-set2: [SKIP][319] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][320] ([Intel XE#607]) [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg2-set2: [SKIP][321] ([Intel XE#1124]) -> [SKIP][322] ([Intel XE#2136]) +7 other tests skip [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg2-set2: [SKIP][323] ([Intel XE#2136]) -> [SKIP][324] ([Intel XE#1124]) +12 other tests skip [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-435/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-dg2-set2: [SKIP][325] ([Intel XE#2136]) -> [SKIP][326] ([Intel XE#607]) [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-463/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p: - shard-dg2-set2: [SKIP][327] ([Intel XE#367]) -> [SKIP][328] ([Intel XE#2423] / [i915#2575]) +5 other tests skip [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-434/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html * igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-dg2-set2: [SKIP][329] ([Intel XE#2423] / [i915#2575]) -> [SKIP][330] ([Intel XE#2191]) [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-464/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-dg2-set2: [SKIP][331] ([Intel XE#2191]) -> [SKIP][332] ([Intel XE#2423] / [i915#2575]) +1 other test skip [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-466/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt@kms_bw@linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: [SKIP][333] ([Intel XE#2423] / [i915#2575]) -> [SKIP][334] ([Intel XE#367]) +5 other tests skip [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-433/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs: - shard-dg2-set2: [SKIP][335] ([Intel XE#2136]) -> [SKIP][336] ([Intel XE#455] / [Intel XE#787]) +14 other tests skip [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-433/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs: - shard-dg2-set2: [SKIP][337] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][338] ([Intel XE#2136]) +9 other tests skip [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-466/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc: - shard-dg2-set2: [SKIP][339] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][340] ([Intel XE#455] / [Intel XE#787]) +1 other test skip [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-435/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][341] ([Intel XE#3442]) -> [SKIP][342] ([Intel XE#2136]) [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][343] ([Intel XE#2136]) -> [SKIP][344] ([Intel XE#2907]) +1 other test skip [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-464/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-dg2-set2: [SKIP][345] ([Intel XE#2907]) -> [SKIP][346] ([Intel XE#2136]) +1 other test skip [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs: - shard-dg2-set2: [SKIP][347] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][348] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html * igt@kms_chamelium_color@ctm-limited-range: - shard-dg2-set2: [SKIP][349] ([Intel XE#306]) -> [SKIP][350] ([Intel XE#2423] / [i915#2575]) +1 other test skip [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_chamelium_color@ctm-limited-range.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-434/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_color@degamma: - shard-dg2-set2: [SKIP][351] ([Intel XE#2423] / [i915#2575]) -> [SKIP][352] ([Intel XE#306]) +1 other test skip [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_chamelium_color@degamma.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-463/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-dg2-set2: [SKIP][353] ([Intel XE#2423] / [i915#2575]) -> [SKIP][354] ([Intel XE#373]) +11 other tests skip [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-435/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-dg2-set2: [SKIP][355] ([Intel XE#373]) -> [SKIP][356] ([Intel XE#2423] / [i915#2575]) +10 other tests skip [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_color@invalid-degamma-lut-sizes: - shard-dg2-set2: [DMESG-WARN][357] ([Intel XE#1727]) -> [SKIP][358] ([Intel XE#2423] / [i915#2575]) [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_color@invalid-degamma-lut-sizes.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-466/igt@kms_color@invalid-degamma-lut-sizes.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2-set2: [SKIP][359] ([Intel XE#2423] / [i915#2575]) -> [SKIP][360] ([Intel XE#307]) [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_content_protection@dp-mst-lic-type-1.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-436/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2-set2: [SKIP][361] ([Intel XE#307]) -> [SKIP][362] ([Intel XE#2423] / [i915#2575]) [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_content_protection@dp-mst-type-1.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-434/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy: - shard-bmg: [FAIL][363] ([Intel XE#1178]) -> [DMESG-FAIL][364] ([Intel XE#3468]) +1 other test dmesg-fail [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_content_protection@legacy.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-6/igt@kms_content_protection@legacy.html * igt@kms_content_protection@srm: - shard-dg2-set2: [FAIL][365] ([Intel XE#1178]) -> [SKIP][366] ([Intel XE#2423] / [i915#2575]) [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_content_protection@srm.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-434/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent: - shard-dg2-set2: [SKIP][367] ([Intel XE#2423] / [i915#2575]) -> [FAIL][368] ([Intel XE#1188]) [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_content_protection@uevent.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-463/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-dg2-set2: [SKIP][369] ([Intel XE#2423] / [i915#2575]) -> [SKIP][370] ([Intel XE#308]) [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_cursor_crc@cursor-offscreen-512x170.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-435/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-dg2-set2: [SKIP][371] ([Intel XE#308]) -> [SKIP][372] ([Intel XE#2423] / [i915#2575]) +1 other test skip [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-434/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-dg2-set2: [SKIP][373] ([Intel XE#2423] / [i915#2575]) -> [SKIP][374] ([Intel XE#455]) +9 other tests skip [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_cursor_crc@cursor-sliding-max-size.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-464/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2-set2: [SKIP][375] ([Intel XE#323]) -> [SKIP][376] ([Intel XE#2423] / [i915#2575]) +1 other test skip [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2-set2: [SKIP][377] ([Intel XE#2423] / [i915#2575]) -> [SKIP][378] ([Intel XE#323]) +1 other test skip [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-433/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg2-set2: [SKIP][379] ([Intel XE#455]) -> [SKIP][380] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_dsc@dsc-with-bpc-formats.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-466/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-formats: - shard-dg2-set2: [SKIP][381] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][382] ([Intel XE#455]) +4 other tests skip [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_dsc@dsc-with-formats.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-433/igt@kms_dsc@dsc-with-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-set2: [SKIP][383] ([Intel XE#2136]) -> [SKIP][384] ([Intel XE#455]) +2 other tests skip [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_dsc@dsc-with-output-formats-with-bpc.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-464/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-bmg: [DMESG-FAIL][385] ([Intel XE#3468]) -> [FAIL][386] ([Intel XE#1695]) [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_fbcon_fbt@fbc-suspend.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-7/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2-set2: [SKIP][387] ([Intel XE#776]) -> [SKIP][388] ([Intel XE#2136]) +1 other test skip [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_fbcon_fbt@psr-suspend.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-466/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@psr2: - shard-dg2-set2: [SKIP][389] ([Intel XE#1135]) -> [SKIP][390] ([Intel XE#2423] / [i915#2575]) [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_feature_discovery@psr2.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-434/igt@kms_feature_discovery@psr2.html * igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6: - shard-dg2-set2: [DMESG-FAIL][391] ([Intel XE#1727]) -> [FAIL][392] ([Intel XE#301]) +1 other test fail [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6.html [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: - shard-dg2-set2: [INCOMPLETE][393] ([Intel XE#1195] / [Intel XE#1727]) -> [SKIP][394] ([Intel XE#2136]) [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling: - shard-dg2-set2: [INCOMPLETE][395] ([Intel XE#1195] / [Intel XE#3468]) -> [SKIP][396] ([Intel XE#2136] / [Intel XE#2351]) [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-dg2-set2: [SKIP][397] ([Intel XE#455]) -> [SKIP][398] ([Intel XE#2136]) +3 other tests skip [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][399] ([Intel XE#651]) -> [SKIP][400] ([Intel XE#2136]) +20 other tests skip [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][401] ([Intel XE#2136]) -> [SKIP][402] ([Intel XE#651]) +26 other tests skip [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff.html [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: [SKIP][403] ([Intel XE#651]) -> [SKIP][404] ([Intel XE#2136] / [Intel XE#2351]) +10 other tests skip [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: [SKIP][405] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][406] ([Intel XE#651]) +7 other tests skip [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-suspend.html [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-suspend.html * igt@kms_frontbuffer_tracking@fbc-1p-rte: - shard-dg2-set2: [INCOMPLETE][407] ([Intel XE#1195]) -> [SKIP][408] ([Intel XE#2136]) [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-1p-rte.html [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-1p-rte.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [DMESG-FAIL][409] ([Intel XE#3468]) -> [FAIL][410] ([Intel XE#2333]) +11 other tests fail [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-rte: - shard-dg2-set2: [INCOMPLETE][411] ([Intel XE#1195] / [Intel XE#3468]) -> [ABORT][412] ([Intel XE#3468]) [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-rte.html [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-rte.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: [FAIL][413] ([Intel XE#2333]) -> [DMESG-FAIL][414] ([Intel XE#3468]) +5 other tests dmesg-fail [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-stridechange: - shard-bmg: [FAIL][415] ([Intel XE#2333]) -> [INCOMPLETE][416] ([Intel XE#3468]) [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-stridechange.html [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-stridechange.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: [SKIP][417] ([Intel XE#2136]) -> [SKIP][418] ([Intel XE#653]) +28 other tests skip [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-dg2-set2: [SKIP][419] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][420] ([Intel XE#653]) +5 other tests skip [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2-set2: [SKIP][421] ([Intel XE#2136]) -> [SKIP][422] ([Intel XE#1158]) [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_frontbuffer_tracking@plane-fbc-rte.html [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-463/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][423] ([Intel XE#653]) -> [SKIP][424] ([Intel XE#2136] / [Intel XE#2351]) +9 other tests skip [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt: - shard-dg2-set2: [SKIP][425] ([Intel XE#653]) -> [SKIP][426] ([Intel XE#2136]) +24 other tests skip [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html * igt@kms_hdr@invalid-hdr: - shard-dg2-set2: [SKIP][427] ([Intel XE#455]) -> [SKIP][428] ([Intel XE#2423] / [i915#2575]) +11 other tests skip [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_hdr@invalid-hdr.html [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-434/igt@kms_hdr@invalid-hdr.html * igt@kms_joiner@basic-big-joiner: - shard-dg2-set2: [SKIP][429] ([Intel XE#2136]) -> [SKIP][430] ([Intel XE#346]) +1 other test skip [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_joiner@basic-big-joiner.html [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-464/igt@kms_joiner@basic-big-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2-set2: [SKIP][431] ([Intel XE#2423] / [i915#2575]) -> [SKIP][432] ([Intel XE#356]) [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-436/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane_cursor@primary: - shard-dg2-set2: [FAIL][433] ([Intel XE#616]) -> [SKIP][434] ([Intel XE#2423] / [i915#2575]) [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_plane_cursor@primary.html [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-434/igt@kms_plane_cursor@primary.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg2-set2: [SKIP][435] ([Intel XE#2423] / [i915#2575]) -> [SKIP][436] ([Intel XE#2763] / [Intel XE#455]) [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-464/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-dg2-set2: [SKIP][437] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][438] ([Intel XE#2423] / [i915#2575]) +1 other test skip [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-466/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-dg2-set2: [SKIP][439] ([Intel XE#2938]) -> [SKIP][440] ([Intel XE#2136]) [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_pm_backlight@brightness-with-dpms.html [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-434/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade: - shard-dg2-set2: [SKIP][441] ([Intel XE#870]) -> [SKIP][442] ([Intel XE#2136]) +1 other test skip [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_pm_backlight@fade.html [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-434/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc5-psr: - shard-dg2-set2: [SKIP][443] ([Intel XE#2136]) -> [SKIP][444] ([Intel XE#1129]) [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_pm_dc@dc5-psr.html [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-433/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@deep-pkgc: - shard-dg2-set2: [SKIP][445] ([Intel XE#2136]) -> [SKIP][446] ([Intel XE#908]) [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_pm_dc@deep-pkgc.html [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-433/igt@kms_pm_dc@deep-pkgc.html * igt@kms_pm_rpm@cursor: - shard-dg2-set2: [SKIP][447] ([Intel XE#2446]) -> [INCOMPLETE][448] ([Intel XE#3468]) [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_pm_rpm@cursor.html [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-463/igt@kms_pm_rpm@cursor.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2-set2: [SKIP][449] ([Intel XE#2446]) -> [DMESG-WARN][450] ([Intel XE#3468]) [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-435/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@modeset-stress-extra-wait: - shard-dg2-set2: [ABORT][451] ([Intel XE#3468]) -> [SKIP][452] ([Intel XE#2446]) [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_pm_rpm@modeset-stress-extra-wait.html [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-466/igt@kms_pm_rpm@modeset-stress-extra-wait.html * igt@kms_pm_rpm@universal-planes-dpms: - shard-dg2-set2: [DMESG-WARN][453] ([Intel XE#2042]) -> [SKIP][454] ([Intel XE#2446]) [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_pm_rpm@universal-planes-dpms.html [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-434/igt@kms_pm_rpm@universal-planes-dpms.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: [SKIP][455] ([Intel XE#2136]) -> [SKIP][456] ([Intel XE#1489]) +13 other tests skip [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-433/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-dg2-set2: [SKIP][457] ([Intel XE#1489]) -> [SKIP][458] ([Intel XE#2136]) +10 other tests skip [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-434/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2-set2: [SKIP][459] ([Intel XE#2136]) -> [SKIP][460] ([Intel XE#1122]) [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_psr2_su@page_flip-nv12.html [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-433/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-p010: - shard-dg2-set2: [SKIP][461] ([Intel XE#1122]) -> [SKIP][462] ([Intel XE#2136]) [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_psr2_su@page_flip-p010.html [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-466/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr-sprite-plane-move: - shard-dg2-set2: [SKIP][463] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][464] ([Intel XE#2850] / [Intel XE#929]) +5 other tests skip [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_psr@fbc-psr-sprite-plane-move.html [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-435/igt@kms_psr@fbc-psr-sprite-plane-move.html * igt@kms_psr@fbc-psr-sprite-render: - shard-dg2-set2: [SKIP][465] ([Intel XE#2136]) -> [SKIP][466] ([Intel XE#2850] / [Intel XE#929]) +8 other tests skip [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_psr@fbc-psr-sprite-render.html [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-435/igt@kms_psr@fbc-psr-sprite-render.html * igt@kms_psr@psr-dpms: - shard-dg2-set2: [SKIP][467] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][468] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_psr@psr-dpms.html [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-434/igt@kms_psr@psr-dpms.html * igt@kms_psr@psr-primary-page-flip: - shard-dg2-set2: [SKIP][469] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][470] ([Intel XE#2351]) +1 other test skip [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_psr@psr-primary-page-flip.html [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-434/igt@kms_psr@psr-primary-page-flip.html * igt@kms_psr@psr2-cursor-plane-onoff: - shard-dg2-set2: [SKIP][471] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][472] ([Intel XE#2136]) +9 other tests skip [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_psr@psr2-cursor-plane-onoff.html [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-466/igt@kms_psr@psr2-cursor-plane-onoff.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2-set2: [SKIP][473] ([Intel XE#2136]) -> [SKIP][474] ([Intel XE#2939]) [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-463/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@bad-tiling: - shard-dg2-set2: [SKIP][475] ([Intel XE#2423] / [i915#2575]) -> [SKIP][476] ([Intel XE#3414]) +2 other tests skip [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_rotation_crc@bad-tiling.html [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-433/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-rotation-90: - shard-dg2-set2: [SKIP][477] ([Intel XE#3414]) -> [SKIP][478] ([Intel XE#2423] / [i915#2575]) +1 other test skip [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_rotation_crc@primary-rotation-90.html [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-466/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2-set2: [SKIP][479] ([Intel XE#2423] / [i915#2575]) -> [SKIP][480] ([Intel XE#1127]) [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-464/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg2-set2: [SKIP][481] ([Intel XE#1127]) -> [SKIP][482] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-466/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: [SKIP][483] ([Intel XE#2423] / [i915#2575]) -> [SKIP][484] ([Intel XE#1500]) [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-433/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_writeback@writeback-fb-id: - shard-dg2-set2: [SKIP][485] ([Intel XE#2423] / [i915#2575]) -> [SKIP][486] ([Intel XE#756]) +2 other tests skip [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_writeback@writeback-fb-id.html [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-436/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg2-set2: [SKIP][487] ([Intel XE#756]) -> [SKIP][488] ([Intel XE#2423] / [i915#2575]) +1 other test skip [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_writeback@writeback-pixel-formats.html [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-434/igt@kms_writeback@writeback-pixel-formats.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2-set2: [SKIP][489] ([Intel XE#2423] / [i915#2575]) -> [SKIP][490] ([Intel XE#1091] / [Intel XE#2849]) [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-433/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: [SKIP][491] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][492] ([Intel XE#1130]) [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_compute_preempt@compute-preempt-many.html [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-466/igt@xe_compute_preempt@compute-preempt-many.html * igt@xe_compute_preempt@compute-threadgroup-preempt: - shard-dg2-set2: [SKIP][493] ([Intel XE#1130]) -> [SKIP][494] ([Intel XE#1280] / [Intel XE#455]) [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_compute_preempt@compute-threadgroup-preempt.html [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-433/igt@xe_compute_preempt@compute-threadgroup-preempt.html * igt@xe_copy_basic@mem-set-linear-0x369: - shard-dg2-set2: [SKIP][495] ([Intel XE#1126]) -> [SKIP][496] ([Intel XE#1130]) [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@xe_copy_basic@mem-set-linear-0x369.html [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0x369.html * igt@xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: [SKIP][497] ([Intel XE#1130]) -> [SKIP][498] ([Intel XE#1126]) [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0xfd.html [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-464/igt@xe_copy_basic@mem-set-linear-0xfd.html * igt@xe_eudebug@basic-vm-access-parameters: - shard-dg2-set2: [SKIP][499] ([Intel XE#2905]) -> [SKIP][500] ([Intel XE#1130]) +12 other tests skip [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_eudebug@basic-vm-access-parameters.html [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-434/igt@xe_eudebug@basic-vm-access-parameters.html * igt@xe_eudebug_online@interrupt-other-debuggable: - shard-dg2-set2: [SKIP][501] ([Intel XE#1130]) -> [SKIP][502] ([Intel XE#2905]) +12 other tests skip [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_eudebug_online@interrupt-other-debuggable.html [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-464/igt@xe_eudebug_online@interrupt-other-debuggable.html * igt@xe_evict@evict-beng-large-multi-vm-cm: - shard-dg2-set2: [FAIL][503] ([Intel XE#1600]) -> [SKIP][504] ([Intel XE#1130]) [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@xe_evict@evict-beng-large-multi-vm-cm.html [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-434/igt@xe_evict@evict-beng-large-multi-vm-cm.html * igt@xe_exec_balancer@many-execqueues-virtual-rebind: - shard-dg2-set2: [DMESG-WARN][505] ([Intel XE#1727]) -> [SKIP][506] ([Intel XE#1130]) +1 other test skip [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_exec_balancer@many-execqueues-virtual-rebind.html [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-466/igt@xe_exec_balancer@many-execqueues-virtual-rebind.html * igt@xe_exec_basic@multigpu-once-basic-defer-mmap: - shard-dg2-set2: [INCOMPLETE][507] ([Intel XE#1195]) -> [SKIP][508] ([Intel XE#1130]) [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-434/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html * igt@xe_exec_fault_mode@once-bindexecqueue-imm: - shard-dg2-set2: [SKIP][509] ([Intel XE#1130]) -> [SKIP][510] ([Intel XE#288]) +31 other tests skip [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-464/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html * igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch: - shard-dg2-set2: [SKIP][511] ([Intel XE#288]) -> [SKIP][512] ([Intel XE#1130]) +30 other tests skip [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-466/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html * igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence: - shard-dg2-set2: [SKIP][513] ([Intel XE#2360]) -> [SKIP][514] ([Intel XE#1130]) [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-466/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html * igt@xe_exec_mix_modes@exec-simple-batch-store-lr: - shard-dg2-set2: [SKIP][515] ([Intel XE#1130]) -> [SKIP][516] ([Intel XE#2360]) +1 other test skip [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-435/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init: - shard-bmg: [DMESG-WARN][517] ([Intel XE#3343]) -> [DMESG-WARN][518] ([Intel XE#3343] / [Intel XE#3468]) [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init: - shard-dg2-set2: [SKIP][519] ([Intel XE#1130]) -> [DMESG-WARN][520] ([Intel XE#3343]) +1 other test dmesg-warn [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-436/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early: - shard-dg2-set2: [SKIP][521] ([Intel XE#1130]) -> [DMESG-WARN][522] ([Intel XE#3467]) [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-464/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html * igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init: - shard-bmg: [DMESG-WARN][523] ([Intel XE#3467]) -> [DMESG-WARN][524] ([Intel XE#3467] / [Intel XE#3468]) +1 other test dmesg-warn [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create: - shard-bmg: [DMESG-FAIL][525] ([Intel XE#3467]) -> [DMESG-FAIL][526] ([Intel XE#3467] / [Intel XE#3468]) [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run: - shard-bmg: [FAIL][527] ([Intel XE#3499]) -> [DMESG-FAIL][528] ([Intel XE#3467]) [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html * igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind: - shard-bmg: [DMESG-WARN][529] ([Intel XE#3467]) -> [DMESG-WARN][530] ([Intel XE#3468]) [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-2/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html * igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch: - shard-dg2-set2: [DMESG-WARN][531] ([Intel XE#3467]) -> [SKIP][532] ([Intel XE#1130]) +1 other test skip [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-466/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html * igt@xe_huc_copy@huc_copy: - shard-dg2-set2: [SKIP][533] ([Intel XE#1130]) -> [SKIP][534] ([Intel XE#255]) [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_huc_copy@huc_copy.html [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-433/igt@xe_huc_copy@huc_copy.html * igt@xe_live_ktest@xe_bo: - shard-bmg: [INCOMPLETE][535] ([Intel XE#2998]) -> [SKIP][536] ([Intel XE#1192]) [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-7/igt@xe_live_ktest@xe_bo.html [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-5/igt@xe_live_ktest@xe_bo.html * igt@xe_live_ktest@xe_eudebug: - shard-bmg: [SKIP][537] ([Intel XE#2833]) -> [SKIP][538] ([Intel XE#1192]) [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@xe_live_ktest@xe_eudebug.html [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-bmg-8/igt@xe_live_ktest@xe_eudebug.html - shard-lnl: [SKIP][539] ([Intel XE#2833]) -> [SKIP][540] ([Intel XE#1192] / [Intel XE#3026]) [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-5/igt@xe_live_ktest@xe_eudebug.html [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-lnl-2/igt@xe_live_ktest@xe_eudebug.html * igt@xe_live_ktest@xe_mocs: - shard-dg2-set2: [SKIP][541] ([Intel XE#1192]) -> [FAIL][542] ([Intel XE#1999]) [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_live_ktest@xe_mocs.html [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-434/igt@xe_live_ktest@xe_mocs.html * igt@xe_mmap@small-bar: - shard-dg2-set2: [SKIP][543] ([Intel XE#1130]) -> [SKIP][544] ([Intel XE#512]) [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_mmap@small-bar.html [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-433/igt@xe_mmap@small-bar.html * igt@xe_oa@non-privileged-map-oa-buffer: - shard-dg2-set2: [SKIP][545] ([Intel XE#2541]) -> [SKIP][546] ([Intel XE#1130]) +8 other tests skip [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@xe_oa@non-privileged-map-oa-buffer.html [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-434/igt@xe_oa@non-privileged-map-oa-buffer.html * igt@xe_oa@syncs-userptr-wait-cfg: - shard-dg2-set2: [SKIP][547] ([Intel XE#1130]) -> [SKIP][548] ([Intel XE#2541]) +5 other tests skip [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_oa@syncs-userptr-wait-cfg.html [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-464/igt@xe_oa@syncs-userptr-wait-cfg.html * igt@xe_pat@pat-index-xe2: - shard-dg2-set2: [SKIP][549] ([Intel XE#1130]) -> [SKIP][550] ([Intel XE#2839] / [Intel XE#977]) [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_pat@pat-index-xe2.html [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-433/igt@xe_pat@pat-index-xe2.html * igt@xe_pat@pat-index-xehpc: - shard-dg2-set2: [SKIP][551] ([Intel XE#1130]) -> [SKIP][552] ([Intel XE#2838] / [Intel XE#979]) [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_pat@pat-index-xehpc.html [552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-464/igt@xe_pat@pat-index-xehpc.html * igt@xe_peer2peer@read: - shard-dg2-set2: [SKIP][553] ([Intel XE#1061]) -> [FAIL][554] ([Intel XE#1173]) [553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_peer2peer@read.html [554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-436/igt@xe_peer2peer@read.html * igt@xe_peer2peer@write: - shard-dg2-set2: [FAIL][555] ([Intel XE#1173]) -> [SKIP][556] ([Intel XE#1061]) [555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_peer2peer@write.html [556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-466/igt@xe_peer2peer@write.html * igt@xe_pm@d3cold-mocs: - shard-dg2-set2: [SKIP][557] ([Intel XE#2284]) -> [SKIP][558] ([Intel XE#1130]) [557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_pm@d3cold-mocs.html [558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-466/igt@xe_pm@d3cold-mocs.html * igt@xe_pm@d3hot-mmap-system: - shard-dg2-set2: [SKIP][559] ([Intel XE#1130]) -> [DMESG-WARN][560] ([Intel XE#3468]) [559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_pm@d3hot-mmap-system.html [560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-435/igt@xe_pm@d3hot-mmap-system.html * igt@xe_pm@s3-basic-exec: - shard-dg2-set2: [DMESG-WARN][561] ([Intel XE#569]) -> [SKIP][562] ([Intel XE#1130]) [561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_pm@s3-basic-exec.html [562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-466/igt@xe_pm@s3-basic-exec.html * igt@xe_pm@s3-d3hot-basic-exec: - shard-dg2-set2: [SKIP][563] ([Intel XE#1130]) -> [DMESG-WARN][564] ([Intel XE#3468] / [Intel XE#569]) [563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_pm@s3-d3hot-basic-exec.html [564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-435/igt@xe_pm@s3-d3hot-basic-exec.html * igt@xe_query@multigpu-query-invalid-cs-cycles: - shard-dg2-set2: [SKIP][565] ([Intel XE#1130]) -> [SKIP][566] ([Intel XE#944]) +2 other tests skip [565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_query@multigpu-query-invalid-cs-cycles.html [566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-464/igt@xe_query@multigpu-query-invalid-cs-cycles.html * igt@xe_query@multigpu-query-oa-units: - shard-dg2-set2: [SKIP][567] ([Intel XE#944]) -> [SKIP][568] ([Intel XE#1130]) +2 other tests skip [567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@xe_query@multigpu-query-oa-units.html [568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-434/igt@xe_query@multigpu-query-oa-units.html * igt@xe_sriov_flr@flr-each-isolation: - shard-dg2-set2: [SKIP][569] ([Intel XE#1130]) -> [SKIP][570] ([Intel XE#3342]) [569]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_sriov_flr@flr-each-isolation.html [570]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-435/igt@xe_sriov_flr@flr-each-isolation.html * igt@xe_wedged@wedged-mode-toggle: - shard-dg2-set2: [ABORT][571] ([Intel XE#3075] / [Intel XE#3084]) -> [SKIP][572] ([Intel XE#1130]) [571]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@xe_wedged@wedged-mode-toggle.html [572]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/shard-dg2-434/igt@xe_wedged@wedged-mode-toggle.html [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [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#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135 [Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152 [Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158 [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [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#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [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#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616 [Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885 [Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#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#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550 [Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2613]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2613 [Intel XE#2687]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2687 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#2839]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2839 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919 [Intel XE#2932]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2932 [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939 [Intel XE#2998]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2998 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3026]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3026 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#3070]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070 [Intel XE#3075]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3075 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#3084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3084 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [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#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184 [Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343 [Intel XE#3371]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3371 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3416 [Intel XE#3433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433 [Intel XE#3440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3440 [Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#3466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3466 [Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467 [Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468 [Intel XE#3486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3486 [Intel XE#3499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3499 [Intel XE#3514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3514 [Intel XE#3521]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3521 [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#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 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8118 -> IGTPW_12140 * Linux: xe-2252-f8f85a38f6c75e091805f01ceff4041ac2fdf3fd -> xe-2254-ccf64319402f90f68549e2047a7f985a46436e41 IGTPW_12140: 12140 IGT_8118: 17707095f1e5d3c30f463b43022f01c0160579b6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2252-f8f85a38f6c75e091805f01ceff4041ac2fdf3fd: f8f85a38f6c75e091805f01ceff4041ac2fdf3fd xe-2254-ccf64319402f90f68549e2047a7f985a46436e41: ccf64319402f90f68549e2047a7f985a46436e41 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12140/index.html [-- Attachment #2: Type: text/html, Size: 171477 bytes --] ^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2024-12-13 13:10 UTC | newest] Thread overview: 14+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-11-19 7:52 [PATCH 0/5] Update image assets Naladala Ramanaidu 2024-11-19 7:52 ` [PATCH 1/5] data: create new data directory Naladala Ramanaidu 2024-12-11 9:25 ` Kamil Konieczny 2024-11-19 7:52 ` [PATCH 2/5] runner/settings: Update absolute_path function to accept const char* parameter Naladala Ramanaidu 2024-11-19 7:52 ` [PATCH 3/5] runner/settings: Add function to set IMGDIR environment variable Naladala Ramanaidu 2024-12-11 9:14 ` Kamil Konieczny 2024-12-13 13:10 ` Sharma, Swati2 2024-11-19 7:52 ` [PATCH 4/5] lib: update fopen() to accomodate imgdir Naladala Ramanaidu 2024-11-20 3:06 ` Reddy Guddati, Santhosh 2024-11-19 7:52 ` [PATCH 5/5] HAX patch do not merge Naladala Ramanaidu 2024-11-19 22:42 ` ✗ GitLab.Pipeline: warning for Update image assets Patchwork 2024-11-19 22:45 ` ✗ CI.xeBAT: failure " Patchwork 2024-11-19 23:04 ` ✗ Fi.CI.BAT: " Patchwork 2024-11-20 11:14 ` ✗ CI.xeFULL: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox