* [igt-dev] [i-g-t 0/2] Ignore uncompiled tests
@ 2023-08-31 15:21 Bhanuprakash Modem
2023-08-31 15:21 ` [igt-dev] [i-g-t 1/2] scripts/test_list: " Bhanuprakash Modem
` (5 more replies)
0 siblings, 6 replies; 9+ messages in thread
From: Bhanuprakash Modem @ 2023-08-31 15:21 UTC (permalink / raw)
To: igt-dev, mauro.chehab
Ignore if testlist file isn't found during the testplan
testlist generation.
Bhanuprakash Modem (2):
scripts/test_list: Ignore uncompiled tests
testplan/kms: Make documentation is mandatory for all kms subtests
docs/testplan/meson.build | 4 ++--
scripts/test_list.py | 8 ++++++--
2 files changed, 8 insertions(+), 4 deletions(-)
--
2.40.0
^ permalink raw reply [flat|nested] 9+ messages in thread* [igt-dev] [i-g-t 1/2] scripts/test_list: Ignore uncompiled tests 2023-08-31 15:21 [igt-dev] [i-g-t 0/2] Ignore uncompiled tests Bhanuprakash Modem @ 2023-08-31 15:21 ` Bhanuprakash Modem 2023-08-31 15:53 ` Mauro Carvalho Chehab 2023-08-31 15:22 ` [igt-dev] [i-g-t 2/2] testplan/kms: Make documentation is mandatory for all kms subtests Bhanuprakash Modem ` (4 subsequent siblings) 5 siblings, 1 reply; 9+ messages in thread From: Bhanuprakash Modem @ 2023-08-31 15:21 UTC (permalink / raw) To: igt-dev, mauro.chehab As we are using wildcards in test_config json file, script assumes each file in the list is compiled & <file_name>.testlist is generated. But it is not always true. Example: - kms_test_config.json includes all files inside chamelium dir - And if we compile without chamelium tests, will endup with build failures. $ meson -Dchamelium=disabled build && ninja -C build FileNotFoundError: [Errno 2] No such file or directory: 'igt/build/tests/kms_chamelium_frames.testlist' [1551/1555] Compiling C object 'runner/527aa9f@@runner_test@exe/runner_tests.c.o'. ninja: build stopped: subcommand failed. make: *** [Makefile:10: all] Error 1 So, update the scripts to just ignore if <file_name>.testlist isn't find. $ meson -Dchamelium=disabled build && ninja -C build [5/7] Generating kms_tests.rst with a custom command kms_chamelium_hpd.testlist: Testlist file not found. kms_chamelium_frames.testlist: Testlist file not found. kms_chamelium_audio.testlist: Testlist file not found. kms_chamelium_edid.testlist: Testlist file not found. kms_chamelium_color.testlist: Testlist file not found. [7/7] Generating kms_tests.html with a custom command Cc: Mauro Carvalho Chehab <mchehab@kernel.org> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> --- scripts/test_list.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/scripts/test_list.py b/scripts/test_list.py index c23d6d735..0bcc96869 100755 --- a/scripts/test_list.py +++ b/scripts/test_list.py @@ -914,8 +914,12 @@ class TestList: """ Return a list of tests as reported by --list-subtests """ tests = [] for name in self.filenames: - fname = re.sub(r"\.c$", ".testlist", name.split('/')[-1]) - fname = os.path.join(self.igt_build_path, "tests", fname) + testlist = re.sub(r"\.c$", ".testlist", name.split('/')[-1]) + fname = os.path.join(self.igt_build_path, "tests", testlist) + + if not os.path.isfile(fname): + print(f"{testlist}: Testlist file not found.") + continue with open(fname, 'r', encoding='utf8') as handle: for line in handle: -- 2.40.0 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [igt-dev] [i-g-t 1/2] scripts/test_list: Ignore uncompiled tests 2023-08-31 15:21 ` [igt-dev] [i-g-t 1/2] scripts/test_list: " Bhanuprakash Modem @ 2023-08-31 15:53 ` Mauro Carvalho Chehab 0 siblings, 0 replies; 9+ messages in thread From: Mauro Carvalho Chehab @ 2023-08-31 15:53 UTC (permalink / raw) To: Bhanuprakash Modem; +Cc: igt-dev On Thu, 31 Aug 2023 20:51:59 +0530 Bhanuprakash Modem <bhanuprakash.modem@intel.com> wrote: > As we are using wildcards in test_config json file, script > assumes each file in the list is compiled & <file_name>.testlist > is generated. But it is not always true. > > Example: > - kms_test_config.json includes all files inside chamelium dir > - And if we compile without chamelium tests, will endup with > build failures. > > $ meson -Dchamelium=disabled build && ninja -C build > FileNotFoundError: [Errno 2] No such file or directory: 'igt/build/tests/kms_chamelium_frames.testlist' > [1551/1555] Compiling C object 'runner/527aa9f@@runner_test@exe/runner_tests.c.o'. > ninja: build stopped: subcommand failed. > make: *** [Makefile:10: all] Error 1 > > So, update the scripts to just ignore if <file_name>.testlist isn't find. > > $ meson -Dchamelium=disabled build && ninja -C build > [5/7] Generating kms_tests.rst with a custom command > kms_chamelium_hpd.testlist: Testlist file not found. > kms_chamelium_frames.testlist: Testlist file not found. > kms_chamelium_audio.testlist: Testlist file not found. > kms_chamelium_edid.testlist: Testlist file not found. > kms_chamelium_color.testlist: Testlist file not found. > [7/7] Generating kms_tests.html with a custom command > > Cc: Mauro Carvalho Chehab <mchehab@kernel.org> > Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> Reviewed-by: Mauro Carvalho Chehab <mchehab@kernel.org> > --- > scripts/test_list.py | 8 ++++++-- > 1 file changed, 6 insertions(+), 2 deletions(-) > > diff --git a/scripts/test_list.py b/scripts/test_list.py > index c23d6d735..0bcc96869 100755 > --- a/scripts/test_list.py > +++ b/scripts/test_list.py > @@ -914,8 +914,12 @@ class TestList: > """ Return a list of tests as reported by --list-subtests """ > tests = [] > for name in self.filenames: > - fname = re.sub(r"\.c$", ".testlist", name.split('/')[-1]) > - fname = os.path.join(self.igt_build_path, "tests", fname) > + testlist = re.sub(r"\.c$", ".testlist", name.split('/')[-1]) > + fname = os.path.join(self.igt_build_path, "tests", testlist) > + > + if not os.path.isfile(fname): > + print(f"{testlist}: Testlist file not found.") > + continue > > with open(fname, 'r', encoding='utf8') as handle: > for line in handle: ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] [i-g-t 2/2] testplan/kms: Make documentation is mandatory for all kms subtests 2023-08-31 15:21 [igt-dev] [i-g-t 0/2] Ignore uncompiled tests Bhanuprakash Modem 2023-08-31 15:21 ` [igt-dev] [i-g-t 1/2] scripts/test_list: " Bhanuprakash Modem @ 2023-08-31 15:22 ` Bhanuprakash Modem 2023-08-31 15:54 ` Mauro Carvalho Chehab 2023-08-31 20:10 ` [igt-dev] ✗ GitLab.Pipeline: warning for Ignore uncompiled tests Patchwork ` (3 subsequent siblings) 5 siblings, 1 reply; 9+ messages in thread From: Bhanuprakash Modem @ 2023-08-31 15:22 UTC (permalink / raw) To: igt-dev, mauro.chehab As testplan documentation is ready for all kms tests, update the testplan config to make sure we are not missing the documentation all the kms tests. Cc: Mauro Carvalho Chehab <mchehab@kernel.org> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> --- docs/testplan/meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/testplan/meson.build b/docs/testplan/meson.build index e838f2eb1..433464dc8 100644 --- a/docs/testplan/meson.build +++ b/docs/testplan/meson.build @@ -31,13 +31,13 @@ xe_test_dict = { if build_xe test_dict = { 'i915_tests': { 'input': i915_test_config, 'extra_args': check_testlist }, - 'kms_tests': { 'input': kms_test_config, 'extra_args': [] }, + 'kms_tests': { 'input': kms_test_config, 'extra_args': check_testlist }, 'xe_tests': { 'input': xe_test_config, 'extra_args': check_testlist } } else test_dict = { 'i915_tests': { 'input': i915_test_config, 'extra_args': check_testlist }, - 'kms_tests': { 'input': kms_test_config, 'extra_args': [] } + 'kms_tests': { 'input': kms_test_config, 'extra_args': check_testlist } } endif -- 2.40.0 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [igt-dev] [i-g-t 2/2] testplan/kms: Make documentation is mandatory for all kms subtests 2023-08-31 15:22 ` [igt-dev] [i-g-t 2/2] testplan/kms: Make documentation is mandatory for all kms subtests Bhanuprakash Modem @ 2023-08-31 15:54 ` Mauro Carvalho Chehab 0 siblings, 0 replies; 9+ messages in thread From: Mauro Carvalho Chehab @ 2023-08-31 15:54 UTC (permalink / raw) To: Bhanuprakash Modem; +Cc: igt-dev On Thu, 31 Aug 2023 20:52:00 +0530 Bhanuprakash Modem <bhanuprakash.modem@intel.com> wrote: > As testplan documentation is ready for all kms tests, update the > testplan config to make sure we are not missing the documentation > all the kms tests. > > Cc: Mauro Carvalho Chehab <mchehab@kernel.org> > Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> Reviewed-by: Mauro Carvalho Chehab <mchehab@kernel.org> > --- > docs/testplan/meson.build | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/docs/testplan/meson.build b/docs/testplan/meson.build > index e838f2eb1..433464dc8 100644 > --- a/docs/testplan/meson.build > +++ b/docs/testplan/meson.build > @@ -31,13 +31,13 @@ xe_test_dict = { > if build_xe > test_dict = { > 'i915_tests': { 'input': i915_test_config, 'extra_args': check_testlist }, > - 'kms_tests': { 'input': kms_test_config, 'extra_args': [] }, > + 'kms_tests': { 'input': kms_test_config, 'extra_args': check_testlist }, > 'xe_tests': { 'input': xe_test_config, 'extra_args': check_testlist } > } > else > test_dict = { > 'i915_tests': { 'input': i915_test_config, 'extra_args': check_testlist }, > - 'kms_tests': { 'input': kms_test_config, 'extra_args': [] } > + 'kms_tests': { 'input': kms_test_config, 'extra_args': check_testlist } > } > endif > ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] ✗ GitLab.Pipeline: warning for Ignore uncompiled tests 2023-08-31 15:21 [igt-dev] [i-g-t 0/2] Ignore uncompiled tests Bhanuprakash Modem 2023-08-31 15:21 ` [igt-dev] [i-g-t 1/2] scripts/test_list: " Bhanuprakash Modem 2023-08-31 15:22 ` [igt-dev] [i-g-t 2/2] testplan/kms: Make documentation is mandatory for all kms subtests Bhanuprakash Modem @ 2023-08-31 20:10 ` Patchwork 2023-08-31 20:40 ` [igt-dev] ✓ CI.xeBAT: success " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2023-08-31 20:10 UTC (permalink / raw) To: Bhanuprakash Modem; +Cc: igt-dev == Series Details == Series: Ignore uncompiled tests URL : https://patchwork.freedesktop.org/series/123120/ State : warning == Summary == Pipeline status: FAILED. see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/974816 for the overview. build-containers:build-debian-mips has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/48329380): Checking if the job's project is part of a well-known group... Thank you for contributing to freedesktop.org $ podman login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY Login Succeeded! $ .gitlab-ci/pull-or-rebuild.sh base Dockerfile.build-debian-mips build-debian-mips time="2023-08-31T20:07:50Z" level=fatal msg="Error determining repository tags: Get https://registry.freedesktop.org/v2/gfx-ci/igt-ci-tags/build-debian-mips/tags/list?last=commit-a619de147799e747828de5c4348a59ad9a394aa2&n=100: dial tcp 147.75.198.156:443: i/o timeout" Building! STEP 1: FROM debian:buster Error: error creating build container: The following failures happened while trying to pull image specified by "debian:buster" based on search registries in /etc/containers/registries.conf: * "localhost/debian:buster": Error initializing source docker://localhost/debian:buster: pinging docker registry returned: Get https://localhost/v2/: dial tcp [::1]:443: connect: connection refused * "docker.io/library/debian:buster": Error initializing source docker://debian:buster: pinging docker registry returned: Get https://registry-1.docker.io/v2/: dial tcp: lookup registry-1.docker.io on 147.75.207.208:53: read udp 10.88.110.137:34635->147.75.207.208:53: i/o timeout * "registry.fedoraproject.org/debian:buster": Error initializing source docker://registry.fedoraproject.org/debian:buster: Error reading manifest buster in registry.fedoraproject.org/debian: manifest unknown: manifest unknown * "quay.io/debian:buster": Error initializing source docker://quay.io/debian:buster: Error reading manifest buster in quay.io/debian: error parsing HTTP 404 response body: invalid character '<' looking for beginning of value: "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 3.2 Final//EN\">\n<title>404 Not Found</title>\n<h1>Not Found</h1>\n<p>The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.</p>\n" * "registry.centos.org/debian:buster": Error initializing source docker://registry.centos.org/debian:buster: pinging docker registry returned: Get https://registry.centos.org/v2/: dial tcp: lookup registry.centos.org on 147.75.207.207:53: no such host section_end:1693512501:step_script section_start:1693512501:cleanup_file_variables Cleaning up project directory and file based variables section_end:1693512501:cleanup_file_variables ERROR: Job failed: exit code 1 build-containers:build-fedora has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/48329381): time="2023-08-31T20:08:01Z" level=fatal msg="Error determining repository tags: pinging docker registry returned: Get https://registry.freedesktop.org/v2/: dial tcp 147.75.198.156:443: i/o timeout" Building! STEP 1: FROM fedora:31 Getting image source signatures Copying blob sha256:854946d575a439a894349addd141568875d7c1e673d3286b08250f3dde002e6a Copying config sha256:7e94ed77b448a8d2ff08b92d3ca743e4e862c744892d6886c73487581eb5863a Writing manifest to image destination Storing signatures STEP 2: RUN dnf install -y gcc flex bison libatomic meson ninja-build xdotool 'pkgconfig(libdrm)' 'pkgconfig(pciaccess)' 'pkgconfig(libkmod)' 'pkgconfig(libprocps)' 'pkgconfig(libunwind)' 'pkgconfig(libdw)' 'pkgconfig(pixman-1)' 'pkgconfig(valgrind)' 'pkgconfig(cairo)' 'pkgconfig(libudev)' 'pkgconfig(glib-2.0)' 'pkgconfig(gsl)' 'pkgconfig(alsa)' 'pkgconfig(xmlrpc)' 'pkgconfig(xmlrpc_util)' 'pkgconfig(xmlrpc_client)' 'pkgconfig(json-c)' 'pkgconfig(gtk-doc)' 'pkgconfig(xv)' 'pkgconfig(xrandr)' python3-docutils error running container: error creating container for [/bin/sh -c dnf install -y gcc flex bison libatomic meson ninja-build xdotool 'pkgconfig(libdrm)' 'pkgconfig(pciaccess)' 'pkgconfig(libkmod)' 'pkgconfig(libprocps)' 'pkgconfig(libunwind)' 'pkgconfig(libdw)' 'pkgconfig(pixman-1)' 'pkgconfig(valgrind)' 'pkgconfig(cairo)' 'pkgconfig(libudev)' 'pkgconfig(glib-2.0)' 'pkgconfig(gsl)' 'pkgconfig(alsa)' 'pkgconfig(xmlrpc)' 'pkgconfig(xmlrpc_util)' 'pkgconfig(xmlrpc_client)' 'pkgconfig(json-c)' 'pkgconfig(gtk-doc)' 'pkgconfig(xv)' 'pkgconfig(xrandr)' python3-docutils]: time="2023-08-31T20:08:07Z" level=warning msg="signal: killed" time="2023-08-31T20:08:07Z" level=error msg="container_linux.go:346: starting container process caused \"process_linux.go:297: applying cgroup configuration for process caused \\\"mountpoint for cgroup not found\\\"\"\n" container_linux.go:346: starting container process caused "process_linux.go:297: applying cgroup configuration for process caused \"mountpoint for cgroup not found\"" : exit status 1 Error: error building at STEP "RUN dnf install -y gcc flex bison libatomic meson ninja-build xdotool 'pkgconfig(libdrm)' 'pkgconfig(pciaccess)' 'pkgconfig(libkmod)' 'pkgconfig(libprocps)' 'pkgconfig(libunwind)' 'pkgconfig(libdw)' 'pkgconfig(pixman-1)' 'pkgconfig(valgrind)' 'pkgconfig(cairo)' 'pkgconfig(libudev)' 'pkgconfig(glib-2.0)' 'pkgconfig(gsl)' 'pkgconfig(alsa)' 'pkgconfig(xmlrpc)' 'pkgconfig(xmlrpc_util)' 'pkgconfig(xmlrpc_client)' 'pkgconfig(json-c)' 'pkgconfig(gtk-doc)' 'pkgconfig(xv)' 'pkgconfig(xrandr)' python3-docutils": error while running runtime: exit status 1 section_end:1693512487:step_script section_start:1693512487:cleanup_file_variables Cleaning up project directory and file based variables section_end:1693512488:cleanup_file_variables ERROR: Job failed: exit code 1 == Logs == For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/974816 ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for Ignore uncompiled tests 2023-08-31 15:21 [igt-dev] [i-g-t 0/2] Ignore uncompiled tests Bhanuprakash Modem ` (2 preceding siblings ...) 2023-08-31 20:10 ` [igt-dev] ✗ GitLab.Pipeline: warning for Ignore uncompiled tests Patchwork @ 2023-08-31 20:40 ` Patchwork 2023-08-31 20:46 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork 2023-09-01 2:44 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2023-08-31 20:40 UTC (permalink / raw) To: Bhanuprakash Modem; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1724 bytes --] == Series Details == Series: Ignore uncompiled tests URL : https://patchwork.freedesktop.org/series/123120/ State : success == Summary == CI Bug Log - changes from XEIGT_7460_BAT -> XEIGTPW_9696_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_9696_BAT that come from known issues: ### IGT changes ### #### Possible fixes #### * {igt@xe_create@create-execqueues-noleak}: - bat-atsm-2: [FAIL][1] ([Intel XE#524]) -> [PASS][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7460/bat-atsm-2/igt@xe_create@create-execqueues-noleak.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9696/bat-atsm-2/igt@xe_create@create-execqueues-noleak.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#524]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/524 Build changes ------------- * IGT: IGT_7460 -> IGTPW_9696 * Linux: xe-348-72da4b45f58f2a95d45743801a10e1f1e1dcce05 -> xe-350-62acaf965d51695cdc9622608e7a2440db46997c IGTPW_9696: 9696 IGT_7460: 30b4034ea562952039ba6af58106791d5c39999e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-348-72da4b45f58f2a95d45743801a10e1f1e1dcce05: 72da4b45f58f2a95d45743801a10e1f1e1dcce05 xe-350-62acaf965d51695cdc9622608e7a2440db46997c: 62acaf965d51695cdc9622608e7a2440db46997c == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9696/index.html [-- Attachment #2: Type: text/html, Size: 2310 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Ignore uncompiled tests 2023-08-31 15:21 [igt-dev] [i-g-t 0/2] Ignore uncompiled tests Bhanuprakash Modem ` (3 preceding siblings ...) 2023-08-31 20:40 ` [igt-dev] ✓ CI.xeBAT: success " Patchwork @ 2023-08-31 20:46 ` Patchwork 2023-09-01 2:44 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2023-08-31 20:46 UTC (permalink / raw) To: Bhanuprakash Modem; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 8841 bytes --] == Series Details == Series: Ignore uncompiled tests URL : https://patchwork.freedesktop.org/series/123120/ State : success == Summary == CI Bug Log - changes from CI_DRM_13583 -> IGTPW_9696 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/index.html Participating hosts (38 -> 39) ------------------------------ Additional (2): fi-kbl-soraka bat-rpls-2 Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_9696 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-rpls-2: NOTRUN -> [SKIP][1] ([i915#7456]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/bat-rpls-2/igt@debugfs_test@basic-hwmon.html * igt@fbdev@info: - bat-rpls-2: NOTRUN -> [SKIP][2] ([i915#1849] / [i915#2582]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/bat-rpls-2/igt@fbdev@info.html * igt@fbdev@read: - bat-rpls-2: NOTRUN -> [SKIP][3] ([i915#2582]) +3 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/bat-rpls-2/igt@fbdev@read.html * igt@gem_huc_copy@huc-copy: - fi-kbl-soraka: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#2190]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-kbl-soraka: NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#4613]) +3 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@verify-random: - bat-rpls-2: NOTRUN -> [SKIP][6] ([i915#4613]) +3 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/bat-rpls-2/igt@gem_lmem_swapping@verify-random.html * igt@gem_tiled_pread_basic: - bat-rpls-2: NOTRUN -> [SKIP][7] ([i915#3282]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/bat-rpls-2/igt@gem_tiled_pread_basic.html * igt@i915_pm_backlight@basic-brightness: - bat-rpls-2: NOTRUN -> [SKIP][8] ([i915#7561]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/bat-rpls-2/igt@i915_pm_backlight@basic-brightness.html * igt@i915_pm_rps@basic-api: - bat-rpls-2: NOTRUN -> [SKIP][9] ([i915#6621]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/bat-rpls-2/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live@gt_pm: - bat-rpls-2: NOTRUN -> [DMESG-FAIL][10] ([i915#4258] / [i915#7913]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/bat-rpls-2/igt@i915_selftest@live@gt_pm.html - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][11] ([i915#1886] / [i915#7913]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@live@mman: - bat-rpls-1: [PASS][12] -> [TIMEOUT][13] ([i915#6794] / [i915#7392]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/bat-rpls-1/igt@i915_selftest@live@mman.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/bat-rpls-1/igt@i915_selftest@live@mman.html * igt@i915_suspend@basic-s2idle-without-i915: - bat-rpls-1: [PASS][14] -> [WARN][15] ([i915#8747]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/bat-rpls-1/igt@i915_suspend@basic-s2idle-without-i915.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/bat-rpls-1/igt@i915_suspend@basic-s2idle-without-i915.html * igt@kms_busy@basic: - bat-rpls-2: NOTRUN -> [SKIP][16] ([i915#1845]) +16 similar issues [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/bat-rpls-2/igt@kms_busy@basic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - fi-kbl-soraka: NOTRUN -> [SKIP][17] ([fdo#109271]) +8 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/fi-kbl-soraka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_flip@basic-flip-vs-dpms: - bat-rpls-2: NOTRUN -> [SKIP][18] ([i915#3637]) +3 similar issues [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/bat-rpls-2/igt@kms_flip@basic-flip-vs-dpms.html * igt@kms_force_connector_basic@force-load-detect: - bat-rpls-2: NOTRUN -> [SKIP][19] ([fdo#109285]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/bat-rpls-2/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@basic: - bat-rpls-2: NOTRUN -> [SKIP][20] ([i915#1849]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/bat-rpls-2/igt@kms_frontbuffer_tracking@basic.html * igt@kms_psr@sprite_plane_onoff: - bat-rpls-2: NOTRUN -> [SKIP][21] ([i915#1072]) +3 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/bat-rpls-2/igt@kms_psr@sprite_plane_onoff.html * igt@kms_setmode@basic-clone-single-crtc: - bat-rpls-2: NOTRUN -> [SKIP][22] ([i915#3555]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/bat-rpls-2/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - bat-rpls-2: NOTRUN -> [SKIP][23] ([fdo#109295] / [i915#1845] / [i915#3708]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/bat-rpls-2/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-read: - bat-rpls-2: NOTRUN -> [SKIP][24] ([fdo#109295] / [i915#3708]) +2 similar issues [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/bat-rpls-2/igt@prime_vgem@basic-fence-read.html #### Possible fixes #### * igt@kms_chamelium_edid@hdmi-edid-read: - {bat-dg2-13}: [DMESG-WARN][25] ([i915#7952]) -> [PASS][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html #### Warnings #### * igt@kms_psr@primary_mmap_gtt: - bat-rplp-1: [ABORT][27] ([i915#8469]) -> [ABORT][28] ([i915#8442] / [i915#8469] / [i915#8668]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/bat-rplp-1/igt@kms_psr@primary_mmap_gtt.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/bat-rplp-1/igt@kms_psr@primary_mmap_gtt.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6794]: https://gitlab.freedesktop.org/drm/intel/issues/6794 [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392 [i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7952]: https://gitlab.freedesktop.org/drm/intel/issues/7952 [i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442 [i915#8469]: https://gitlab.freedesktop.org/drm/intel/issues/8469 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8747]: https://gitlab.freedesktop.org/drm/intel/issues/8747 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7460 -> IGTPW_9696 CI-20190529: 20190529 CI_DRM_13583: f299d7585a085ee36999da219c292e265da35886 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9696: 9696 IGT_7460: 30b4034ea562952039ba6af58106791d5c39999e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/index.html [-- Attachment #2: Type: text/html, Size: 10687 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for Ignore uncompiled tests 2023-08-31 15:21 [igt-dev] [i-g-t 0/2] Ignore uncompiled tests Bhanuprakash Modem ` (4 preceding siblings ...) 2023-08-31 20:46 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork @ 2023-09-01 2:44 ` Patchwork 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2023-09-01 2:44 UTC (permalink / raw) To: Bhanuprakash Modem; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 86023 bytes --] == Series Details == Series: Ignore uncompiled tests URL : https://patchwork.freedesktop.org/series/123120/ State : success == Summary == CI Bug Log - changes from CI_DRM_13583_full -> IGTPW_9696_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in IGTPW_9696_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][1] ([i915#8411]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-11/igt@api_intel_bb@blit-reloc-purge-cache.html - shard-mtlp: NOTRUN -> [SKIP][2] ([i915#8411]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-8/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@drm_fdinfo@busy-check-all@ccs0: - shard-mtlp: NOTRUN -> [SKIP][3] ([i915#8414]) +12 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-4/igt@drm_fdinfo@busy-check-all@ccs0.html * igt@drm_fdinfo@busy-hang@bcs0: - shard-dg2: NOTRUN -> [SKIP][4] ([i915#8414]) +21 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-3/igt@drm_fdinfo@busy-hang@bcs0.html * igt@drm_fdinfo@virtual-busy-idle-all: - shard-dg1: NOTRUN -> [SKIP][5] ([i915#8414]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg1-14/igt@drm_fdinfo@virtual-busy-idle-all.html * igt@feature_discovery@display-4x: - shard-dg2: NOTRUN -> [SKIP][6] ([i915#1839]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-8/igt@feature_discovery@display-4x.html - shard-dg1: NOTRUN -> [SKIP][7] ([i915#1839]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg1-19/igt@feature_discovery@display-4x.html * igt@feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][8] ([i915#658]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-tglu-3/igt@feature_discovery@psr1.html * igt@gem_ccs@block-copy-compressed: - shard-dg1: NOTRUN -> [SKIP][9] ([i915#3555] / [i915#5325]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg1-19/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [PASS][10] -> [INCOMPLETE][11] ([i915#6311] / [i915#7297]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-dg2-11/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#8555]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-8/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_persistence@legacy-engines-hang@bsd1: - shard-mtlp: [PASS][13] -> [FAIL][14] ([i915#2410]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-mtlp-1/igt@gem_ctx_persistence@legacy-engines-hang@bsd1.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-3/igt@gem_ctx_persistence@legacy-engines-hang@bsd1.html * igt@gem_ctx_persistence@legacy-engines-hostile-preempt: - shard-snb: NOTRUN -> [SKIP][15] ([fdo#109271] / [i915#1099]) +2 similar issues [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-snb6/igt@gem_ctx_persistence@legacy-engines-hostile-preempt.html * igt@gem_ctx_persistence@saturated-hostile@vecs0: - shard-mtlp: [PASS][16] -> [FAIL][17] ([i915#7816]) +2 similar issues [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-mtlp-8/igt@gem_ctx_persistence@saturated-hostile@vecs0.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-2/igt@gem_ctx_persistence@saturated-hostile@vecs0.html * igt@gem_eio@in-flight-contexts-1us: - shard-mtlp: [PASS][18] -> [ABORT][19] ([i915#8503]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-mtlp-3/igt@gem_eio@in-flight-contexts-1us.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-5/igt@gem_eio@in-flight-contexts-1us.html * igt@gem_eio@kms: - shard-dg1: [PASS][20] -> [FAIL][21] ([i915#5784]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-dg1-16/igt@gem_eio@kms.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg1-14/igt@gem_eio@kms.html * igt@gem_eio@reset-stress: - shard-dg2: [PASS][22] -> [FAIL][23] ([i915#5784]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-dg2-12/igt@gem_eio@reset-stress.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-11/igt@gem_eio@reset-stress.html * igt@gem_eio@unwedge-stress: - shard-snb: NOTRUN -> [FAIL][24] ([i915#8898]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-snb2/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-pair: - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#4771]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-2/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@bonded-semaphore: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#4812]) +1 similar issue [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-6/igt@gem_exec_balancer@bonded-semaphore.html - shard-dg1: NOTRUN -> [SKIP][27] ([i915#4812]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg1-17/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#4771]) +1 similar issue [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-2/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#4036]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-10/igt@gem_exec_balancer@invalid-bonds.html - shard-mtlp: NOTRUN -> [SKIP][30] ([i915#4036]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-2/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@parallel-bb-first: - shard-rkl: NOTRUN -> [SKIP][31] ([i915#4525]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-rkl-4/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_balancer@sliced: - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#4812]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-8/igt@gem_exec_balancer@sliced.html * igt@gem_exec_fair@basic-none-vip: - shard-dg1: NOTRUN -> [SKIP][33] ([i915#3539] / [i915#4852]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg1-16/igt@gem_exec_fair@basic-none-vip.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][34] -> [FAIL][35] ([i915#2842]) +2 similar issues [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-glk2/igt@gem_exec_fair@basic-pace-share@rcs0.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html - shard-tglu: [PASS][36] -> [FAIL][37] ([i915#2842]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-tglu-10/igt@gem_exec_fair@basic-pace-share@rcs0.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-tglu-3/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_flush@basic-wb-rw-before-default: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#3539] / [i915#4852]) +2 similar issues [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-1/igt@gem_exec_flush@basic-wb-rw-before-default.html * igt@gem_exec_params@rsvd2-dirt: - shard-dg2: NOTRUN -> [SKIP][39] ([fdo#109283] / [i915#5107]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-10/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_params@secure-non-master: - shard-rkl: NOTRUN -> [SKIP][40] ([fdo#112283]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-rkl-1/igt@gem_exec_params@secure-non-master.html - shard-tglu: NOTRUN -> [SKIP][41] ([fdo#112283]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-tglu-4/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_params@secure-non-root: - shard-dg1: NOTRUN -> [SKIP][42] ([fdo#112283]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg1-19/igt@gem_exec_params@secure-non-root.html * igt@gem_exec_reloc@basic-cpu-gtt: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#3281]) +7 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-11/igt@gem_exec_reloc@basic-cpu-gtt.html * igt@gem_exec_reloc@basic-cpu-noreloc: - shard-rkl: NOTRUN -> [SKIP][44] ([i915#3281]) +1 similar issue [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-rkl-4/igt@gem_exec_reloc@basic-cpu-noreloc.html * igt@gem_exec_reloc@basic-gtt-noreloc: - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#3281]) +2 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-6/igt@gem_exec_reloc@basic-gtt-noreloc.html * igt@gem_exec_schedule@noreorder@ccs0: - shard-mtlp: [PASS][46] -> [DMESG-FAIL][47] ([i915#9121]) +2 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-mtlp-5/igt@gem_exec_schedule@noreorder@ccs0.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-4/igt@gem_exec_schedule@noreorder@ccs0.html * igt@gem_exec_schedule@semaphore-power: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4537] / [i915#4812]) +1 similar issue [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-1/igt@gem_exec_schedule@semaphore-power.html * igt@gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4860]) +3 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-1/igt@gem_fence_thrash@bo-copy.html * igt@gem_fence_thrash@bo-write-verify-none: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4860]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-6/igt@gem_fence_thrash@bo-write-verify-none.html * igt@gem_gtt_cpu_tlb: - shard-dg1: NOTRUN -> [SKIP][51] ([i915#4077]) +4 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg1-14/igt@gem_gtt_cpu_tlb.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [PASS][52] -> [TIMEOUT][53] ([i915#5493]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-dg2-8/igt@gem_lmem_swapping@smem-oom@lmem0.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-3/igt@gem_lmem_swapping@smem-oom@lmem0.html - shard-dg1: [PASS][54] -> [DMESG-WARN][55] ([i915#4936] / [i915#5493]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-dg1-12/igt@gem_lmem_swapping@smem-oom@lmem0.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify-random: - shard-apl: NOTRUN -> [SKIP][56] ([fdo#109271] / [i915#4613]) +1 similar issue [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-apl7/igt@gem_lmem_swapping@verify-random.html * igt@gem_media_fill@media-fill: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#8289]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-4/igt@gem_media_fill@media-fill.html - shard-dg2: NOTRUN -> [SKIP][58] ([i915#8289]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-6/igt@gem_media_fill@media-fill.html * igt@gem_mmap_gtt@cpuset-medium-copy: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4077]) +2 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-6/igt@gem_mmap_gtt@cpuset-medium-copy.html * igt@gem_mmap_gtt@zero-extend: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4077]) +12 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-8/igt@gem_mmap_gtt@zero-extend.html * igt@gem_mmap_wc@coherency: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#4083]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg1-19/igt@gem_mmap_wc@coherency.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#4083]) +2 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-6/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_ppgtt@blt-vs-render-ctx0: - shard-snb: [PASS][63] -> [DMESG-FAIL][64] ([i915#8295]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-snb6/igt@gem_ppgtt@blt-vs-render-ctx0.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-snb1/igt@gem_ppgtt@blt-vs-render-ctx0.html * igt@gem_pwrite@basic-random: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#3282]) +2 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-8/igt@gem_pwrite@basic-random.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4270]) +1 similar issue [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-3/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4270]) +3 similar issues [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-8/igt@gem_pxp@reject-modify-context-protection-off-1.html - shard-dg1: NOTRUN -> [SKIP][68] ([i915#4270]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg1-14/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_render_copy@yf-tiled-ccs-to-y-tiled: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#5190]) +13 similar issues [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-2/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#8428]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-8/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4079]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-6/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html - shard-rkl: NOTRUN -> [SKIP][72] ([i915#8411]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-rkl-1/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_spin_batch@spin-all-new: - shard-dg2: NOTRUN -> [FAIL][73] ([i915#5889]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-1/igt@gem_spin_batch@spin-all-new.html * igt@gem_userptr_blits@coherency-sync: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#3297]) +2 similar issues [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-2/igt@gem_userptr_blits@coherency-sync.html - shard-rkl: NOTRUN -> [SKIP][75] ([fdo#110542]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-rkl-4/igt@gem_userptr_blits@coherency-sync.html - shard-dg1: NOTRUN -> [SKIP][76] ([i915#3297]) +1 similar issue [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg1-19/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#3297] / [i915#4880]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-3/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#3297]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-rkl-7/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gen3_render_linear_blits: - shard-dg2: NOTRUN -> [SKIP][79] ([fdo#109289]) +2 similar issues [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-12/igt@gen3_render_linear_blits.html * igt@gen7_exec_parse@chained-batch: - shard-rkl: NOTRUN -> [SKIP][80] ([fdo#109289]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-rkl-6/igt@gen7_exec_parse@chained-batch.html * igt@gen9_exec_parse@allowed-all: - shard-apl: [PASS][81] -> [ABORT][82] ([i915#5566]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-apl2/igt@gen9_exec_parse@allowed-all.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-apl2/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#2527]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-rkl-2/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@unaligned-jump: - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#2856]) +1 similar issue [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-8/igt@gen9_exec_parse@unaligned-jump.html * igt@gen9_exec_parse@valid-registers: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#2856]) +3 similar issues [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-2/igt@gen9_exec_parse@valid-registers.html - shard-dg1: NOTRUN -> [SKIP][86] ([i915#2527]) +1 similar issue [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg1-18/igt@gen9_exec_parse@valid-registers.html * igt@i915_hangman@gt-engine-hang@vcs0: - shard-mtlp: [PASS][87] -> [FAIL][88] ([i915#7069]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-mtlp-5/igt@i915_hangman@gt-engine-hang@vcs0.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-5/igt@i915_hangman@gt-engine-hang@vcs0.html * igt@i915_pm_backlight@bad-brightness: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#5354] / [i915#7561]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-2/igt@i915_pm_backlight@bad-brightness.html * igt@i915_pm_dc@dc3co-vpb-simulation: - shard-rkl: NOTRUN -> [SKIP][90] ([i915#658]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-rkl-6/igt@i915_pm_dc@dc3co-vpb-simulation.html * igt@i915_pm_dc@dc9-dpms: - shard-tglu: [PASS][91] -> [SKIP][92] ([i915#4281]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-tglu-2/igt@i915_pm_dc@dc9-dpms.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-tglu-5/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp: - shard-apl: NOTRUN -> [SKIP][93] ([fdo#109271] / [i915#1937]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-apl7/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#1937]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-8/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-dg1: [PASS][95] -> [FAIL][96] ([i915#3591]) +2 similar issues [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_pm_rpm@dpms-lpsp: - shard-rkl: [PASS][97] -> [SKIP][98] ([i915#1397]) +1 similar issue [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-rkl-7/igt@i915_pm_rpm@dpms-lpsp.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-rkl-4/igt@i915_pm_rpm@dpms-lpsp.html * igt@i915_pm_rpm@dpms-mode-unset-lpsp: - shard-rkl: NOTRUN -> [SKIP][99] ([i915#1397]) +1 similar issue [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-rkl-1/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg1: [PASS][100] -> [SKIP][101] ([i915#1397]) +1 similar issue [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-dg1-17/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-dg2: [PASS][102] -> [SKIP][103] ([i915#1397]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-dg2-11/igt@i915_pm_rpm@dpms-non-lpsp.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-10/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#1397]) +2 similar issues [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-1/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@i915_pm_sseu@full-enable: - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#8437]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-7/igt@i915_pm_sseu@full-enable.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#6188]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-5/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_query@query-topology-known-pci-ids: - shard-mtlp: NOTRUN -> [SKIP][107] ([fdo#109303]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-6/igt@i915_query@query-topology-known-pci-ids.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1: - shard-mtlp: [PASS][108] -> [FAIL][109] ([i915#2521]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-mtlp-4/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-2/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-4-4-mc_ccs: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#8709]) +11 similar issues [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-11/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-4-4-mc_ccs.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][111] ([i915#8247]) +3 similar issues [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-3/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html * igt@kms_async_flips@crc@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][112] ([i915#8247]) +3 similar issues [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg1-17/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html * igt@kms_async_flips@invalid-async-flip: - shard-mtlp: NOTRUN -> [SKIP][113] ([i915#6228]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-7/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#404]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg1: NOTRUN -> [SKIP][115] ([i915#404]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg1-15/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@4-tiled-64bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][116] ([i915#4538] / [i915#5286]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg1-14/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#5286]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-rkl-4/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-mtlp: [PASS][118] -> [FAIL][119] ([i915#3743]) +2 similar issues [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@linear-16bpp-rotate-180: - shard-mtlp: [PASS][120] -> [FAIL][121] ([i915#5138]) +1 similar issue [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-mtlp-1/igt@kms_big_fb@linear-16bpp-rotate-180.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-2/igt@kms_big_fb@linear-16bpp-rotate-180.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][122] ([fdo#111614]) +5 similar issues [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-6/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#4538] / [i915#5190]) +4 similar issues [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-12/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][124] ([fdo#110723]) +1 similar issue [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-rkl-6/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-mtlp: NOTRUN -> [SKIP][125] ([fdo#111615]) +3 similar issues [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-tglu: NOTRUN -> [SKIP][126] ([fdo#111615]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-tglu-3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_joiner@2x-modeset: - shard-rkl: NOTRUN -> [SKIP][127] ([i915#2705]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-rkl-2/igt@kms_big_joiner@2x-modeset.html - shard-dg1: NOTRUN -> [SKIP][128] ([i915#2705]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg1-16/igt@kms_big_joiner@2x-modeset.html * igt@kms_big_joiner@basic: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#2705]) +1 similar issue [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-1/igt@kms_big_joiner@basic.html - shard-mtlp: NOTRUN -> [SKIP][130] ([i915#2705]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-3/igt@kms_big_joiner@basic.html * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#3689] / [i915#5354]) +18 similar issues [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-12/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_ccs.html - shard-rkl: NOTRUN -> [SKIP][132] ([i915#3734] / [i915#5354] / [i915#6095]) +1 similar issue [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-rkl-4/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_ccs.html * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][133] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-tglu-8/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs.html - shard-rkl: NOTRUN -> [SKIP][134] ([i915#3886] / [i915#5354] / [i915#6095]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-rkl-7/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_rc_ccs_cc: - shard-mtlp: NOTRUN -> [SKIP][135] ([i915#3886] / [i915#6095]) +4 similar issues [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-4/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-bad-rotation-90-4_tiled_dg2_rc_ccs: - shard-dg1: NOTRUN -> [SKIP][136] ([i915#3689] / [i915#5354] / [i915#6095]) +6 similar issues [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg1-17/igt@kms_ccs@pipe-b-bad-rotation-90-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#5354] / [i915#6095]) +5 similar issues [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-rkl-2/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc: - shard-apl: NOTRUN -> [SKIP][138] ([fdo#109271] / [i915#3886]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-apl7/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-ccs-on-another-bo-yf_tiled_ccs: - shard-snb: NOTRUN -> [SKIP][139] ([fdo#109271]) +263 similar issues [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-snb4/igt@kms_ccs@pipe-c-ccs-on-another-bo-yf_tiled_ccs.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#3689] / [i915#3886] / [i915#5354]) +6 similar issues [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-3/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_rc_ccs: - shard-tglu: NOTRUN -> [SKIP][141] ([i915#3689] / [i915#5354] / [i915#6095]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-tglu-8/igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-d-crc-primary-basic-4_tiled_dg2_rc_ccs: - shard-tglu: NOTRUN -> [SKIP][142] ([i915#5354] / [i915#6095]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-tglu-10/igt@kms_ccs@pipe-d-crc-primary-basic-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#5354]) +7 similar issues [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-rkl-7/igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs.html * igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_mc_ccs: - shard-dg1: NOTRUN -> [SKIP][144] ([i915#5354] / [i915#6095]) +4 similar issues [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg1-16/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs: - shard-mtlp: NOTRUN -> [SKIP][145] ([i915#6095]) +7 similar issues [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-7/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs.html * igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc: - shard-apl: NOTRUN -> [SKIP][146] ([fdo#109271]) +54 similar issues [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-apl7/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#4087] / [i915#7213]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-1/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#4087]) +3 similar issues [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-5/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html * igt@kms_chamelium_color@ctm-0-75: - shard-rkl: NOTRUN -> [SKIP][149] ([fdo#111827]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-rkl-6/igt@kms_chamelium_color@ctm-0-75.html * igt@kms_chamelium_color@ctm-max: - shard-dg2: NOTRUN -> [SKIP][150] ([fdo#111827]) +1 similar issue [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-10/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_frames@hdmi-crc-multiple: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#7828]) +10 similar issues [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-6/igt@kms_chamelium_frames@hdmi-crc-multiple.html - shard-dg1: NOTRUN -> [SKIP][152] ([i915#7828]) +1 similar issue [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg1-15/igt@kms_chamelium_frames@hdmi-crc-multiple.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - shard-rkl: NOTRUN -> [SKIP][153] ([i915#7828]) +1 similar issue [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-rkl-1/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-mtlp: NOTRUN -> [SKIP][154] ([i915#7828]) +1 similar issue [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-2/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt@kms_content_protection@legacy: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#7118]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-2/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][156] ([i915#7173]) +1 similar issue [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-11/igt@kms_content_protection@lic@pipe-a-dp-4.html * igt@kms_content_protection@uevent: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#6944]) +1 similar issue [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-7/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#3359]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-7/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-offscreen-max-size: - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#3555] / [i915#8814]) +1 similar issue [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-7/igt@kms_cursor_crc@cursor-offscreen-max-size.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-dg1: NOTRUN -> [SKIP][160] ([i915#3555]) +2 similar issues [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg1-16/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#3555]) +7 similar issues [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-3/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html - shard-rkl: NOTRUN -> [SKIP][162] ([i915#3555]) +1 similar issue [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#3359]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-12/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-apl: NOTRUN -> [SKIP][164] ([fdo#109271] / [fdo#111767]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-apl1/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-rkl: NOTRUN -> [SKIP][165] ([fdo#111825]) +8 similar issues [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-rkl-7/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-tglu: NOTRUN -> [SKIP][166] ([fdo#109274]) +1 similar issue [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-tglu-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-mtlp: NOTRUN -> [SKIP][167] ([fdo#111767] / [i915#3546]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-6/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-dg2: NOTRUN -> [SKIP][168] ([fdo#109274] / [i915#5354]) +4 similar issues [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [PASS][169] -> [FAIL][170] ([i915#2346]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html - shard-apl: [PASS][171] -> [FAIL][172] ([i915#2346]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#9227]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-rkl-7/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-1.html * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][174] ([i915#9226]) +1 similar issue [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-rkl-7/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#8812]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-4/igt@kms_draw_crc@draw-method-mmap-gtt.html - shard-dg2: NOTRUN -> [SKIP][176] ([i915#8812]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-2/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-basic: - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#3555] / [i915#3840] / [i915#9159]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-2/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-formats: - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#3555] / [i915#3840]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-3/igt@kms_dsc@dsc-with-formats.html * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][179] ([fdo#109274]) +6 similar issues [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-10/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#8381]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-8/igt@kms_flip@2x-flip-vs-fences.html - shard-dg1: NOTRUN -> [SKIP][181] ([i915#8381]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg1-19/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-dg2: NOTRUN -> [SKIP][182] ([fdo#109274] / [fdo#111767]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-5/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible: - shard-tglu: NOTRUN -> [SKIP][183] ([fdo#109274] / [i915#3637]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-tglu-6/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][184] ([i915#8381]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-3/igt@kms_flip@flip-vs-fences.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][185] ([i915#2672]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#2672]) +3 similar issues [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#2672] / [i915#3555]) +1 similar issue [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-valid-mode: - shard-dg1: [PASS][188] -> [FAIL][189] ([i915#7479]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-dg1-16/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-valid-mode.html [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg1-16/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-dg2: NOTRUN -> [SKIP][190] ([fdo#109285]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-8/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt: - shard-dg2: [PASS][191] -> [FAIL][192] ([i915#6880]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#8708]) +22 similar issues [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#8708]) +4 similar issues [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu: - shard-dg2: NOTRUN -> [FAIL][195] ([i915#6880]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][196] ([i915#8708]) +2 similar issues [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][197] ([i915#3023]) +5 similar issues [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt: - shard-dg1: NOTRUN -> [SKIP][198] ([i915#3458]) +4 similar issues [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#5354]) +46 similar issues [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html - shard-rkl: NOTRUN -> [SKIP][200] ([fdo#111825] / [i915#1825]) +15 similar issues [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#3458]) +16 similar issues [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][202] ([fdo#111825]) +2 similar issues [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][203] ([i915#1825]) +12 similar issues [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt: - shard-tglu: NOTRUN -> [SKIP][204] ([fdo#109280]) +4 similar issues [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_hdr@static-toggle: - shard-rkl: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#8228]) +2 similar issues [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-rkl-2/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#3555] / [i915#8228]) +1 similar issue [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-6/igt@kms_hdr@static-toggle-suspend.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#4816]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#6301]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-1/igt@kms_panel_fitting@legacy.html * igt@kms_plane_multiple@tiling-yf: - shard-mtlp: NOTRUN -> [SKIP][209] ([i915#3555] / [i915#8806]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-2/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][210] ([i915#8292]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-11/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][211] ([i915#8292]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-rkl-7/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#5176]) +11 similar issues [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-5/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-5@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][213] ([i915#5176]) +3 similar issues [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-7/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-5@pipe-c-edp-1.html * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][214] ([i915#5176]) +7 similar issues [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg1-12/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][215] ([i915#5176]) +1 similar issue [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][216] ([i915#5235]) +3 similar issues [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][217] ([i915#5235]) +11 similar issues [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg1-19/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#5235]) +15 similar issues [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#6524] / [i915#6805]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-8/igt@kms_prime@basic-crc-vgem.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#658]) +4 similar issues [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-3/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-apl: NOTRUN -> [SKIP][221] ([fdo#109271] / [i915#658]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-apl4/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][222] ([fdo#111068] / [i915#658]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-rkl-1/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html * igt@kms_psr@cursor_plane_move: - shard-tglu: NOTRUN -> [SKIP][223] ([fdo#110189]) +1 similar issue [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-tglu-2/igt@kms_psr@cursor_plane_move.html * igt@kms_psr@psr2_primary_blt: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#1072]) +7 similar issues [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-6/igt@kms_psr@psr2_primary_blt.html - shard-dg1: NOTRUN -> [SKIP][225] ([i915#1072]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg1-17/igt@kms_psr@psr2_primary_blt.html * igt@kms_psr@psr2_suspend: - shard-rkl: NOTRUN -> [SKIP][226] ([i915#1072]) +1 similar issue [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-rkl-2/igt@kms_psr@psr2_suspend.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-mtlp: NOTRUN -> [SKIP][227] ([i915#4235]) +2 similar issues [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#4235]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-5/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_selftest@drm_dp_mst: - shard-snb: NOTRUN -> [SKIP][229] ([fdo#109271] / [i915#8661]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-snb4/igt@kms_selftest@drm_dp_mst.html * igt@kms_selftest@drm_format: - shard-rkl: NOTRUN -> [SKIP][230] ([i915#8661]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-rkl-6/igt@kms_selftest@drm_format.html - shard-dg1: NOTRUN -> [SKIP][231] ([i915#8661]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg1-14/igt@kms_selftest@drm_format.html * igt@kms_selftest@drm_plane: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#8661]) +1 similar issue [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-11/igt@kms_selftest@drm_plane.html * igt@kms_sysfs_edid_timing: - shard-dg2: NOTRUN -> [FAIL][233] ([IGT#2]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-3/igt@kms_sysfs_edid_timing.html * igt@kms_universal_plane@universal-plane-pipe-c-functional: - shard-rkl: NOTRUN -> [SKIP][234] ([i915#4070] / [i915#6768]) +1 similar issue [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-rkl-2/igt@kms_universal_plane@universal-plane-pipe-c-functional.html * igt@kms_vblank@pipe-d-ts-continuation-modeset-hang: - shard-rkl: NOTRUN -> [SKIP][235] ([i915#4070] / [i915#533] / [i915#6768]) +1 similar issue [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-rkl-4/igt@kms_vblank@pipe-d-ts-continuation-modeset-hang.html * igt@kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#2437]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-3/igt@kms_writeback@writeback-check-output.html - shard-mtlp: NOTRUN -> [SKIP][237] ([i915#2437]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-7/igt@kms_writeback@writeback-check-output.html * igt@perf@global-sseu-config: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#7387]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-1/igt@perf@global-sseu-config.html * igt@perf@per-context-mode-unprivileged: - shard-mtlp: NOTRUN -> [SKIP][239] ([fdo#109289]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-7/igt@perf@per-context-mode-unprivileged.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: NOTRUN -> [FAIL][240] ([i915#4349]) +3 similar issues [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-2/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@busy-idle-check-all@bcs0: - shard-mtlp: [PASS][241] -> [FAIL][242] ([i915#4349]) +3 similar issues [241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-mtlp-8/igt@perf_pmu@busy-idle-check-all@bcs0.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-4/igt@perf_pmu@busy-idle-check-all@bcs0.html * igt@perf_pmu@busy-idle-check-all@ccs0: - shard-mtlp: [PASS][243] -> [FAIL][244] ([i915#4521]) +1 similar issue [243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-mtlp-8/igt@perf_pmu@busy-idle-check-all@ccs0.html [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-4/igt@perf_pmu@busy-idle-check-all@ccs0.html * igt@perf_pmu@busy-idle-check-all@vcs0: - shard-dg2: [PASS][245] -> [FAIL][246] ([i915#4349]) +7 similar issues [245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-dg2-11/igt@perf_pmu@busy-idle-check-all@vcs0.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-6/igt@perf_pmu@busy-idle-check-all@vcs0.html - shard-dg1: [PASS][247] -> [FAIL][248] ([i915#4349]) +3 similar issues [247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-dg1-18/igt@perf_pmu@busy-idle-check-all@vcs0.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg1-19/igt@perf_pmu@busy-idle-check-all@vcs0.html * igt@perf_pmu@busy-idle-check-all@vecs1: - shard-dg2: [PASS][249] -> [FAIL][250] ([i915#4521]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-dg2-11/igt@perf_pmu@busy-idle-check-all@vecs1.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-6/igt@perf_pmu@busy-idle-check-all@vecs1.html * igt@perf_pmu@event-wait@rcs0: - shard-dg2: NOTRUN -> [SKIP][251] ([fdo#112283]) +1 similar issue [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-11/igt@perf_pmu@event-wait@rcs0.html * igt@perf_pmu@module-unload: - shard-dg2: NOTRUN -> [FAIL][252] ([i915#5793] / [i915#6121]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-2/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6-all-gts: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#8516]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-10/igt@perf_pmu@rc6-all-gts.html - shard-dg1: NOTRUN -> [SKIP][254] ([i915#8516]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg1-14/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@rc6-suspend: - shard-snb: NOTRUN -> [DMESG-WARN][255] ([i915#8841]) +5 similar issues [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-snb6/igt@perf_pmu@rc6-suspend.html * igt@prime_udl: - shard-dg2: NOTRUN -> [SKIP][256] ([fdo#109291]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-1/igt@prime_udl.html * igt@prime_vgem@basic-fence-blt: - shard-mtlp: NOTRUN -> [FAIL][257] ([i915#8445]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-1/igt@prime_vgem@basic-fence-blt.html * igt@prime_vgem@basic-gtt: - shard-dg2: NOTRUN -> [SKIP][258] ([i915#3708] / [i915#4077]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-2/igt@prime_vgem@basic-gtt.html * igt@sysfs_timeslice_duration@timeout@vecs0: - shard-mtlp: [PASS][259] -> [TIMEOUT][260] ([i915#6950]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-mtlp-7/igt@sysfs_timeslice_duration@timeout@vecs0.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-5/igt@sysfs_timeslice_duration@timeout@vecs0.html * igt@tools_test@sysfs_l3_parity: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#4818]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-12/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_perfmon@get-values-valid-perfmon: - shard-tglu: NOTRUN -> [SKIP][262] ([fdo#109315] / [i915#2575]) +1 similar issue [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-tglu-8/igt@v3d/v3d_perfmon@get-values-valid-perfmon.html * igt@v3d/v3d_submit_cl@valid-submission: - shard-mtlp: NOTRUN -> [SKIP][263] ([i915#2575]) +1 similar issue [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-4/igt@v3d/v3d_submit_cl@valid-submission.html * igt@v3d/v3d_submit_csd@single-out-sync: - shard-dg2: NOTRUN -> [SKIP][264] ([i915#2575]) +12 similar issues [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-8/igt@v3d/v3d_submit_csd@single-out-sync.html - shard-dg1: NOTRUN -> [SKIP][265] ([i915#2575]) +2 similar issues [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg1-18/igt@v3d/v3d_submit_csd@single-out-sync.html * igt@v3d/v3d_wait_bo@used-bo-1ns: - shard-rkl: NOTRUN -> [SKIP][266] ([fdo#109315]) +4 similar issues [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-rkl-1/igt@v3d/v3d_wait_bo@used-bo-1ns.html * igt@vc4/vc4_mmap@mmap-bo: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#7711]) +7 similar issues [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-5/igt@vc4/vc4_mmap@mmap-bo.html - shard-rkl: NOTRUN -> [SKIP][268] ([i915#7711]) +1 similar issue [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-rkl-4/igt@vc4/vc4_mmap@mmap-bo.html * igt@vc4/vc4_perfmon@create-single-perfmon: - shard-mtlp: NOTRUN -> [SKIP][269] ([i915#7711]) +2 similar issues [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-1/igt@vc4/vc4_perfmon@create-single-perfmon.html * igt@vc4/vc4_purgeable_bo@mark-unpurgeable-purged: - shard-tglu: NOTRUN -> [SKIP][270] ([i915#2575]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-tglu-4/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-purged.html * igt@vc4/vc4_wait_bo@used-bo-1ns: - shard-dg1: NOTRUN -> [SKIP][271] ([i915#7711]) +1 similar issue [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg1-15/igt@vc4/vc4_wait_bo@used-bo-1ns.html #### Possible fixes #### * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [FAIL][272] ([i915#7742]) -> [PASS][273] [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@gem_eio@unwedge-stress: - shard-dg1: [FAIL][274] ([i915#5784]) -> [PASS][275] +1 similar issue [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-dg1-12/igt@gem_eio@unwedge-stress.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg1-18/igt@gem_eio@unwedge-stress.html * igt@gem_exec_capture@pi@bcs0: - shard-mtlp: [FAIL][276] ([i915#4475] / [i915#7765]) -> [PASS][277] [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-mtlp-1/igt@gem_exec_capture@pi@bcs0.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-8/igt@gem_exec_capture@pi@bcs0.html * igt@gem_exec_capture@pi@vcs0: - shard-mtlp: [ABORT][278] -> [PASS][279] [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-mtlp-1/igt@gem_exec_capture@pi@vcs0.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-8/igt@gem_exec_capture@pi@vcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-apl: [FAIL][280] ([i915#2842]) -> [PASS][281] [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-apl2/igt@gem_exec_fair@basic-pace-solo@rcs0.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-apl2/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_schedule@noreorder-priority@rcs0: - shard-mtlp: [DMESG-FAIL][282] ([i915#9121]) -> [PASS][283] [282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-mtlp-4/igt@gem_exec_schedule@noreorder-priority@rcs0.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-4/igt@gem_exec_schedule@noreorder-priority@rcs0.html * igt@gem_exec_schedule@preemptive-hang@vcs0: - shard-mtlp: [FAIL][284] ([i915#9051]) -> [PASS][285] [284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-mtlp-6/igt@gem_exec_schedule@preemptive-hang@vcs0.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-7/igt@gem_exec_schedule@preemptive-hang@vcs0.html * igt@gem_spin_batch@user-each: - shard-mtlp: [DMESG-FAIL][286] ([i915#8962] / [i915#9121]) -> [PASS][287] [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-mtlp-4/igt@gem_spin_batch@user-each.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-8/igt@gem_spin_batch@user-each.html * igt@i915_pipe_stress@stress-xrgb8888-untiled: - shard-mtlp: [FAIL][288] ([i915#8691]) -> [PASS][289] [288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-mtlp-8/igt@i915_pipe_stress@stress-xrgb8888-untiled.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-8/igt@i915_pipe_stress@stress-xrgb8888-untiled.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: [INCOMPLETE][290] ([i915#8770]) -> [PASS][291] [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-dg2-5/igt@i915_pm_freq_api@freq-suspend@gt0.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-2/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_pm_rpm@dpms-lpsp: - shard-dg1: [SKIP][292] ([i915#1397]) -> [PASS][293] +1 similar issue [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-dg1-14/igt@i915_pm_rpm@dpms-lpsp.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg1-19/igt@i915_pm_rpm@dpms-lpsp.html * igt@i915_selftest@live@gt_pm: - shard-rkl: [DMESG-FAIL][294] -> [PASS][295] [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-rkl-2/igt@i915_selftest@live@gt_pm.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-rkl-1/igt@i915_selftest@live@gt_pm.html * igt@i915_suspend@forcewake: - shard-dg2: [TIMEOUT][296] ([fdo#103375]) -> [PASS][297] [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-dg2-5/igt@i915_suspend@forcewake.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-11/igt@i915_suspend@forcewake.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-d-edp-1: - shard-mtlp: [FAIL][298] ([i915#2521]) -> [PASS][299] [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-mtlp-4/igt@kms_async_flips@alternate-sync-async-flip@pipe-d-edp-1.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-2/igt@kms_async_flips@alternate-sync-async-flip@pipe-d-edp-1.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [FAIL][300] ([i915#5138]) -> [PASS][301] [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [FAIL][302] ([i915#2346]) -> [PASS][303] [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a4: - shard-dg1: [FAIL][304] ([i915#79]) -> [PASS][305] [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-dg1-15/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a4.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg1-14/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a4.html * igt@kms_hdmi_inject@inject-audio: - shard-tglu: [SKIP][306] ([i915#433]) -> [PASS][307] [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-tglu-6/igt@kms_hdmi_inject@inject-audio.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-tglu-7/igt@kms_hdmi_inject@inject-audio.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-4: - shard-dg2: [FAIL][308] ([fdo#103375]) -> [PASS][309] +6 similar issues [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-dg2-11/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-4.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg2-11/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-4.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes: - shard-tglu: [ABORT][310] ([i915#5122] / [i915#5251]) -> [PASS][311] [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-tglu-8/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-tglu-10/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes: - shard-tglu: [INCOMPLETE][312] ([i915#1982]) -> [PASS][313] [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-tglu-8/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-tglu-10/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][314] ([i915#8292]) -> [PASS][315] [314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-tglu-3/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-tglu-8/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@perf_pmu@rc6@runtime-pm-long-gt1: - shard-mtlp: [SKIP][316] ([i915#8537]) -> [PASS][317] +2 similar issues [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-mtlp-6/igt@perf_pmu@rc6@runtime-pm-long-gt1.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-8/igt@perf_pmu@rc6@runtime-pm-long-gt1.html * igt@sysfs_heartbeat_interval@mixed@ccs0: - shard-mtlp: [DMESG-WARN][318] ([i915#8552]) -> [PASS][319] [318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-mtlp-3/igt@sysfs_heartbeat_interval@mixed@ccs0.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-7/igt@sysfs_heartbeat_interval@mixed@ccs0.html * igt@sysfs_heartbeat_interval@nopreempt@vcs0: - shard-mtlp: [FAIL][320] ([i915#6015]) -> [PASS][321] +1 similar issue [320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-mtlp-1/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-1/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html #### Warnings #### * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-mtlp: [SKIP][322] ([i915#8403]) -> [SKIP][323] ([fdo#109289]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-mtlp-3/igt@i915_pm_rc6_residency@media-rc6-accuracy.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-8/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-mtlp: [DMESG-FAIL][324] ([i915#2017] / [i915#5954]) -> [FAIL][325] ([i915#2346]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-mtlp-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][326] ([i915#3955]) -> [SKIP][327] ([fdo#110189] / [i915#3955]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-rkl-2/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: [SKIP][328] ([fdo#109285]) -> [SKIP][329] ([fdo#109285] / [i915#4098]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-rkl-6/igt@kms_force_connector_basic@force-load-detect.html [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-rkl-2/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_psr@cursor_plane_move: - shard-dg1: [SKIP][330] ([i915#1072]) -> [SKIP][331] ([i915#1072] / [i915#4078]) +2 similar issues [330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-dg1-14/igt@kms_psr@cursor_plane_move.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg1-12/igt@kms_psr@cursor_plane_move.html * igt@kms_psr@primary_mmap_gtt: - shard-dg1: [SKIP][332] ([i915#1072] / [i915#4078]) -> [SKIP][333] ([i915#1072]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-dg1-16/igt@kms_psr@primary_mmap_gtt.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-dg1-17/igt@kms_psr@primary_mmap_gtt.html * igt@sysfs_heartbeat_interval@mixed@vecs0: - shard-mtlp: [ABORT][334] ([i915#8552]) -> [FAIL][335] ([i915#1731]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13583/shard-mtlp-3/igt@sysfs_heartbeat_interval@mixed@vecs0.html [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/shard-mtlp-7/igt@sysfs_heartbeat_interval@mixed@vecs0.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1731]: https://gitlab.freedesktop.org/drm/intel/issues/1731 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4475]: https://gitlab.freedesktop.org/drm/intel/issues/4475 [i915#4521]: https://gitlab.freedesktop.org/drm/intel/issues/4521 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107 [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5251]: https://gitlab.freedesktop.org/drm/intel/issues/5251 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5793]: https://gitlab.freedesktop.org/drm/intel/issues/5793 [i915#5889]: https://gitlab.freedesktop.org/drm/intel/issues/5889 [i915#5954]: https://gitlab.freedesktop.org/drm/intel/issues/5954 [i915#6015]: https://gitlab.freedesktop.org/drm/intel/issues/6015 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121 [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188 [i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6311]: https://gitlab.freedesktop.org/drm/intel/issues/6311 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6950]: https://gitlab.freedesktop.org/drm/intel/issues/6950 [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7479]: https://gitlab.freedesktop.org/drm/intel/issues/7479 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7765]: https://gitlab.freedesktop.org/drm/intel/issues/7765 [i915#7816]: https://gitlab.freedesktop.org/drm/intel/issues/7816 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8295]: https://gitlab.freedesktop.org/drm/intel/issues/8295 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8403]: https://gitlab.freedesktop.org/drm/intel/issues/8403 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8437]: https://gitlab.freedesktop.org/drm/intel/issues/8437 [i915#8445]: https://gitlab.freedesktop.org/drm/intel/issues/8445 [i915#8503]: https://gitlab.freedesktop.org/drm/intel/issues/8503 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8537]: https://gitlab.freedesktop.org/drm/intel/issues/8537 [i915#8552]: https://gitlab.freedesktop.org/drm/intel/issues/8552 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 [i915#8691]: https://gitlab.freedesktop.org/drm/intel/issues/8691 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8770]: https://gitlab.freedesktop.org/drm/intel/issues/8770 [i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8898]: https://gitlab.freedesktop.org/drm/intel/issues/8898 [i915#8962]: https://gitlab.freedesktop.org/drm/intel/issues/8962 [i915#9051]: https://gitlab.freedesktop.org/drm/intel/issues/9051 [i915#9121]: https://gitlab.freedesktop.org/drm/intel/issues/9121 [i915#9159]: https://gitlab.freedesktop.org/drm/intel/issues/9159 [i915#9226]: https://gitlab.freedesktop.org/drm/intel/issues/9226 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7460 -> IGTPW_9696 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13583: f299d7585a085ee36999da219c292e265da35886 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9696: 9696 IGT_7460: 30b4034ea562952039ba6af58106791d5c39999e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9696/index.html [-- Attachment #2: Type: text/html, Size: 104805 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2023-09-01 2:44 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-08-31 15:21 [igt-dev] [i-g-t 0/2] Ignore uncompiled tests Bhanuprakash Modem 2023-08-31 15:21 ` [igt-dev] [i-g-t 1/2] scripts/test_list: " Bhanuprakash Modem 2023-08-31 15:53 ` Mauro Carvalho Chehab 2023-08-31 15:22 ` [igt-dev] [i-g-t 2/2] testplan/kms: Make documentation is mandatory for all kms subtests Bhanuprakash Modem 2023-08-31 15:54 ` Mauro Carvalho Chehab 2023-08-31 20:10 ` [igt-dev] ✗ GitLab.Pipeline: warning for Ignore uncompiled tests Patchwork 2023-08-31 20:40 ` [igt-dev] ✓ CI.xeBAT: success " Patchwork 2023-08-31 20:46 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork 2023-09-01 2:44 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox