* [igt-dev] [PATCH i-g-t 0/3] Basic Suspend/Resume with i915 unload
@ 2022-03-28 5:17 Riana Tauro
2022-03-28 5:17 ` [igt-dev] [PATCH i-g-t 1/3] lib/drmtest : add function to call exit handler to unload i915 module Riana Tauro
` (4 more replies)
0 siblings, 5 replies; 10+ messages in thread
From: Riana Tauro @ 2022-03-28 5:17 UTC (permalink / raw)
To: igt-dev
From: "Tauro, Riana" <riana.tauro@intel.com>
Add a new test system-suspend-without-i915 in i915_suspend to test the
system wide health of suspend/resume feature before executing i915
suspend/resume tests.
This test is a part of CI fast-feedback test list.
v2: Addressing review comments.
Tauro, Riana (3):
lib/drmtest : add function to call exit handler to unload i915 module
tests/i915/i915_suspend: Add system-suspend-without-i915 subtest
tests/intel-ci/fast-feedback: Add system-suspend-without-i915 into
fast-feedback list
lib/drmtest.c | 17 +++++++++++++++++
lib/drmtest.h | 1 +
tests/i915/i915_suspend.c | 20 ++++++++++++++++++++
tests/intel-ci/fast-feedback.testlist | 1 +
4 files changed, 39 insertions(+)
--
2.25.1
^ permalink raw reply [flat|nested] 10+ messages in thread* [igt-dev] [PATCH i-g-t 1/3] lib/drmtest : add function to call exit handler to unload i915 module 2022-03-28 5:17 [igt-dev] [PATCH i-g-t 0/3] Basic Suspend/Resume with i915 unload Riana Tauro @ 2022-03-28 5:17 ` Riana Tauro 2022-03-28 5:42 ` Gupta, Anshuman 2022-03-28 5:17 ` [igt-dev] [PATCH i-g-t 2/3] tests/i915/i915_suspend: Add system-suspend-without-i915 subtest Riana Tauro ` (3 subsequent siblings) 4 siblings, 1 reply; 10+ messages in thread From: Riana Tauro @ 2022-03-28 5:17 UTC (permalink / raw) To: igt-dev From: "Tauro, Riana" <riana.tauro@intel.com> Unload of i915 module needs closing of at_exit_drm_fd. Add a function that calls the exit handler of at_exit_drm_fd to unload module successfully Signed-off-by: Tauro, Riana <riana.tauro@intel.com> --- lib/drmtest.c | 17 +++++++++++++++++ lib/drmtest.h | 1 + 2 files changed, 18 insertions(+) diff --git a/lib/drmtest.c b/lib/drmtest.c index 09a9a229..e84e0360 100644 --- a/lib/drmtest.c +++ b/lib/drmtest.c @@ -588,6 +588,23 @@ int drm_open_driver(int chipset) return fd; } +/** + * drm_cancel_work_at_exit: + * + * calls __cancel_work_at_exit and closes + * at_exit_drm_fd to allow unloading of the module. + */ +void drm_cancel_work_at_exit(void) +{ + if (at_exit_drm_fd < 0) + return; + + __cancel_work_at_exit(at_exit_drm_fd); + + close(at_exit_drm_fd); + at_exit_drm_fd = -1; +} + /** * drm_open_driver_master: * @chipset: OR'd flags for each chipset to search, eg. #DRIVER_INTEL diff --git a/lib/drmtest.h b/lib/drmtest.h index b5debd44..df551873 100644 --- a/lib/drmtest.h +++ b/lib/drmtest.h @@ -88,6 +88,7 @@ void __set_forced_driver(const char *name); */ #define ALIGN_DOWN(x, a) ALIGN((x) - ((a) - 1), (a)) +void drm_cancel_work_at_exit(void); void drm_load_module(unsigned int chipset); int drm_open_driver(int chipset); int drm_open_driver_master(int chipset); -- 2.25.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/3] lib/drmtest : add function to call exit handler to unload i915 module 2022-03-28 5:17 ` [igt-dev] [PATCH i-g-t 1/3] lib/drmtest : add function to call exit handler to unload i915 module Riana Tauro @ 2022-03-28 5:42 ` Gupta, Anshuman 0 siblings, 0 replies; 10+ messages in thread From: Gupta, Anshuman @ 2022-03-28 5:42 UTC (permalink / raw) To: Tauro, Riana, igt-dev@lists.freedesktop.org > -----Original Message----- > From: Tauro, Riana <riana.tauro@intel.com> > Sent: Monday, March 28, 2022 10:47 AM > To: igt-dev@lists.freedesktop.org > Cc: Tauro, Riana <riana.tauro@intel.com>; Gupta, Anshuman > <anshuman.gupta@intel.com>; Ewins, Jon <jon.ewins@intel.com>; Dixit, > Ashutosh <ashutosh.dixit@intel.com> > Subject: [PATCH i-g-t 1/3] lib/drmtest : add function to call exit handler to > unload i915 module > > From: "Tauro, Riana" <riana.tauro@intel.com> > > Unload of i915 module needs closing of at_exit_drm_fd. > Add a function that calls the exit handler of at_exit_drm_fd to unload module We are not calling the exit handler directly, may be need to rephrase the commit log ? > successfully > > Signed-off-by: Tauro, Riana <riana.tauro@intel.com> > --- > lib/drmtest.c | 17 +++++++++++++++++ > lib/drmtest.h | 1 + > 2 files changed, 18 insertions(+) > > diff --git a/lib/drmtest.c b/lib/drmtest.c index 09a9a229..e84e0360 100644 > --- a/lib/drmtest.c > +++ b/lib/drmtest.c > @@ -588,6 +588,23 @@ int drm_open_driver(int chipset) > return fd; > } > > +/** > + * drm_cancel_work_at_exit: How about drmtest_cancel_work_prior_unload_i915 ? > + * > + * calls __cancel_work_at_exit and closes > + * at_exit_drm_fd to allow unloading of the module. > + */ > +void drm_cancel_work_at_exit(void) > +{ > + if (at_exit_drm_fd < 0) > + return; > + > + __cancel_work_at_exit(at_exit_drm_fd); > + > + close(at_exit_drm_fd); > + at_exit_drm_fd = -1; > +} > + > /** > * drm_open_driver_master: > * @chipset: OR'd flags for each chipset to search, eg. #DRIVER_INTEL diff --git > a/lib/drmtest.h b/lib/drmtest.h index b5debd44..df551873 100644 > --- a/lib/drmtest.h > +++ b/lib/drmtest.h > @@ -88,6 +88,7 @@ void __set_forced_driver(const char *name); > */ > #define ALIGN_DOWN(x, a) ALIGN((x) - ((a) - 1), (a)) > > +void drm_cancel_work_at_exit(void); > void drm_load_module(unsigned int chipset); int drm_open_driver(int chipset); > int drm_open_driver_master(int chipset); > -- > 2.25.1 ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] [PATCH i-g-t 2/3] tests/i915/i915_suspend: Add system-suspend-without-i915 subtest 2022-03-28 5:17 [igt-dev] [PATCH i-g-t 0/3] Basic Suspend/Resume with i915 unload Riana Tauro 2022-03-28 5:17 ` [igt-dev] [PATCH i-g-t 1/3] lib/drmtest : add function to call exit handler to unload i915 module Riana Tauro @ 2022-03-28 5:17 ` Riana Tauro 2022-03-28 5:51 ` Gupta, Anshuman 2022-03-28 5:17 ` [igt-dev] [PATCH i-g-t 3/3] tests/intel-ci/fast-feedback: Add system-suspend-without-i915 into fast-feedback list Riana Tauro ` (2 subsequent siblings) 4 siblings, 1 reply; 10+ messages in thread From: Riana Tauro @ 2022-03-28 5:17 UTC (permalink / raw) To: igt-dev From: "Tauro, Riana" <riana.tauro@intel.com> Add a new test system-suspend-without-i915 to exercise suspend/resume cycle without i915 module to know the system wide health of suspend/resume feature. This test will be part of CI fast-feedback test list. Signed-off-by: Tauro, Riana <riana.tauro@intel.com> --- tests/i915/i915_suspend.c | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/tests/i915/i915_suspend.c b/tests/i915/i915_suspend.c index da27ce09..4660d7a7 100644 --- a/tests/i915/i915_suspend.c +++ b/tests/i915/i915_suspend.c @@ -41,6 +41,7 @@ #include "i915/gem.h" #include "i915/gem_create.h" #include "igt.h" +#include "igt_kmod.h" #include "igt_device.h" #define OBJECT_SIZE (16*1024*1024) @@ -202,6 +203,22 @@ test_forcewake(int fd, bool hibernate) close (fw_fd); } +static int +test_suspend_without_i915(int fd) +{ + close(fd); + fd = -1; + drm_cancel_work_at_exit(); + igt_i915_driver_unload(); + + igt_system_suspend_autoresume(SUSPEND_STATE_MEM, SUSPEND_TEST_NONE); + + igt_kmsg(KMSG_INFO "Re-loading i915 \n"); + igt_assert_eq(igt_i915_driver_load(NULL), 0); + fd = drm_open_driver(DRIVER_INTEL); + return fd; +} + int fd; igt_main @@ -209,6 +226,9 @@ igt_main igt_fixture fd = drm_open_driver(DRIVER_INTEL); + igt_subtest("system-suspend-without-i915") + fd = test_suspend_without_i915(fd); + igt_subtest("fence-restore-tiled2untiled") { gem_require_mappable_ggtt(fd); test_fence_restore(fd, true, false); -- 2.25.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 2/3] tests/i915/i915_suspend: Add system-suspend-without-i915 subtest 2022-03-28 5:17 ` [igt-dev] [PATCH i-g-t 2/3] tests/i915/i915_suspend: Add system-suspend-without-i915 subtest Riana Tauro @ 2022-03-28 5:51 ` Gupta, Anshuman 2022-03-28 5:53 ` Gupta, Anshuman 0 siblings, 1 reply; 10+ messages in thread From: Gupta, Anshuman @ 2022-03-28 5:51 UTC (permalink / raw) To: Tauro, Riana, igt-dev@lists.freedesktop.org > -----Original Message----- > From: Tauro, Riana <riana.tauro@intel.com> > Sent: Monday, March 28, 2022 10:47 AM > To: igt-dev@lists.freedesktop.org > Cc: Tauro, Riana <riana.tauro@intel.com>; Gupta, Anshuman > <anshuman.gupta@intel.com>; Ewins, Jon <jon.ewins@intel.com>; Dixit, > Ashutosh <ashutosh.dixit@intel.com> > Subject: [PATCH i-g-t 2/3] tests/i915/i915_suspend: Add system-suspend- > without-i915 subtest > > From: "Tauro, Riana" <riana.tauro@intel.com> > > Add a new test system-suspend-without-i915 to exercise suspend/resume cycle > without i915 module to know the system wide health of suspend/resume > feature. > This test will be part of CI fast-feedback test list. > > Signed-off-by: Tauro, Riana <riana.tauro@intel.com> > --- > tests/i915/i915_suspend.c | 20 ++++++++++++++++++++ > 1 file changed, 20 insertions(+) > > diff --git a/tests/i915/i915_suspend.c b/tests/i915/i915_suspend.c index > da27ce09..4660d7a7 100644 > --- a/tests/i915/i915_suspend.c > +++ b/tests/i915/i915_suspend.c > @@ -41,6 +41,7 @@ > #include "i915/gem.h" > #include "i915/gem_create.h" > #include "igt.h" > +#include "igt_kmod.h" > #include "igt_device.h" > > #define OBJECT_SIZE (16*1024*1024) > @@ -202,6 +203,22 @@ test_forcewake(int fd, bool hibernate) > close (fw_fd); > } > > +static int > +test_suspend_without_i915(int fd) > +{ > + close(fd); > + fd = -1; > + drm_cancel_work_at_exit(); > + igt_i915_driver_unload(); > + > + igt_system_suspend_autoresume(SUSPEND_STATE_MEM, > SUSPEND_TEST_NONE); > + > + igt_kmsg(KMSG_INFO "Re-loading i915 \n"); > + igt_assert_eq(igt_i915_driver_load(NULL), 0); > + fd = drm_open_driver(DRIVER_INTEL); > + return fd; > +} > + > int fd; > > igt_main > @@ -209,6 +226,9 @@ igt_main > igt_fixture > fd = drm_open_driver(DRIVER_INTEL); > > + igt_subtest("system-suspend-without-i915") > + fd = test_suspend_without_i915(fd); > + Move above code block to above of igt_fixture(), this subtest doesn't need igt_fixture. With that we don't need to close the fd and reopen it back and forth ? This will avoid to call drm_cancel_work_at_exit() ? > igt_subtest("fence-restore-tiled2untiled") { > gem_require_mappable_ggtt(fd); > test_fence_restore(fd, true, false); > -- > 2.25.1 ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 2/3] tests/i915/i915_suspend: Add system-suspend-without-i915 subtest 2022-03-28 5:51 ` Gupta, Anshuman @ 2022-03-28 5:53 ` Gupta, Anshuman 0 siblings, 0 replies; 10+ messages in thread From: Gupta, Anshuman @ 2022-03-28 5:53 UTC (permalink / raw) To: Tauro, Riana, igt-dev@lists.freedesktop.org > -----Original Message----- > From: Gupta, Anshuman > Sent: Monday, March 28, 2022 11:22 AM > To: Tauro, Riana <riana.tauro@intel.com>; igt-dev@lists.freedesktop.org > Cc: Ewins, Jon <jon.ewins@intel.com>; Dixit, Ashutosh > <ashutosh.dixit@intel.com> > Subject: RE: [PATCH i-g-t 2/3] tests/i915/i915_suspend: Add system-suspend- > without-i915 subtest > > > > > -----Original Message----- > > From: Tauro, Riana <riana.tauro@intel.com> > > Sent: Monday, March 28, 2022 10:47 AM > > To: igt-dev@lists.freedesktop.org > > Cc: Tauro, Riana <riana.tauro@intel.com>; Gupta, Anshuman > > <anshuman.gupta@intel.com>; Ewins, Jon <jon.ewins@intel.com>; Dixit, > > Ashutosh <ashutosh.dixit@intel.com> > > Subject: [PATCH i-g-t 2/3] tests/i915/i915_suspend: Add > > system-suspend- > > without-i915 subtest > > > > From: "Tauro, Riana" <riana.tauro@intel.com> > > > > Add a new test system-suspend-without-i915 to exercise suspend/resume > > cycle without i915 module to know the system wide health of > > suspend/resume feature. > > This test will be part of CI fast-feedback test list. > > > > Signed-off-by: Tauro, Riana <riana.tauro@intel.com> > > --- > > tests/i915/i915_suspend.c | 20 ++++++++++++++++++++ > > 1 file changed, 20 insertions(+) > > > > diff --git a/tests/i915/i915_suspend.c b/tests/i915/i915_suspend.c > > index > > da27ce09..4660d7a7 100644 > > --- a/tests/i915/i915_suspend.c > > +++ b/tests/i915/i915_suspend.c > > @@ -41,6 +41,7 @@ > > #include "i915/gem.h" > > #include "i915/gem_create.h" > > #include "igt.h" > > +#include "igt_kmod.h" > > #include "igt_device.h" > > > > #define OBJECT_SIZE (16*1024*1024) > > @@ -202,6 +203,22 @@ test_forcewake(int fd, bool hibernate) > > close (fw_fd); > > } > > > > +static int > > +test_suspend_without_i915(int fd) > > +{ > > + close(fd); > > + fd = -1; > > + drm_cancel_work_at_exit(); > > + igt_i915_driver_unload(); > > + > > + igt_system_suspend_autoresume(SUSPEND_STATE_MEM, > > SUSPEND_TEST_NONE); > > + > > + igt_kmsg(KMSG_INFO "Re-loading i915 \n"); > > + igt_assert_eq(igt_i915_driver_load(NULL), 0); > > + fd = drm_open_driver(DRIVER_INTEL); > > + return fd; > > +} > > + > > int fd; > > > > igt_main > > @@ -209,6 +226,9 @@ igt_main > > igt_fixture > > fd = drm_open_driver(DRIVER_INTEL); > > > > + igt_subtest("system-suspend-without-i915") Need to add a description for test with igt_describe() Thanks, Anshuman. > > + fd = test_suspend_without_i915(fd); > > + > Move above code block to above of igt_fixture(), this subtest doesn't need > igt_fixture. > With that we don't need to close the fd and reopen it back and forth ? > This will avoid to call drm_cancel_work_at_exit() ? > > igt_subtest("fence-restore-tiled2untiled") { > > gem_require_mappable_ggtt(fd); > > test_fence_restore(fd, true, false); > > -- > > 2.25.1 ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] [PATCH i-g-t 3/3] tests/intel-ci/fast-feedback: Add system-suspend-without-i915 into fast-feedback list 2022-03-28 5:17 [igt-dev] [PATCH i-g-t 0/3] Basic Suspend/Resume with i915 unload Riana Tauro 2022-03-28 5:17 ` [igt-dev] [PATCH i-g-t 1/3] lib/drmtest : add function to call exit handler to unload i915 module Riana Tauro 2022-03-28 5:17 ` [igt-dev] [PATCH i-g-t 2/3] tests/i915/i915_suspend: Add system-suspend-without-i915 subtest Riana Tauro @ 2022-03-28 5:17 ` Riana Tauro 2022-03-28 5:52 ` Gupta, Anshuman 2022-03-28 5:50 ` [igt-dev] ✓ Fi.CI.BAT: success for Basic Suspend/Resume with i915 unload (rev2) Patchwork 2022-03-28 6:41 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 4 siblings, 1 reply; 10+ messages in thread From: Riana Tauro @ 2022-03-28 5:17 UTC (permalink / raw) To: igt-dev From: "Tauro, Riana" <riana.tauro@intel.com> Add system-suspend-without-i915 tests to CI fast-feedback test list. Signed-off-by: Tauro, Riana <riana.tauro@intel.com> --- tests/intel-ci/fast-feedback.testlist | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist index 5c867bbf..c1014558 100644 --- a/tests/intel-ci/fast-feedback.testlist +++ b/tests/intel-ci/fast-feedback.testlist @@ -174,6 +174,7 @@ igt@core_hotunplug@unbind-rebind igt@vgem_basic@unload igt@i915_module_load@reload igt@i915_pm_rpm@module-reload +igt@i915_suspend@system-suspend-without-i915 # Kernel selftests igt@i915_selftest@live -- 2.25.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 3/3] tests/intel-ci/fast-feedback: Add system-suspend-without-i915 into fast-feedback list 2022-03-28 5:17 ` [igt-dev] [PATCH i-g-t 3/3] tests/intel-ci/fast-feedback: Add system-suspend-without-i915 into fast-feedback list Riana Tauro @ 2022-03-28 5:52 ` Gupta, Anshuman 0 siblings, 0 replies; 10+ messages in thread From: Gupta, Anshuman @ 2022-03-28 5:52 UTC (permalink / raw) To: Tauro, Riana, igt-dev@lists.freedesktop.org > -----Original Message----- > From: Tauro, Riana <riana.tauro@intel.com> > Sent: Monday, March 28, 2022 10:47 AM > To: igt-dev@lists.freedesktop.org > Cc: Tauro, Riana <riana.tauro@intel.com>; Gupta, Anshuman > <anshuman.gupta@intel.com>; Ewins, Jon <jon.ewins@intel.com>; Dixit, > Ashutosh <ashutosh.dixit@intel.com> > Subject: [PATCH i-g-t 3/3] tests/intel-ci/fast-feedback: Add system-suspend- > without-i915 into fast-feedback list > > From: "Tauro, Riana" <riana.tauro@intel.com> > > Add system-suspend-without-i915 tests to CI fast-feedback test list. *subtest > > Signed-off-by: Tauro, Riana <riana.tauro@intel.com> > --- > tests/intel-ci/fast-feedback.testlist | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast- > feedback.testlist > index 5c867bbf..c1014558 100644 > --- a/tests/intel-ci/fast-feedback.testlist > +++ b/tests/intel-ci/fast-feedback.testlist > @@ -174,6 +174,7 @@ igt@core_hotunplug@unbind-rebind > igt@vgem_basic@unload igt@i915_module_load@reload > igt@i915_pm_rpm@module-reload > +igt@i915_suspend@system-suspend-without-i915 > > # Kernel selftests > igt@i915_selftest@live > -- > 2.25.1 ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Basic Suspend/Resume with i915 unload (rev2) 2022-03-28 5:17 [igt-dev] [PATCH i-g-t 0/3] Basic Suspend/Resume with i915 unload Riana Tauro ` (2 preceding siblings ...) 2022-03-28 5:17 ` [igt-dev] [PATCH i-g-t 3/3] tests/intel-ci/fast-feedback: Add system-suspend-without-i915 into fast-feedback list Riana Tauro @ 2022-03-28 5:50 ` Patchwork 2022-03-28 6:41 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 4 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2022-03-28 5:50 UTC (permalink / raw) To: Riana Tauro; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 11768 bytes --] == Series Details == Series: Basic Suspend/Resume with i915 unload (rev2) URL : https://patchwork.freedesktop.org/series/101730/ State : success == Summary == CI Bug Log - changes from CI_DRM_11407 -> IGTPW_6833 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/index.html Participating hosts (48 -> 40) ------------------------------ Missing (8): shard-tglu fi-bsw-cyan bat-adlp-4 fi-kbl-x1275 shard-rkl shard-dg1 fi-bsw-nick fi-bdw-samus New tests --------- New tests have been introduced between CI_DRM_11407 and IGTPW_6833: ### New IGT tests (1) ### * igt@i915_suspend@system-suspend-without-i915: - Statuses : 1 dmesg-warn(s) 7 pass(s) - Exec time: [1.59, 18.94] s Known issues ------------ Here are the changes found in IGTPW_6833 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@amdgpu/amd_basic@query-info: - fi-tgl-1115g4: NOTRUN -> [SKIP][1] ([fdo#109315]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/fi-tgl-1115g4/igt@amdgpu/amd_basic@query-info.html * igt@amdgpu/amd_cs_nop@nop-gfx0: - fi-tgl-1115g4: NOTRUN -> [SKIP][2] ([fdo#109315] / [i915#2575]) +16 similar issues [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/fi-tgl-1115g4/igt@amdgpu/amd_cs_nop@nop-gfx0.html * igt@core_hotunplug@unbind-rebind: - fi-bsw-n3050: NOTRUN -> [INCOMPLETE][3] ([i915#5441]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/fi-bsw-n3050/igt@core_hotunplug@unbind-rebind.html - fi-snb-2600: NOTRUN -> [INCOMPLETE][4] ([i915#5441]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/fi-snb-2600/igt@core_hotunplug@unbind-rebind.html - fi-glk-dsi: [PASS][5] -> [INCOMPLETE][6] ([i915#5441]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11407/fi-glk-dsi/igt@core_hotunplug@unbind-rebind.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/fi-glk-dsi/igt@core_hotunplug@unbind-rebind.html * igt@gem_render_linear_blits@basic: - fi-snb-2520m: [PASS][7] -> [INCOMPLETE][8] ([i915#5441]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11407/fi-snb-2520m/igt@gem_render_linear_blits@basic.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/fi-snb-2520m/igt@gem_render_linear_blits@basic.html * igt@gem_render_tiled_blits@basic: - fi-bsw-kefka: [PASS][9] -> [INCOMPLETE][10] ([i915#5441]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11407/fi-bsw-kefka/igt@gem_render_tiled_blits@basic.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/fi-bsw-kefka/igt@gem_render_tiled_blits@basic.html - fi-kbl-8809g: [PASS][11] -> [INCOMPLETE][12] ([i915#5441]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11407/fi-kbl-8809g/igt@gem_render_tiled_blits@basic.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/fi-kbl-8809g/igt@gem_render_tiled_blits@basic.html * igt@gem_tiled_blits@basic: - fi-cfl-8109u: [PASS][13] -> [INCOMPLETE][14] ([i915#5441]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11407/fi-cfl-8109u/igt@gem_tiled_blits@basic.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/fi-cfl-8109u/igt@gem_tiled_blits@basic.html * igt@i915_selftest@live@hangcheck: - bat-dg1-6: NOTRUN -> [DMESG-FAIL][15] ([i915#4494] / [i915#4957]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/bat-dg1-6/igt@i915_selftest@live@hangcheck.html * {igt@i915_suspend@system-suspend-without-i915} (NEW): - {bat-rpls-1}: NOTRUN -> [DMESG-WARN][16] ([i915#4391]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/bat-rpls-1/igt@i915_suspend@system-suspend-without-i915.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - fi-snb-2600: NOTRUN -> [SKIP][17] ([fdo#109271]) +10 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/fi-snb-2600/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_chamelium@hdmi-crc-fast: - fi-bsw-n3050: NOTRUN -> [SKIP][18] ([fdo#109271] / [fdo#111827]) +8 similar issues [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/fi-bsw-n3050/igt@kms_chamelium@hdmi-crc-fast.html - fi-snb-2600: NOTRUN -> [SKIP][19] ([fdo#109271] / [fdo#111827]) +8 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/fi-snb-2600/igt@kms_chamelium@hdmi-crc-fast.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-c: - fi-snb-2600: NOTRUN -> [SKIP][20] ([fdo#109271] / [i915#5341]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/fi-snb-2600/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-c.html * igt@kms_pipe_crc_basic@hang-read-crc-pipe-a: - fi-bsw-n3050: NOTRUN -> [SKIP][21] ([fdo#109271]) +22 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/fi-bsw-n3050/igt@kms_pipe_crc_basic@hang-read-crc-pipe-a.html * igt@runner@aborted: - fi-glk-dsi: NOTRUN -> [FAIL][22] ([i915#4312] / [k.org#202321]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/fi-glk-dsi/igt@runner@aborted.html #### Possible fixes #### * igt@core_hotunplug@unbind-rebind: - fi-tgl-1115g4: [INCOMPLETE][23] ([i915#1373]) -> [PASS][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11407/fi-tgl-1115g4/igt@core_hotunplug@unbind-rebind.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/fi-tgl-1115g4/igt@core_hotunplug@unbind-rebind.html - {fi-ehl-2}: [INCOMPLETE][25] ([i915#5441]) -> [PASS][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11407/fi-ehl-2/igt@core_hotunplug@unbind-rebind.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/fi-ehl-2/igt@core_hotunplug@unbind-rebind.html - bat-dg1-6: [INCOMPLETE][27] ([i915#5441]) -> [PASS][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11407/bat-dg1-6/igt@core_hotunplug@unbind-rebind.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/bat-dg1-6/igt@core_hotunplug@unbind-rebind.html * igt@gem_render_tiled_blits@basic: - fi-bsw-n3050: [INCOMPLETE][29] ([i915#5441]) -> [PASS][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11407/fi-bsw-n3050/igt@gem_render_tiled_blits@basic.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/fi-bsw-n3050/igt@gem_render_tiled_blits@basic.html - {bat-rpls-2}: [INCOMPLETE][31] ([i915#5441]) -> [PASS][32] [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11407/bat-rpls-2/igt@gem_render_tiled_blits@basic.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/bat-rpls-2/igt@gem_render_tiled_blits@basic.html * igt@gem_tiled_blits@basic: - fi-snb-2600: [INCOMPLETE][33] ([i915#5441]) -> [PASS][34] [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11407/fi-snb-2600/igt@gem_tiled_blits@basic.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/fi-snb-2600/igt@gem_tiled_blits@basic.html #### Warnings #### * igt@core_hotunplug@unbind-rebind: - fi-kbl-7500u: [INCOMPLETE][35] ([i915#1373]) -> [INCOMPLETE][36] ([i915#1373] / [i915#5441]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11407/fi-kbl-7500u/igt@core_hotunplug@unbind-rebind.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/fi-kbl-7500u/igt@core_hotunplug@unbind-rebind.html - fi-kbl-7567u: [INCOMPLETE][37] ([i915#1373]) -> [INCOMPLETE][38] ([i915#1373] / [i915#5441]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11407/fi-kbl-7567u/igt@core_hotunplug@unbind-rebind.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/fi-kbl-7567u/igt@core_hotunplug@unbind-rebind.html * igt@gem_tiled_blits@basic: - fi-cfl-guc: [INCOMPLETE][39] ([i915#5441]) -> [INCOMPLETE][40] ([i915#1982] / [i915#5441]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11407/fi-cfl-guc/igt@gem_tiled_blits@basic.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/fi-cfl-guc/igt@gem_tiled_blits@basic.html * igt@runner@aborted: - fi-bsw-kefka: [FAIL][41] ([i915#4312]) -> [FAIL][42] ([i915#3428] / [i915#4312]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11407/fi-bsw-kefka/igt@runner@aborted.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/fi-bsw-kefka/igt@runner@aborted.html - fi-bsw-n3050: [FAIL][43] ([i915#3428] / [i915#4312]) -> [FAIL][44] ([i915#4312]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11407/fi-bsw-n3050/igt@runner@aborted.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/fi-bsw-n3050/igt@runner@aborted.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#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155 [i915#1373]: https://gitlab.freedesktop.org/drm/intel/issues/1373 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3428]: https://gitlab.freedesktop.org/drm/intel/issues/3428 [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#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4494]: https://gitlab.freedesktop.org/drm/intel/issues/4494 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4897]: https://gitlab.freedesktop.org/drm/intel/issues/4897 [i915#4957]: https://gitlab.freedesktop.org/drm/intel/issues/4957 [i915#5127]: https://gitlab.freedesktop.org/drm/intel/issues/5127 [i915#5339]: https://gitlab.freedesktop.org/drm/intel/issues/5339 [i915#5341]: https://gitlab.freedesktop.org/drm/intel/issues/5341 [i915#5342]: https://gitlab.freedesktop.org/drm/intel/issues/5342 [i915#5441]: https://gitlab.freedesktop.org/drm/intel/issues/5441 [k.org#202321]: https://bugzilla.kernel.org/show_bug.cgi?id=202321 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_6393 -> IGTPW_6833 CI-20190529: 20190529 CI_DRM_11407: a2fff1c90d9587c65608497d5bf5781c073bf46a @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_6833: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/index.html IGT_6393: 1d267ea1b829fa10b31a37ccf6b4a970f032784a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Testlist changes == +igt@i915_suspend@system-suspend-without-i915 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/index.html [-- Attachment #2: Type: text/html, Size: 13810 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for Basic Suspend/Resume with i915 unload (rev2) 2022-03-28 5:17 [igt-dev] [PATCH i-g-t 0/3] Basic Suspend/Resume with i915 unload Riana Tauro ` (3 preceding siblings ...) 2022-03-28 5:50 ` [igt-dev] ✓ Fi.CI.BAT: success for Basic Suspend/Resume with i915 unload (rev2) Patchwork @ 2022-03-28 6:41 ` Patchwork 4 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2022-03-28 6:41 UTC (permalink / raw) To: Riana Tauro; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 30263 bytes --] == Series Details == Series: Basic Suspend/Resume with i915 unload (rev2) URL : https://patchwork.freedesktop.org/series/101730/ State : success == Summary == CI Bug Log - changes from CI_DRM_11407_full -> IGTPW_6833_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/index.html Participating hosts (11 -> 8) ------------------------------ Additional (1): shard-rkl Missing (4): pig-skl-6260u shard-skl pig-kbl-iris pig-glk-j5005 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_6833_full: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@gem_exec_schedule@smoketest@bcs0: - {shard-rkl}: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-rkl-5/igt@gem_exec_schedule@smoketest@bcs0.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - {shard-rkl}: NOTRUN -> [SKIP][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@prime_self_import@export-vs-gem_close-race: - {shard-tglu}: NOTRUN -> [FAIL][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-tglu-6/igt@prime_self_import@export-vs-gem_close-race.html New tests --------- New tests have been introduced between CI_DRM_11407_full and IGTPW_6833_full: ### New IGT tests (1) ### * igt@i915_suspend@system-suspend-without-i915: - Statuses : 5 pass(s) - Exec time: [1.91, 4.75] s Known issues ------------ Here are the changes found in IGTPW_6833_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-noreloc-keep-cache-random: - shard-tglb: NOTRUN -> [INCOMPLETE][4] ([i915#5441]) +7 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-tglb7/igt@api_intel_bb@blit-noreloc-keep-cache-random.html * igt@api_intel_bb@blit-noreloc-purge-cache: - shard-apl: NOTRUN -> [INCOMPLETE][5] ([i915#1982] / [i915#5441]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-apl6/igt@api_intel_bb@blit-noreloc-purge-cache.html - shard-glk: NOTRUN -> [INCOMPLETE][6] ([i915#5441]) +1 similar issue [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-glk2/igt@api_intel_bb@blit-noreloc-purge-cache.html * igt@feature_discovery@display-3x: - shard-iclb: NOTRUN -> [SKIP][7] ([i915#1839]) +1 similar issue [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-iclb7/igt@feature_discovery@display-3x.html * igt@gem_ccs@suspend-resume: - shard-iclb: NOTRUN -> [SKIP][8] ([i915#5327]) +1 similar issue [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-iclb4/igt@gem_ccs@suspend-resume.html - shard-tglb: NOTRUN -> [SKIP][9] ([i915#5325]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-tglb6/igt@gem_ccs@suspend-resume.html * igt@gem_ctx_param@set-priority-not-supported: - shard-tglb: NOTRUN -> [SKIP][10] ([fdo#109314]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-tglb6/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@idempotent: - shard-snb: NOTRUN -> [SKIP][11] ([fdo#109271] / [i915#1099]) +6 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-snb7/igt@gem_ctx_persistence@idempotent.html * igt@gem_ctx_sseu@engines: - shard-tglb: NOTRUN -> [SKIP][12] ([i915#280]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-tglb6/igt@gem_ctx_sseu@engines.html * igt@gem_eio@kms: - shard-tglb: NOTRUN -> [FAIL][13] ([i915#232]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-tglb5/igt@gem_eio@kms.html * igt@gem_eio@unwedge-stress: - shard-snb: NOTRUN -> [FAIL][14] ([i915#3354]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-snb2/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@parallel: - shard-kbl: NOTRUN -> [DMESG-WARN][15] ([i915#5076]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-kbl7/igt@gem_exec_balancer@parallel.html - shard-tglb: NOTRUN -> [DMESG-WARN][16] ([i915#5076]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-tglb3/igt@gem_exec_balancer@parallel.html * igt@gem_exec_balancer@parallel-keep-submit-fence: - shard-iclb: NOTRUN -> [DMESG-WARN][17] ([i915#5076]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-iclb4/igt@gem_exec_balancer@parallel-keep-submit-fence.html * igt@gem_exec_balancer@parallel-ordering: - shard-iclb: NOTRUN -> [SKIP][18] ([i915#4525]) +1 similar issue [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-iclb7/igt@gem_exec_balancer@parallel-ordering.html - shard-tglb: NOTRUN -> [DMESG-FAIL][19] ([i915#5076]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-tglb5/igt@gem_exec_balancer@parallel-ordering.html - shard-kbl: NOTRUN -> [DMESG-FAIL][20] ([i915#5076]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-kbl3/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_fair@basic-flow@rcs0: - shard-tglb: NOTRUN -> [FAIL][21] ([i915#2842]) +2 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-tglb6/igt@gem_exec_fair@basic-flow@rcs0.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-kbl: NOTRUN -> [FAIL][22] ([i915#2842]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-kbl7/igt@gem_exec_fair@basic-none-solo@rcs0.html - shard-glk: NOTRUN -> [FAIL][23] ([i915#2842]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-glk2/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-none@vcs0: - shard-apl: [PASS][24] -> [FAIL][25] ([i915#2842]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11407/shard-apl4/igt@gem_exec_fair@basic-none@vcs0.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-apl3/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-none@vcs1: - shard-iclb: NOTRUN -> [FAIL][26] ([i915#2842]) +2 similar issues [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-iclb4/igt@gem_exec_fair@basic-none@vcs1.html * igt@gem_exec_params@secure-non-root: - shard-tglb: NOTRUN -> [SKIP][27] ([fdo#112283]) +1 similar issue [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-tglb2/igt@gem_exec_params@secure-non-root.html * igt@gem_huc_copy@huc-copy: - shard-kbl: NOTRUN -> [SKIP][28] ([fdo#109271] / [i915#2190]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-kbl4/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-kbl: NOTRUN -> [SKIP][29] ([fdo#109271] / [i915#4613]) +3 similar issues [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-kbl7/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@parallel-random: - shard-apl: NOTRUN -> [SKIP][30] ([fdo#109271] / [i915#4613]) +2 similar issues [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-apl2/igt@gem_lmem_swapping@parallel-random.html - shard-glk: NOTRUN -> [SKIP][31] ([fdo#109271] / [i915#4613]) +1 similar issue [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-glk5/igt@gem_lmem_swapping@parallel-random.html - shard-iclb: NOTRUN -> [SKIP][32] ([i915#4613]) +1 similar issue [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-iclb5/igt@gem_lmem_swapping@parallel-random.html * igt@gem_lmem_swapping@verify-random: - shard-tglb: NOTRUN -> [SKIP][33] ([i915#4613]) +1 similar issue [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-tglb3/igt@gem_lmem_swapping@verify-random.html * igt@gem_media_vme: - shard-tglb: NOTRUN -> [SKIP][34] ([i915#284]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-tglb2/igt@gem_media_vme.html * igt@gem_mmap_gtt@coherency: - shard-iclb: NOTRUN -> [SKIP][35] ([fdo#109292]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-iclb6/igt@gem_mmap_gtt@coherency.html * igt@gem_ppgtt@blt-vs-render-ctxn: - shard-kbl: NOTRUN -> [DMESG-FAIL][36] ([i915#5441]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-kbl4/igt@gem_ppgtt@blt-vs-render-ctxn.html - shard-iclb: NOTRUN -> [DMESG-FAIL][37] ([i915#5441]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-iclb7/igt@gem_ppgtt@blt-vs-render-ctxn.html * igt@gem_pread@exhaustion: - shard-snb: NOTRUN -> [WARN][38] ([i915#2658]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-snb5/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-iclb: NOTRUN -> [WARN][39] ([i915#2658]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-iclb3/igt@gem_pwrite@basic-exhaustion.html - shard-tglb: NOTRUN -> [WARN][40] ([i915#2658]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-tglb7/igt@gem_pwrite@basic-exhaustion.html - shard-glk: NOTRUN -> [WARN][41] ([i915#2658]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-glk3/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@fail-invalid-protected-context: - shard-tglb: NOTRUN -> [SKIP][42] ([i915#4270]) +3 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-tglb7/igt@gem_pxp@fail-invalid-protected-context.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-iclb: NOTRUN -> [SKIP][43] ([i915#4270]) +5 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-iclb1/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled: - shard-iclb: NOTRUN -> [SKIP][44] ([i915#768]) +7 similar issues [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-iclb7/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_userptr_blits@access-control: - shard-tglb: NOTRUN -> [SKIP][45] ([i915#3297]) +6 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-tglb3/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@dmabuf-sync: - shard-iclb: NOTRUN -> [SKIP][46] ([i915#3323]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-iclb2/igt@gem_userptr_blits@dmabuf-sync.html - shard-glk: NOTRUN -> [SKIP][47] ([fdo#109271] / [i915#3323]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-glk7/igt@gem_userptr_blits@dmabuf-sync.html - shard-tglb: NOTRUN -> [SKIP][48] ([i915#3323]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-tglb3/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-iclb: NOTRUN -> [SKIP][49] ([i915#3297]) +3 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-iclb7/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@input-checking: - shard-snb: NOTRUN -> [DMESG-WARN][50] ([i915#4991]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-snb2/igt@gem_userptr_blits@input-checking.html * igt@gem_userptr_blits@vma-merge: - shard-snb: NOTRUN -> [FAIL][51] ([i915#2724]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-snb5/igt@gem_userptr_blits@vma-merge.html - shard-glk: NOTRUN -> [FAIL][52] ([i915#3318]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-glk8/igt@gem_userptr_blits@vma-merge.html * igt@gen3_render_tiledy_blits: - shard-tglb: NOTRUN -> [SKIP][53] ([fdo#109289]) +5 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-tglb2/igt@gen3_render_tiledy_blits.html * igt@gen7_exec_parse@basic-offset: - shard-apl: NOTRUN -> [SKIP][54] ([fdo#109271]) +345 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-apl7/igt@gen7_exec_parse@basic-offset.html * igt@gen7_exec_parse@bitmasks: - shard-iclb: NOTRUN -> [SKIP][55] ([fdo#109289]) +7 similar issues [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-iclb2/igt@gen7_exec_parse@bitmasks.html * igt@gen9_exec_parse@allowed-all: - shard-iclb: NOTRUN -> [SKIP][56] ([i915#2856]) +7 similar issues [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-iclb8/igt@gen9_exec_parse@allowed-all.html - shard-kbl: NOTRUN -> [DMESG-WARN][57] ([i915#1436] / [i915#716]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-kbl3/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@batch-invalid-length: - shard-snb: NOTRUN -> [SKIP][58] ([fdo#109271]) +732 similar issues [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-snb7/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@bb-start-cmd: - shard-tglb: NOTRUN -> [SKIP][59] ([i915#2527] / [i915#2856]) +8 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-tglb6/igt@gen9_exec_parse@bb-start-cmd.html * igt@i915_pm_backlight@bad-brightness: - shard-glk: NOTRUN -> [SKIP][60] ([fdo#109271]) +450 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-glk6/igt@i915_pm_backlight@bad-brightness.html * igt@i915_pm_dc@dc3co-vpb-simulation: - shard-iclb: NOTRUN -> [SKIP][61] ([i915#658]) +1 similar issue [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-iclb6/igt@i915_pm_dc@dc3co-vpb-simulation.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-tglb: NOTRUN -> [WARN][62] ([i915#2681] / [i915#2684]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-tglb1/igt@i915_pm_rc6_residency@rc6-idle.html - shard-iclb: NOTRUN -> [WARN][63] ([i915#1804] / [i915#2684]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-iclb7/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-iclb: NOTRUN -> [SKIP][64] ([fdo#109293] / [fdo#109506]) +1 similar issue [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-iclb3/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html - shard-tglb: NOTRUN -> [SKIP][65] ([fdo#109506] / [i915#2411]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-tglb7/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-tglb: NOTRUN -> [SKIP][66] ([fdo#111644] / [i915#1397] / [i915#2411]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-tglb7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-iclb: NOTRUN -> [SKIP][67] ([fdo#110892]) +1 similar issue [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-iclb1/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@i915_query@query-topology-unsupported: - shard-iclb: NOTRUN -> [SKIP][68] ([fdo#109302]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-iclb7/igt@i915_query@query-topology-unsupported.html - shard-tglb: NOTRUN -> [SKIP][69] ([fdo#109302]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-tglb5/igt@i915_query@query-topology-unsupported.html * igt@i915_selftest@live@gt_lrc: - shard-tglb: NOTRUN -> [DMESG-FAIL][70] ([i915#2373]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-tglb1/igt@i915_selftest@live@gt_lrc.html * igt@i915_selftest@live@gt_pm: - shard-tglb: NOTRUN -> [DMESG-FAIL][71] ([i915#1759]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-tglb1/igt@i915_selftest@live@gt_pm.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglb: NOTRUN -> [SKIP][72] ([i915#3826]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-tglb3/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html - shard-iclb: NOTRUN -> [SKIP][73] ([i915#3826]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-iclb3/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-iclb: NOTRUN -> [SKIP][74] ([i915#1769]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-iclb1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-kbl: NOTRUN -> [SKIP][75] ([fdo#109271]) +263 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-kbl3/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-iclb: NOTRUN -> [SKIP][76] ([i915#5286]) +10 similar issues [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-iclb1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglb: NOTRUN -> [SKIP][77] ([i915#5286]) +7 similar issues [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-tglb7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-iclb: NOTRUN -> [SKIP][78] ([fdo#110725] / [fdo#111614]) +3 similar issues [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-iclb7/igt@kms_big_fb@linear-16bpp-rotate-90.html - shard-tglb: NOTRUN -> [SKIP][79] ([fdo#111614]) +1 similar issue [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-tglb5/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180: - shard-snb: [PASS][80] -> [INCOMPLETE][81] ([i915#5441]) +1 similar issue [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11407/shard-snb4/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-snb4/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180.html - shard-tglb: [PASS][82] -> [INCOMPLETE][83] ([i915#5441]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11407/shard-tglb7/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-tglb5/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@x-tiled-16bpp-rotate-180: - shard-iclb: NOTRUN -> [INCOMPLETE][84] ([i915#1373] / [i915#5441]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-iclb6/igt@kms_big_fb@x-tiled-16bpp-rotate-180.html - shard-kbl: NOTRUN -> [INCOMPLETE][85] ([i915#1373] / [i915#5441]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-kbl7/igt@kms_big_fb@x-tiled-16bpp-rotate-180.html * igt@kms_big_fb@x-tiled-32bpp-rotate-180: - shard-glk: NOTRUN -> [DMESG-WARN][86] ([i915#118]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-glk4/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html * igt@kms_big_fb@x-tiled-8bpp-rotate-0: - shard-tglb: NOTRUN -> [INCOMPLETE][87] ([i915#1373] / [i915#5441]) +1 similar issue [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-tglb3/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-snb: NOTRUN -> [INCOMPLETE][88] ([i915#5441]) +3 similar issues [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-snb5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html - shard-iclb: NOTRUN -> [INCOMPLETE][89] ([i915#4185] / [i915#5441]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-iclb6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-apl: NOTRUN -> [SKIP][90] ([fdo#109271] / [i915#3777]) +9 similar issues [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-apl6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0: - shard-kbl: NOTRUN -> [INCOMPLETE][91] ([i915#5441]) +7 similar issues [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-kbl1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@y-tiled-16bpp-rotate-180: - shard-iclb: NOTRUN -> [INCOMPLETE][92] ([i915#5441]) +12 similar issues [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-iclb2/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html * igt@kms_big_fb@y-tiled-32bpp-rotate-0: - shard-glk: [PASS][93] -> [INCOMPLETE][94] ([i915#5441]) +1 similar issue [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11407/shard-glk6/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-glk8/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-iclb: [PASS][95] -> [INCOMPLETE][96] ([i915#5441]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11407/shard-iclb2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-iclb2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-apl: NOTRUN -> [INCOMPLETE][97] ([i915#5441]) +2 similar issues [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-apl2/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-tglb: NOTRUN -> [SKIP][98] ([fdo#111615]) +14 similar issues [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-tglb7/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-kbl: NOTRUN -> [SKIP][99] ([fdo#109271] / [i915#3777]) +4 similar issues [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-kbl4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-glk: NOTRUN -> [SKIP][100] ([fdo#109271] / [i915#3777]) +10 similar issues [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-glk5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-iclb: NOTRUN -> [SKIP][101] ([fdo#110723]) +4 similar issues [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-iclb3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_joiner@basic: - shard-tglb: NOTRUN -> [SKIP][102] ([i915#2705]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-tglb1/igt@kms_big_joiner@basic.html - shard-iclb: NOTRUN -> [SKIP][103] ([i915#2705]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-iclb7/igt@kms_big_joiner@basic.html * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: - shard-glk: NOTRUN -> [SKIP][104] ([fdo#109271] / [i915#3886]) +23 similar issues [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-glk5/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-apl: NOTRUN -> [SKIP][105] ([fdo#109271] / [i915#3886]) +17 similar issues [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-apl2/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc: - shard-kbl: NOTRUN -> [SKIP][106] ([fdo#109271] / [i915#3886]) +15 similar issues [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-kbl6/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][107] ([fdo#111615] / [i915#3689]) +9 similar issues [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-tglb7/igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-iclb: NOTRUN -> [SKIP][108] ([fdo#109278] / [i915#3886]) +15 similar issues [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-iclb7/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][109] ([i915#3689] / [i915#3886]) +7 similar issues [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-tglb5/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][110] ([i915#3689]) +14 similar issues [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-tglb5/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs.html * igt@kms_chamelium@dp-frame-dump: - shard-iclb: NOTRUN -> [SKIP][111] ([fdo#109284] / [fdo#111827]) +19 similar issues [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-iclb3/igt@kms_chamelium@dp-frame-dump.html * igt@kms_chamelium@hdmi-edid-change-during-suspend: - shard-apl: NOTRUN -> [SKIP][112] ([fdo#109271] / [fdo#111827]) +23 similar issues [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-apl3/igt@kms_chamelium@hdmi-edid-change-during-suspend.html * igt@kms_chamelium@vga-hpd-enable-disable-mode: - shard-glk: NOTRUN -> [SKIP][113] ([fdo#109271] / [fdo#111827]) +37 similar issues [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-glk6/igt@kms_chamelium@vga-hpd-enable-disable-mode.html * igt@kms_color@pipe-a-deep-color: - shard-iclb: NOTRUN -> [SKIP][114] ([fdo#109278] / [i915#3555]) +1 similar issue [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-iclb1/igt@kms_color@pipe-a-deep-color.html * igt@kms_color@pipe-d-ctm-0-25: - shard-iclb: NOTRUN -> [SKIP][115] ([fdo#109278] / [i915#1149]) +2 similar issues [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-iclb3/igt@kms_color@pipe-d-ctm-0-25.html * igt@kms_color_chamelium@pipe-a-ctm-0-75: - shard-kbl: NOTRUN -> [SKIP][116] ([fdo#109271] / [fdo#111827]) +15 similar issues [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-kbl7/igt@kms_color_chamelium@pipe-a-ctm-0-75.html * igt@kms_color_chamelium@pipe-a-ctm-blue-to-red: - shard-snb: NOTRUN -> [SKIP][117] ([fdo#109271] / [fdo#111827]) +30 similar issues [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-snb7/igt@kms_color_chamelium@pipe-a-ctm-blue-to-red.html * igt@kms_color_chamelium@pipe-b-ctm-0-75: - shard-tglb: NOTRUN -> [SKIP][118] ([fdo#109284] / [fdo#111827]) +17 similar issues [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-tglb7/igt@kms_color_chamelium@pipe-b-ctm-0-75.html * igt@kms_content_protection@atomic-dpms: - shard-kbl: NOTRUN -> [TIMEOUT][119] ([i915#1319]) +1 similar issue [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-kbl4/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-tglb: NOTRUN -> [SKIP][120] ([i915#3116] / [i915#3299]) +1 similar issue [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-tglb2/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-iclb: NOTRUN -> [SKIP][121] ([i915#3116]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-iclb4/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic: - shard-apl: NOTRUN -> [TIMEOUT][122] ([i915#1319]) +2 similar issues [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-apl6/igt@kms_content_protection@lic.html - shard-tglb: NOTRUN -> [SKIP][123] ([i915#1063]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-tglb3/igt@kms_content_protection@lic.html * igt@kms_content_protection@mei_interface: - shard-iclb: NOTRUN -> [SKIP][124] ([fdo#109300] / [fdo#111066]) +2 similar issues [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-iclb5/igt@kms_content_protection@mei_interface.html * igt@kms_cursor_crc@pipe-b-cursor-32x32-onscreen: - shard-tglb: NOTRUN -> [SKIP][125] ([i915#3319]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-tglb6/igt@kms_cursor_crc@pipe-b-cursor-32x32-onscreen.html * igt@kms_cursor_crc@pipe-b-cursor-512x512-random: - shard-iclb: NOTRUN -> [SKIP][126] ([fdo#109278] / [fdo#109279]) +6 similar issues [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/shard-iclb3/igt@kms_cursor_crc@pipe-b-cursor-512x512-random == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6833/index.html [-- Attachment #2: Type: text/html, Size: 34118 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2022-03-28 6:41 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-03-28 5:17 [igt-dev] [PATCH i-g-t 0/3] Basic Suspend/Resume with i915 unload Riana Tauro 2022-03-28 5:17 ` [igt-dev] [PATCH i-g-t 1/3] lib/drmtest : add function to call exit handler to unload i915 module Riana Tauro 2022-03-28 5:42 ` Gupta, Anshuman 2022-03-28 5:17 ` [igt-dev] [PATCH i-g-t 2/3] tests/i915/i915_suspend: Add system-suspend-without-i915 subtest Riana Tauro 2022-03-28 5:51 ` Gupta, Anshuman 2022-03-28 5:53 ` Gupta, Anshuman 2022-03-28 5:17 ` [igt-dev] [PATCH i-g-t 3/3] tests/intel-ci/fast-feedback: Add system-suspend-without-i915 into fast-feedback list Riana Tauro 2022-03-28 5:52 ` Gupta, Anshuman 2022-03-28 5:50 ` [igt-dev] ✓ Fi.CI.BAT: success for Basic Suspend/Resume with i915 unload (rev2) Patchwork 2022-03-28 6:41 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.