* [igt-dev] [PATCH i-g-t v3 0/3] Test for gtidle properties
@ 2023-07-11 6:54 Riana Tauro
2023-07-11 6:54 ` [igt-dev] [PATCH i-g-t v3 1/3] tests/xe: Add basic idle residency test Riana Tauro
` (5 more replies)
0 siblings, 6 replies; 10+ messages in thread
From: Riana Tauro @ 2023-07-11 6:54 UTC (permalink / raw)
To: igt-dev; +Cc: badal.nilawar
1) Add basic idle residency test that validates residency over
a time interval is within the tolerance.
2) Add a test to check if gt is in c6 when idle.
Patch for gtidle properties
https://patchwork.freedesktop.org/series/119262/
Rev2: Fix cosmetic review comments
Rev3: Add changes to accommodate tile sysfs
Riana Tauro (3):
tests/xe: Add basic idle residency test
tests/xe: validate gt is in c6 on idle
xe-fast-feedback.testlist: Add gt-c6-on-idle to BAT
tests/intel-ci/xe-fast-feedback.testlist | 1 +
tests/meson.build | 1 +
tests/xe/xe_pm_residency.c | 123 +++++++++++++++++++++++
3 files changed, 125 insertions(+)
create mode 100644 tests/xe/xe_pm_residency.c
--
2.40.0
^ permalink raw reply [flat|nested] 10+ messages in thread* [igt-dev] [PATCH i-g-t v3 1/3] tests/xe: Add basic idle residency test 2023-07-11 6:54 [igt-dev] [PATCH i-g-t v3 0/3] Test for gtidle properties Riana Tauro @ 2023-07-11 6:54 ` Riana Tauro 2023-07-14 5:08 ` Nilawar, Badal 2023-07-11 6:54 ` [igt-dev] [PATCH i-g-t v3 2/3] tests/xe: validate gt is in c6 on idle Riana Tauro ` (4 subsequent siblings) 5 siblings, 1 reply; 10+ messages in thread From: Riana Tauro @ 2023-07-11 6:54 UTC (permalink / raw) To: igt-dev; +Cc: badal.nilawar This test validates idle residency measured over a time interval is within the tolerance. Patch for gtidle properties https://patchwork.freedesktop.org/series/119262/ v2: - rename file to xe_pm_residency - add kernel patch in commit message (Kamil) v3: - add igt test description (Anshuman) v4: - fix cosmetic review comments - replace assert with igt_assert_f (Anshuman) v5: - use tile sysfs library functions Signed-off-by: Riana Tauro <riana.tauro@intel.com> Reviewed-by: Anshuman Gupta <anshuman.gupta@intel.com> --- tests/meson.build | 1 + tests/xe/xe_pm_residency.c | 113 +++++++++++++++++++++++++++++++++++++ 2 files changed, 114 insertions(+) create mode 100644 tests/xe/xe_pm_residency.c diff --git a/tests/meson.build b/tests/meson.build index 0567449bf..995bc2e28 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -266,6 +266,7 @@ xe_progs = [ 'xe_module_load', 'xe_noexec_ping_pong', 'xe_pm', + 'xe_pm_residency', 'xe_prime_self_import', 'xe_query', 'xe_sysfs_tile', diff --git a/tests/xe/xe_pm_residency.c b/tests/xe/xe_pm_residency.c new file mode 100644 index 000000000..5e55700bf --- /dev/null +++ b/tests/xe/xe_pm_residency.c @@ -0,0 +1,113 @@ +// SPDX-License-Identifier: MIT +/* + * Copyright © 2023 Intel Corporation + */ + +/** + * TEST: Test gtidle properties + * Category: Software building block + * Sub-category: Power Management + * Functionality: GT C States + * Test category: functionality test + */ + +#include "igt.h" +#include "igt_sysfs.h" + +#include "xe/xe_query.h" + +#define SLEEP_DURATION 3000 /* in milliseconds */ + +const double tolerance = 0.1; + +#define assert_within_epsilon(x, ref, tol) \ + igt_assert_f((double)(x) <= (1.0 + (tol)) * (double)(ref) && \ + (double)(x) >= (1.0 - (tol)) * (double)(ref), \ + "'%s' != '%s' (%f not within +%.1f%%/-%.1f%% tolerance of %f)\n",\ + #x, #ref, (double)(x), \ + (tol) * 100.0, (tol) * 100.0, \ + (double)(ref)) + +IGT_TEST_DESCRIPTION("Tests for gtidle properties"); + +static unsigned int measured_usleep(unsigned int usec) +{ + struct timespec ts = { }; + unsigned int slept; + + slept = igt_nsec_elapsed(&ts); + igt_assert(slept == 0); + do { + usleep(usec - slept); + slept = igt_nsec_elapsed(&ts) / 1000; + } while (slept < usec); + + return igt_nsec_elapsed(&ts) / 1000; +} + +static bool in_gt_c6(int fd, int gt) +{ + char gt_c_state[16]; + int gt_fd; + + gt_fd = xe_sysfs_gt_open(fd, gt); + igt_assert(gt_fd >= 0); + igt_assert(igt_sysfs_scanf(gt_fd, "gtidle/idle_status", "%s", gt_c_state) == 1); + close(gt_fd); + + return strcmp(gt_c_state, "gt-c6") == 0; +} + +static unsigned long read_idle_residency(int fd, int gt) +{ + unsigned long residency = 0; + int gt_fd; + + gt_fd = xe_sysfs_gt_open(fd, gt); + igt_assert(gt_fd >= 0); + igt_assert(igt_sysfs_scanf(gt_fd, "gtidle/idle_residency_ms", "%lu", &residency) == 1); + close(gt_fd); + + return residency; +} + +/** + * SUBTEST: idle-residency + * Description: basic residency test to validate idle residency + * measured over a time interval is within the tolerance + * Run type: FULL + */ +static void test_idle_residency(int fd, int gt) +{ + unsigned long elapsed_ms, residency_start, residency_end; + + igt_assert_f(igt_wait(in_gt_c6(fd, gt), 1000, 1), "GT not in C6\n"); + + residency_start = read_idle_residency(fd, gt); + elapsed_ms = measured_usleep(SLEEP_DURATION * 1000) / 1000; + residency_end = read_idle_residency(fd, gt); + + igt_info("Measured %lums of idle residency in %lums\n", + residency_end - residency_start, elapsed_ms); + + assert_within_epsilon(residency_end - residency_start, elapsed_ms, tolerance); +} + +igt_main +{ + int fd, gt; + + igt_fixture { + fd = drm_open_driver(DRIVER_XE); + igt_require(!IS_PONTEVECCHIO(xe_dev_id(fd))); + } + + igt_describe("Validates idle residency measured over a time interval is within the tolerance"); + igt_subtest("idle-residency") + xe_for_each_gt(fd, gt) + test_idle_residency(fd, gt); + + igt_fixture { + close(fd); + } +} -- 2.40.0 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v3 1/3] tests/xe: Add basic idle residency test 2023-07-11 6:54 ` [igt-dev] [PATCH i-g-t v3 1/3] tests/xe: Add basic idle residency test Riana Tauro @ 2023-07-14 5:08 ` Nilawar, Badal 0 siblings, 0 replies; 10+ messages in thread From: Nilawar, Badal @ 2023-07-14 5:08 UTC (permalink / raw) To: Riana Tauro, igt-dev Hi Riana, On 11-07-2023 12:24, Riana Tauro wrote: > This test validates idle residency measured over a time interval > is within the tolerance. > > Patch for gtidle properties > https://patchwork.freedesktop.org/series/119262/ > > v2: > - rename file to xe_pm_residency > - add kernel patch in commit message (Kamil) > > v3: > - add igt test description (Anshuman) > > v4: > - fix cosmetic review comments > - replace assert with igt_assert_f (Anshuman) > > v5: > - use tile sysfs library functions > > Signed-off-by: Riana Tauro <riana.tauro@intel.com> > Reviewed-by: Anshuman Gupta <anshuman.gupta@intel.com> > --- > tests/meson.build | 1 + > tests/xe/xe_pm_residency.c | 113 +++++++++++++++++++++++++++++++++++++ > 2 files changed, 114 insertions(+) > create mode 100644 tests/xe/xe_pm_residency.How about using filename xe_pm_idle_residency.c? > > diff --git a/tests/meson.build b/tests/meson.build > index 0567449bf..995bc2e28 100644 > --- a/tests/meson.build > +++ b/tests/meson.build > @@ -266,6 +266,7 @@ xe_progs = [ > 'xe_module_load', > 'xe_noexec_ping_pong', > 'xe_pm', > + 'xe_pm_residency', > 'xe_prime_self_import', > 'xe_query', > 'xe_sysfs_tile', > diff --git a/tests/xe/xe_pm_residency.c b/tests/xe/xe_pm_residency.c > new file mode 100644 > index 000000000..5e55700bf > --- /dev/null > +++ b/tests/xe/xe_pm_residency.c > @@ -0,0 +1,113 @@ > +// SPDX-License-Identifier: MIT > +/* > + * Copyright © 2023 Intel Corporation > + */ > + > +/** > + * TEST: Test gtidle properties s/gtidle/gt idle? > + * Category: Software building block > + * Sub-category: Power Management > + * Functionality: GT C States > + * Test category: functionality test > + */ > + > +#include "igt.h" > +#include "igt_sysfs.h" > + > +#include "xe/xe_query.h" > + > +#define SLEEP_DURATION 3000 /* in milliseconds */ > + > +const double tolerance = 0.1; > + > +#define assert_within_epsilon(x, ref, tol) \ > + igt_assert_f((double)(x) <= (1.0 + (tol)) * (double)(ref) && \ > + (double)(x) >= (1.0 - (tol)) * (double)(ref), \ > + "'%s' != '%s' (%f not within +%.1f%%/-%.1f%% tolerance of %f)\n",\ > + #x, #ref, (double)(x), \ > + (tol) * 100.0, (tol) * 100.0, \ > + (double)(ref)) > + > +IGT_TEST_DESCRIPTION("Tests for gtidle properties"); s/gtidle/gt idle? > + > +static unsigned int measured_usleep(unsigned int usec) > +{ > + struct timespec ts = { }; > + unsigned int slept; > + > + slept = igt_nsec_elapsed(&ts); > + igt_assert(slept == 0); > + do { > + usleep(usec - slept); > + slept = igt_nsec_elapsed(&ts) / 1000; > + } while (slept < usec); > + > + return igt_nsec_elapsed(&ts) / 1000; > +} > + > +static bool in_gt_c6(int fd, int gt) s/in_gt_c6/is_gt_in_c6? > +{ > + char gt_c_state[16]; > + int gt_fd; > + > + gt_fd = xe_sysfs_gt_open(fd, gt); > + igt_assert(gt_fd >= 0); > + igt_assert(igt_sysfs_scanf(gt_fd, "gtidle/idle_status", "%s", gt_c_state) == 1); > + close(gt_fd); > + > + return strcmp(gt_c_state, "gt-c6") == 0; > +} > + > +static unsigned long read_idle_residency(int fd, int gt) > +{ > + unsigned long residency = 0; > + int gt_fd; > + > + gt_fd = xe_sysfs_gt_open(fd, gt); > + igt_assert(gt_fd >= 0); > + igt_assert(igt_sysfs_scanf(gt_fd, "gtidle/idle_residency_ms", "%lu", &residency) == 1); > + close(gt_fd); > + > + return residency; > +} > + > +/** > + * SUBTEST: idle-residency > + * Description: basic residency test to validate idle residency > + * measured over a time interval is within the tolerance > + * Run type: FULL > + */ > +static void test_idle_residency(int fd, int gt) > +{ > + unsigned long elapsed_ms, residency_start, residency_end; > + > + igt_assert_f(igt_wait(in_gt_c6(fd, gt), 1000, 1), "GT not in C6\n"); > + > + residency_start = read_idle_residency(fd, gt); > + elapsed_ms = measured_usleep(SLEEP_DURATION * 1000) / 1000; > + residency_end = read_idle_residency(fd, gt); > + > + igt_info("Measured %lums of idle residency in %lums\n", > + residency_end - residency_start, elapsed_ms); > + > + assert_within_epsilon(residency_end - residency_start, elapsed_ms, tolerance); > +} > + > +igt_main > +{ > + int fd, gt; > + > + igt_fixture { > + fd = drm_open_driver(DRIVER_XE); > + igt_require(!IS_PONTEVECCHIO(xe_dev_id(fd))); > + } > + > + igt_describe("Validates idle residency measured over a time interval is within the tolerance"); s/Validates/Validate? Regards, Badal > + igt_subtest("idle-residency") > + xe_for_each_gt(fd, gt) > + test_idle_residency(fd, gt); > + > + igt_fixture { > + close(fd); > + } > +} ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] [PATCH i-g-t v3 2/3] tests/xe: validate gt is in c6 on idle 2023-07-11 6:54 [igt-dev] [PATCH i-g-t v3 0/3] Test for gtidle properties Riana Tauro 2023-07-11 6:54 ` [igt-dev] [PATCH i-g-t v3 1/3] tests/xe: Add basic idle residency test Riana Tauro @ 2023-07-11 6:54 ` Riana Tauro 2023-07-14 5:20 ` Nilawar, Badal 2023-07-14 6:41 ` Kamil Konieczny 2023-07-11 6:54 ` [igt-dev] [PATCH i-g-t v3 3/3] xe-fast-feedback.testlist: Add gt-c6-on-idle to BAT Riana Tauro ` (3 subsequent siblings) 5 siblings, 2 replies; 10+ messages in thread From: Riana Tauro @ 2023-07-11 6:54 UTC (permalink / raw) To: igt-dev; +Cc: badal.nilawar Add a test that validates if gt is in c6 on idle. v2: - fix cosmetic review comments (Kamil) - replace assert with igt_assert_f - fix cosmetic review comments (Anshuman) v3: - use tile sysfs library functions Signed-off-by: Riana Tauro <riana.tauro@intel.com> Reviewed-by: Anshuman Gupta <anshuman.gupta@intel.com> --- tests/xe/xe_pm_residency.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tests/xe/xe_pm_residency.c b/tests/xe/xe_pm_residency.c index 5e55700bf..e053affde 100644 --- a/tests/xe/xe_pm_residency.c +++ b/tests/xe/xe_pm_residency.c @@ -45,6 +45,11 @@ static unsigned int measured_usleep(unsigned int usec) return igt_nsec_elapsed(&ts) / 1000; } +/** + * SUBTEST: gt-c6-on-idle + * Description: validate gt c6 state on idle + * Run type: BAT + */ static bool in_gt_c6(int fd, int gt) { char gt_c_state[16]; @@ -102,6 +107,11 @@ igt_main igt_require(!IS_PONTEVECCHIO(xe_dev_id(fd))); } + igt_describe("validate gt c6 on idle"); + igt_subtest("gt-c6-on-idle") + xe_for_each_gt(fd, gt) + igt_assert_f(igt_wait(in_gt_c6(fd, gt), 1000, 1), "GT not in C6\n"); + igt_describe("Validates idle residency measured over a time interval is within the tolerance"); igt_subtest("idle-residency") xe_for_each_gt(fd, gt) -- 2.40.0 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v3 2/3] tests/xe: validate gt is in c6 on idle 2023-07-11 6:54 ` [igt-dev] [PATCH i-g-t v3 2/3] tests/xe: validate gt is in c6 on idle Riana Tauro @ 2023-07-14 5:20 ` Nilawar, Badal 2023-07-14 6:41 ` Kamil Konieczny 1 sibling, 0 replies; 10+ messages in thread From: Nilawar, Badal @ 2023-07-14 5:20 UTC (permalink / raw) To: Riana Tauro, igt-dev Hi Riana, On 11-07-2023 12:24, Riana Tauro wrote: > Add a test that validates if gt is in c6 on idle. > > v2: > - fix cosmetic review comments (Kamil) > - replace assert with igt_assert_f > - fix cosmetic review comments (Anshuman) > > v3: > - use tile sysfs library functions > > Signed-off-by: Riana Tauro <riana.tauro@intel.com> > Reviewed-by: Anshuman Gupta <anshuman.gupta@intel.com> > --- > tests/xe/xe_pm_residency.c | 10 ++++++++++ > 1 file changed, 10 insertions(+) > > diff --git a/tests/xe/xe_pm_residency.c b/tests/xe/xe_pm_residency.c > index 5e55700bf..e053affde 100644 > --- a/tests/xe/xe_pm_residency.c > +++ b/tests/xe/xe_pm_residency.c > @@ -45,6 +45,11 @@ static unsigned int measured_usleep(unsigned int usec) > return igt_nsec_elapsed(&ts) / 1000; > } > > +/** > + * SUBTEST: gt-c6-on-idle > + * Description: validate gt c6 state on idle s/validate/Validate > + * Run type: BAT > + */ > static bool in_gt_c6(int fd, int gt) > { > char gt_c_state[16]; > @@ -102,6 +107,11 @@ igt_main > igt_require(!IS_PONTEVECCHIO(xe_dev_id(fd))); > } > > + igt_describe("validate gt c6 on idle"); s/validate/Validate Regards, Badal > + igt_subtest("gt-c6-on-idle") > + xe_for_each_gt(fd, gt) > + igt_assert_f(igt_wait(in_gt_c6(fd, gt), 1000, 1), "GT not in C6\n"); > + > igt_describe("Validates idle residency measured over a time interval is within the tolerance"); > igt_subtest("idle-residency") > xe_for_each_gt(fd, gt) ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v3 2/3] tests/xe: validate gt is in c6 on idle 2023-07-11 6:54 ` [igt-dev] [PATCH i-g-t v3 2/3] tests/xe: validate gt is in c6 on idle Riana Tauro 2023-07-14 5:20 ` Nilawar, Badal @ 2023-07-14 6:41 ` Kamil Konieczny 1 sibling, 0 replies; 10+ messages in thread From: Kamil Konieczny @ 2023-07-14 6:41 UTC (permalink / raw) To: igt-dev, anshuman.gupta, ashutosh.dixit, vinay.belgaumkar, badal.nilawar Hi Riana, On 2023-07-11 at 12:24:23 +0530, Riana Tauro wrote: > Add a test that validates if gt is in c6 on idle. > > v2: > - fix cosmetic review comments (Kamil) > - replace assert with igt_assert_f > - fix cosmetic review comments (Anshuman) > > v3: > - use tile sysfs library functions > > Signed-off-by: Riana Tauro <riana.tauro@intel.com> > Reviewed-by: Anshuman Gupta <anshuman.gupta@intel.com> > --- > tests/xe/xe_pm_residency.c | 10 ++++++++++ > 1 file changed, 10 insertions(+) > > diff --git a/tests/xe/xe_pm_residency.c b/tests/xe/xe_pm_residency.c > index 5e55700bf..e053affde 100644 > --- a/tests/xe/xe_pm_residency.c > +++ b/tests/xe/xe_pm_residency.c > @@ -45,6 +45,11 @@ static unsigned int measured_usleep(unsigned int usec) > return igt_nsec_elapsed(&ts) / 1000; > } > > +/** > + * SUBTEST: gt-c6-on-idle > + * Description: validate gt c6 state on idle -------------------^------- ^^ Nilawar wrote about using "Validate", maybe it is worth also s/gt c6/GT C6/ as you later write "GT not in C6"? > + * Run type: BAT > + */ > static bool in_gt_c6(int fd, int gt) > { > char gt_c_state[16]; > @@ -102,6 +107,11 @@ igt_main > igt_require(!IS_PONTEVECCHIO(xe_dev_id(fd))); > } > > + igt_describe("validate gt c6 on idle"); --------------------- ^ ------ ^^ s/v/V/ and s/gt c6/GT C6/ Regards, Kamil > + igt_subtest("gt-c6-on-idle") > + xe_for_each_gt(fd, gt) > + igt_assert_f(igt_wait(in_gt_c6(fd, gt), 1000, 1), "GT not in C6\n"); > + > igt_describe("Validates idle residency measured over a time interval is within the tolerance"); > igt_subtest("idle-residency") > xe_for_each_gt(fd, gt) > -- > 2.40.0 > ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] [PATCH i-g-t v3 3/3] xe-fast-feedback.testlist: Add gt-c6-on-idle to BAT 2023-07-11 6:54 [igt-dev] [PATCH i-g-t v3 0/3] Test for gtidle properties Riana Tauro 2023-07-11 6:54 ` [igt-dev] [PATCH i-g-t v3 1/3] tests/xe: Add basic idle residency test Riana Tauro 2023-07-11 6:54 ` [igt-dev] [PATCH i-g-t v3 2/3] tests/xe: validate gt is in c6 on idle Riana Tauro @ 2023-07-11 6:54 ` Riana Tauro 2023-07-11 7:37 ` [igt-dev] ✓ Fi.CI.BAT: success for Test for gtidle properties (rev4) Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 10+ messages in thread From: Riana Tauro @ 2023-07-11 6:54 UTC (permalink / raw) To: igt-dev; +Cc: badal.nilawar Add the new test gt-c6-on-idle to BAT. This test validates if gt is in c6 on idle. Signed-off-by: Riana Tauro <riana.tauro@intel.com> --- tests/intel-ci/xe-fast-feedback.testlist | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist index 1e8f181c2..ad8befc86 100644 --- a/tests/intel-ci/xe-fast-feedback.testlist +++ b/tests/intel-ci/xe-fast-feedback.testlist @@ -189,6 +189,7 @@ igt@xe_mmap@vram igt@xe_mmap@vram-system igt@xe_mmio@mmio-timestamp igt@xe_mmio@mmio-invalid +igt@xe_pm_residency@gt-c6-on-idle igt@xe_prime_self_import@basic-with_one_bo igt@xe_prime_self_import@basic-with_fd_dup #igt@xe_prime_self_import@export-vs-gem_close-race -- 2.40.0 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Test for gtidle properties (rev4) 2023-07-11 6:54 [igt-dev] [PATCH i-g-t v3 0/3] Test for gtidle properties Riana Tauro ` (2 preceding siblings ...) 2023-07-11 6:54 ` [igt-dev] [PATCH i-g-t v3 3/3] xe-fast-feedback.testlist: Add gt-c6-on-idle to BAT Riana Tauro @ 2023-07-11 7:37 ` Patchwork 2023-07-11 7:49 ` [igt-dev] ○ CI.xeBAT: info " Patchwork 2023-07-11 8:50 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 5 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2023-07-11 7:37 UTC (permalink / raw) To: Riana Tauro; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 8413 bytes --] == Series Details == Series: Test for gtidle properties (rev4) URL : https://patchwork.freedesktop.org/series/119965/ State : success == Summary == CI Bug Log - changes from IGT_7379 -> IGTPW_9380 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/index.html Participating hosts (41 -> 40) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_9380 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_auth@basic-auth: - bat-adlp-11: NOTRUN -> [ABORT][1] ([i915#8011]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/bat-adlp-11/igt@core_auth@basic-auth.html * igt@gem_exec_parallel@engines@userptr: - bat-mtlp-8: [PASS][2] -> [FAIL][3] ([i915#8672]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/bat-mtlp-8/igt@gem_exec_parallel@engines@userptr.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/bat-mtlp-8/igt@gem_exec_parallel@engines@userptr.html * igt@i915_pm_rpm@basic-pci-d3-state: - fi-tgl-1115g4: [PASS][4] -> [FAIL][5] ([i915#7940]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/fi-tgl-1115g4/igt@i915_pm_rpm@basic-pci-d3-state.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/fi-tgl-1115g4/igt@i915_pm_rpm@basic-pci-d3-state.html - bat-adlp-9: [PASS][6] -> [FAIL][7] ([i915#7940]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/bat-adlp-9/igt@i915_pm_rpm@basic-pci-d3-state.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/bat-adlp-9/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@i915_pm_rpm@basic-rte: - bat-adlp-9: [PASS][8] -> [ABORT][9] ([i915#7977] / [i915#8668]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/bat-adlp-9/igt@i915_pm_rpm@basic-rte.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/bat-adlp-9/igt@i915_pm_rpm@basic-rte.html * igt@i915_selftest@live@requests: - bat-rpls-2: [PASS][10] -> [ABORT][11] ([i915#7913]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/bat-rpls-2/igt@i915_selftest@live@requests.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/bat-rpls-2/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@slpc: - bat-mtlp-8: NOTRUN -> [DMESG-WARN][12] ([i915#6367]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/bat-mtlp-8/igt@i915_selftest@live@slpc.html - bat-rpls-1: NOTRUN -> [DMESG-WARN][13] ([i915#6367]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/bat-rpls-1/igt@i915_selftest@live@slpc.html * igt@i915_suspend@basic-s3-without-i915: - bat-mtlp-8: NOTRUN -> [SKIP][14] ([i915#6645]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/bat-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html - bat-rpls-1: NOTRUN -> [ABORT][15] ([i915#6687] / [i915#7978] / [i915#8668]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/bat-rpls-1/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - bat-mtlp-8: NOTRUN -> [SKIP][16] ([i915#7828]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/bat-mtlp-8/igt@kms_chamelium_hpd@common-hpd-after-suspend.html #### Possible fixes #### * igt@i915_pm_rpm@basic-pci-d3-state: - fi-skl-guc: [FAIL][17] ([i915#7940]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/fi-skl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/fi-skl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@i915_pm_rpm@module-reload: - fi-tgl-1115g4: [FAIL][19] ([i915#7940]) -> [PASS][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/fi-tgl-1115g4/igt@i915_pm_rpm@module-reload.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/fi-tgl-1115g4/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live@gt_mocs: - bat-mtlp-8: [DMESG-FAIL][21] ([i915#7059]) -> [PASS][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html * igt@i915_selftest@live@requests: - bat-rpls-1: [ABORT][23] ([i915#7920]) -> [PASS][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/bat-rpls-1/igt@i915_selftest@live@requests.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/bat-rpls-1/igt@i915_selftest@live@requests.html - bat-mtlp-6: [DMESG-FAIL][25] ([i915#8497]) -> [PASS][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/bat-mtlp-6/igt@i915_selftest@live@requests.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/bat-mtlp-6/igt@i915_selftest@live@requests.html #### Warnings #### * igt@i915_module_load@load: - bat-adlp-11: [ABORT][27] ([i915#4423]) -> [DMESG-WARN][28] ([i915#4423]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/bat-adlp-11/igt@i915_module_load@load.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/bat-adlp-11/igt@i915_module_load@load.html * igt@i915_pm_rpm@basic-pci-d3-state: - fi-cfl-guc: [FAIL][29] ([i915#7691]) -> [FAIL][30] ([i915#7940]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/fi-cfl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/fi-cfl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@i915_selftest@live@requests: - bat-mtlp-8: [ABORT][31] ([i915#7982]) -> [DMESG-FAIL][32] ([i915#8497]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/bat-mtlp-8/igt@i915_selftest@live@requests.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/bat-mtlp-8/igt@i915_selftest@live@requests.html * igt@kms_psr@sprite_plane_onoff: - bat-rplp-1: [SKIP][33] ([i915#1072]) -> [ABORT][34] ([i915#8442] / [i915#8668] / [i915#8712]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/bat-rplp-1/igt@kms_psr@sprite_plane_onoff.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/bat-rplp-1/igt@kms_psr@sprite_plane_onoff.html [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687 [i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059 [i915#7691]: https://gitlab.freedesktop.org/drm/intel/issues/7691 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7920]: https://gitlab.freedesktop.org/drm/intel/issues/7920 [i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940 [i915#7977]: https://gitlab.freedesktop.org/drm/intel/issues/7977 [i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978 [i915#7982]: https://gitlab.freedesktop.org/drm/intel/issues/7982 [i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011 [i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442 [i915#8497]: https://gitlab.freedesktop.org/drm/intel/issues/8497 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8672]: https://gitlab.freedesktop.org/drm/intel/issues/8672 [i915#8712]: https://gitlab.freedesktop.org/drm/intel/issues/8712 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7379 -> IGTPW_9380 CI-20190529: 20190529 CI_DRM_13366: e547f03913976a1adcb823ed64d803284fdfa6a2 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9380: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/index.html IGT_7379: e927b137f46ab9955bcb39d88746a0b2f8b9cee1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@xe_pm_residency@gt-c6-on-idle +igt@xe_pm_residency@idle-residency == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/index.html [-- Attachment #2: Type: text/html, Size: 10078 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ○ CI.xeBAT: info for Test for gtidle properties (rev4) 2023-07-11 6:54 [igt-dev] [PATCH i-g-t v3 0/3] Test for gtidle properties Riana Tauro ` (3 preceding siblings ...) 2023-07-11 7:37 ` [igt-dev] ✓ Fi.CI.BAT: success for Test for gtidle properties (rev4) Patchwork @ 2023-07-11 7:49 ` Patchwork 2023-07-11 8:50 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 5 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2023-07-11 7:49 UTC (permalink / raw) To: Riana Tauro; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 339 bytes --] == Series Details == Series: Test for gtidle properties (rev4) URL : https://patchwork.freedesktop.org/series/119965/ State : info == Summary == Participating hosts: "bat-pvc-2n""bat-atsm-2n""bat-dg2-oem2n""bat-adlp-7n"Missing hosts results[0]: Results: [IGTPW_9380](https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9380/index.html) [-- Attachment #2: Type: text/html, Size: 831 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for Test for gtidle properties (rev4) 2023-07-11 6:54 [igt-dev] [PATCH i-g-t v3 0/3] Test for gtidle properties Riana Tauro ` (4 preceding siblings ...) 2023-07-11 7:49 ` [igt-dev] ○ CI.xeBAT: info " Patchwork @ 2023-07-11 8:50 ` Patchwork 5 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2023-07-11 8:50 UTC (permalink / raw) To: Riana Tauro; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 72978 bytes --] == Series Details == Series: Test for gtidle properties (rev4) URL : https://patchwork.freedesktop.org/series/119965/ State : success == Summary == CI Bug Log - changes from IGT_7379_full -> IGTPW_9380_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/index.html Participating hosts (11 -> 9) ------------------------------ Missing (2): shard-rkl0 shard-tglu0 Known issues ------------ Here are the changes found in IGTPW_9380_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@drm_fdinfo@all-busy-idle-check-all: - shard-dg2: NOTRUN -> [SKIP][1] ([i915#8414]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-11/igt@drm_fdinfo@all-busy-idle-check-all.html * igt@drm_fdinfo@most-busy-check-all@vcs0: - shard-mtlp: NOTRUN -> [SKIP][2] ([i915#8414]) +5 similar issues [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-1/igt@drm_fdinfo@most-busy-check-all@vcs0.html * igt@gem_create@create-ext-cpu-access-big: - shard-mtlp: NOTRUN -> [SKIP][3] ([i915#6335]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-5/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglu: [PASS][4] -> [FAIL][5] ([i915#6268]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-tglu-5/igt@gem_ctx_exec@basic-nohangcheck.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-tglu-5/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-dg2: NOTRUN -> [SKIP][6] ([i915#8555]) +1 similar issue [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_persistence@processes: - shard-snb: NOTRUN -> [SKIP][7] ([fdo#109271] / [i915#1099]) +3 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-snb1/igt@gem_ctx_persistence@processes.html * igt@gem_eio@hibernate: - shard-rkl: NOTRUN -> [ABORT][8] ([i915#7975] / [i915#8213]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-rkl-6/igt@gem_eio@hibernate.html * igt@gem_eio@unwedge-stress: - shard-snb: NOTRUN -> [FAIL][9] ([i915#3354]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-snb5/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-semaphore: - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#4812]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-8/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [PASS][11] -> [FAIL][12] ([i915#2842]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-apl1/igt@gem_exec_fair@basic-none-solo@rcs0.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-apl6/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: [PASS][13] -> [FAIL][14] ([i915#2842]) +1 similar issue [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-rkl-6/igt@gem_exec_fair@basic-none@bcs0.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-rkl-6/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_fair@basic-pace-share: - shard-dg2: NOTRUN -> [SKIP][15] ([i915#3539] / [i915#4852]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-11/igt@gem_exec_fair@basic-pace-share.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglu: [PASS][16] -> [FAIL][17] ([i915#2842]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-tglu-8/igt@gem_exec_fair@basic-pace-share@rcs0.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-tglu-4/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-glk: [PASS][18] -> [FAIL][19] ([i915#2842]) +2 similar issues [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-glk4/igt@gem_exec_fair@basic-pace@rcs0.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-glk3/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_reloc@basic-wc-gtt: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#3281]) +1 similar issue [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-6/igt@gem_exec_reloc@basic-wc-gtt.html - shard-rkl: NOTRUN -> [SKIP][21] ([i915#3281]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-rkl-2/igt@gem_exec_reloc@basic-wc-gtt.html * igt@gem_exec_reloc@basic-write-wc: - shard-mtlp: NOTRUN -> [SKIP][22] ([i915#3281]) +1 similar issue [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-2/igt@gem_exec_reloc@basic-write-wc.html * igt@gem_exec_schedule@deep@vecs0: - shard-mtlp: [PASS][23] -> [FAIL][24] ([i915#8545]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-mtlp-8/igt@gem_exec_schedule@deep@vecs0.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-6/igt@gem_exec_schedule@deep@vecs0.html * igt@gem_exec_schedule@preemptive-hang@vcs0: - shard-mtlp: [PASS][25] -> [FAIL][26] ([i915#7327]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-mtlp-7/igt@gem_exec_schedule@preemptive-hang@vcs0.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-5/igt@gem_exec_schedule@preemptive-hang@vcs0.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-tglu: [PASS][27] -> [ABORT][28] ([i915#7975] / [i915#8213]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-tglu-8/igt@gem_exec_suspend@basic-s4-devices@smem.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@gem_exec_whisper@basic-normal-all: - shard-mtlp: [PASS][29] -> [FAIL][30] ([i915#6363]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-mtlp-1/igt@gem_exec_whisper@basic-normal-all.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-4/igt@gem_exec_whisper@basic-normal-all.html * igt@gem_fence_thrash@bo-write-verify-threaded-none: - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#4860]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-1/igt@gem_fence_thrash@bo-write-verify-threaded-none.html * igt@gem_lmem_swapping@parallel-random: - shard-apl: NOTRUN -> [SKIP][32] ([fdo#109271] / [i915#4613]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-apl7/igt@gem_lmem_swapping@parallel-random.html * igt@gem_lmem_swapping@parallel-random-engines: - shard-rkl: NOTRUN -> [SKIP][33] ([i915#4613]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-engines.html - shard-tglu: NOTRUN -> [SKIP][34] ([i915#4613]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-tglu-6/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [PASS][35] -> [TIMEOUT][36] ([i915#5493]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-dg2-2/igt@gem_lmem_swapping@smem-oom@lmem0.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-7/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify: - shard-mtlp: NOTRUN -> [SKIP][37] ([i915#4613]) +1 similar issue [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-2/igt@gem_lmem_swapping@verify.html * igt@gem_mmap@bad-size: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#4083]) +1 similar issue [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-7/igt@gem_mmap@bad-size.html * igt@gem_mmap_gtt@basic-read-write-distinct: - shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4077]) +1 similar issue [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-4/igt@gem_mmap_gtt@basic-read-write-distinct.html * igt@gem_mmap_gtt@zero-extend: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#4077]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-7/igt@gem_mmap_gtt@zero-extend.html * igt@gem_mmap_wc@bad-size: - shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4083]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-4/igt@gem_mmap_wc@bad-size.html * igt@gem_partial_pwrite_pread@write-display: - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#3282]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-3/igt@gem_partial_pwrite_pread@write-display.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4270]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-6/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#4270]) +1 similar issue [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-5/igt@gem_pxp@protected-raw-src-copy-not-readible.html - shard-rkl: NOTRUN -> [SKIP][45] ([i915#4270]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-rkl-6/igt@gem_pxp@protected-raw-src-copy-not-readible.html - shard-tglu: NOTRUN -> [SKIP][46] ([i915#4270]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-tglu-6/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#8428]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-7/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled-ccs.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#5190]) +5 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-11/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][49] ([i915#4079]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-10/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html - shard-rkl: NOTRUN -> [SKIP][50] ([i915#8411]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-rkl-7/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_softpin@evict-snoop-interruptible: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4885]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-1/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_spin_batch@spin-all-new: - shard-dg2: NOTRUN -> [FAIL][52] ([i915#5889]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-10/igt@gem_spin_batch@spin-all-new.html * igt@gem_userptr_blits@access-control: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#3297]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-2/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@dmabuf-sync: - shard-apl: NOTRUN -> [SKIP][54] ([fdo#109271] / [i915#3323]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-apl3/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_workarounds@suspend-resume: - shard-dg2: [PASS][55] -> [FAIL][56] ([fdo#103375] / [i915#6121]) +1 similar issue [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-dg2-1/igt@gem_workarounds@suspend-resume.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-5/igt@gem_workarounds@suspend-resume.html - shard-rkl: [PASS][57] -> [FAIL][58] ([fdo#103375]) +1 similar issue [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-rkl-6/igt@gem_workarounds@suspend-resume.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-rkl-7/igt@gem_workarounds@suspend-resume.html * igt@gen7_exec_parse@basic-allowed: - shard-mtlp: NOTRUN -> [SKIP][59] ([fdo#109289]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-6/igt@gen7_exec_parse@basic-allowed.html * igt@gen7_exec_parse@cmd-crossing-page: - shard-dg2: NOTRUN -> [SKIP][60] ([fdo#109289]) +1 similar issue [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-8/igt@gen7_exec_parse@cmd-crossing-page.html - shard-rkl: NOTRUN -> [SKIP][61] ([fdo#109289]) +1 similar issue [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-rkl-4/igt@gen7_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [PASS][62] -> [ABORT][63] ([i915#5566]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-glk3/igt@gen9_exec_parse@allowed-single.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-glk3/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#2856]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-5/igt@gen9_exec_parse@cmd-crossing-page.html * igt@i915_pipe_stress@stress-xrgb8888-ytiled: - shard-apl: NOTRUN -> [FAIL][65] ([i915#7036]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-apl6/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html * igt@i915_pm_dc@dc5-psr: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#658]) +2 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-10/igt@i915_pm_dc@dc5-psr.html - shard-rkl: NOTRUN -> [SKIP][67] ([i915#658]) +1 similar issue [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-rkl-4/igt@i915_pm_dc@dc5-psr.html - shard-tglu: NOTRUN -> [SKIP][68] ([i915#658]) +1 similar issue [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-tglu-4/igt@i915_pm_dc@dc5-psr.html * igt@i915_pm_dc@dc9-dpms: - shard-tglu: [PASS][69] -> [SKIP][70] ([i915#4281]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-tglu-10/igt@i915_pm_dc@dc9-dpms.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-tglu-9/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_freq_api@freq-basic-api: - shard-apl: NOTRUN -> [SKIP][71] ([fdo#109271]) +46 similar issues [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-apl1/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-tglu: NOTRUN -> [WARN][72] ([i915#2681]) +3 similar issues [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: [PASS][73] -> [SKIP][74] ([i915#1397]) +1 similar issue [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-dg2-12/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-2/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html * igt@i915_pm_rpm@gem-execbuf-stress@smem0: - shard-tglu: [PASS][75] -> [FAIL][76] ([i915#7940]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-tglu-7/igt@i915_pm_rpm@gem-execbuf-stress@smem0.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-tglu-4/igt@i915_pm_rpm@gem-execbuf-stress@smem0.html * igt@i915_pm_rpm@modeset-non-lpsp: - shard-rkl: [PASS][77] -> [SKIP][78] ([i915#1397]) +1 similar issue [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-rkl-2/igt@i915_pm_rpm@modeset-non-lpsp.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#1397]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-3/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@i915_selftest@live@requests: - shard-mtlp: [PASS][80] -> [DMESG-FAIL][81] ([i915#8497]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-mtlp-2/igt@i915_selftest@live@requests.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-4/igt@i915_selftest@live@requests.html * igt@i915_suspend@basic-s3-without-i915: - shard-tglu: NOTRUN -> [INCOMPLETE][82] ([i915#7443] / [i915#8102]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-tglu-2/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#4212]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-11/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1: - shard-mtlp: [PASS][84] -> [FAIL][85] ([i915#2521]) +1 similar issue [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-mtlp-8/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-2/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-rkl: NOTRUN -> [SKIP][86] ([i915#5286]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html - shard-tglu: NOTRUN -> [SKIP][87] ([fdo#111615] / [i915#5286]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-mtlp: [PASS][88] -> [FAIL][89] ([i915#3743]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][90] ([fdo#111614] / [i915#3638]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-rkl-7/igt@kms_big_fb@linear-8bpp-rotate-270.html - shard-tglu: NOTRUN -> [SKIP][91] ([fdo#111614]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-tglu-2/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][92] ([fdo#111614]) +1 similar issue [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-2/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][93] ([fdo#111614]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-3/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-mtlp: NOTRUN -> [SKIP][94] ([i915#6187]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-8/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#4538] / [i915#5190]) +1 similar issue [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-8/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html - shard-rkl: NOTRUN -> [SKIP][96] ([fdo#110723]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-rkl-4/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html - shard-tglu: NOTRUN -> [SKIP][97] ([fdo#111615]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-tglu-9/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-mtlp: NOTRUN -> [SKIP][98] ([fdo#111615]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_joiner@2x-modeset: - shard-mtlp: NOTRUN -> [SKIP][99] ([i915#2705]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-8/igt@kms_big_joiner@2x-modeset.html * igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#3734] / [i915#5354] / [i915#6095]) +3 similar issues [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-rkl-2/igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_ccs.html * igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_rc_ccs_cc: - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#3886] / [i915#6095]) +1 similar issue [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-6/igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#3689] / [i915#3886] / [i915#5354]) +3 similar issues [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-8/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: - shard-apl: NOTRUN -> [SKIP][103] ([fdo#109271] / [i915#3886]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-apl3/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#3689] / [i915#5354]) +10 similar issues [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-10/igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][105] ([i915#3689] / [i915#5354] / [i915#6095]) +4 similar issues [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-tglu-8/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_ccs.html * igt@kms_ccs@pipe-c-bad-pixel-format-4_tiled_dg2_rc_ccs: - shard-mtlp: NOTRUN -> [SKIP][106] ([i915#6095]) +7 similar issues [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-7/igt@kms_ccs@pipe-c-bad-pixel-format-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-d-bad-aux-stride-yf_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][107] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-tglu-6/igt@kms_ccs@pipe-d-bad-aux-stride-yf_tiled_ccs.html * igt@kms_ccs@pipe-d-random-ccs-data-4_tiled_dg2_rc_ccs: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#5354]) +7 similar issues [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-rkl-2/igt@kms_ccs@pipe-d-random-ccs-data-4_tiled_dg2_rc_ccs.html - shard-tglu: NOTRUN -> [SKIP][109] ([i915#5354] / [i915#6095]) +3 similar issues [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-tglu-8/igt@kms_ccs@pipe-d-random-ccs-data-4_tiled_dg2_rc_ccs.html * igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#4087]) +3 similar issues [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-2/igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2.html * igt@kms_chamelium_color@ctm-0-50: - shard-dg2: NOTRUN -> [SKIP][111] ([fdo#111827]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-7/igt@kms_chamelium_color@ctm-0-50.html - shard-rkl: NOTRUN -> [SKIP][112] ([fdo#111827]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-rkl-7/igt@kms_chamelium_color@ctm-0-50.html - shard-mtlp: NOTRUN -> [SKIP][113] ([fdo#111827]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-2/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k: - shard-tglu: NOTRUN -> [SKIP][114] ([i915#7828]) +2 similar issues [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-tglu-6/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html * igt@kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#7828]) +3 similar issues [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-2/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html - shard-rkl: NOTRUN -> [SKIP][116] ([i915#7828]) +2 similar issues [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-rkl-1/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-mtlp: NOTRUN -> [SKIP][117] ([i915#7828]) +1 similar issue [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-1/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#3299]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-11/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#7118]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-8/igt@kms_content_protection@srm.html - shard-rkl: NOTRUN -> [SKIP][120] ([i915#7118]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-rkl-4/igt@kms_content_protection@srm.html - shard-tglu: NOTRUN -> [SKIP][121] ([i915#6944] / [i915#7116] / [i915#7118]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-tglu-7/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent@pipe-a-dp-2: - shard-dg2: NOTRUN -> [FAIL][122] ([i915#1339]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-12/igt@kms_content_protection@uevent@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-mtlp: NOTRUN -> [SKIP][123] ([i915#3359]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-3/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#3555]) +2 similar issues [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-2/igt@kms_cursor_crc@cursor-sliding-32x10.html - shard-rkl: NOTRUN -> [SKIP][125] ([i915#3555]) +1 similar issue [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-32x10.html - shard-tglu: NOTRUN -> [SKIP][126] ([i915#3555]) +1 similar issue [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-tglu-6/igt@kms_cursor_crc@cursor-sliding-32x10.html - shard-mtlp: NOTRUN -> [SKIP][127] ([i915#8814]) +3 similar issues [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-8/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-suspend@pipe-b-vga-1: - shard-snb: NOTRUN -> [DMESG-WARN][128] ([i915#8841]) +8 similar issues [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-snb5/igt@kms_cursor_crc@cursor-suspend@pipe-b-vga-1.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][129] ([fdo#109274] / [fdo#111767] / [i915#5354]) +1 similar issue [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-10/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html - shard-rkl: NOTRUN -> [SKIP][130] ([fdo#111767] / [fdo#111825]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-rkl-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html - shard-tglu: NOTRUN -> [SKIP][131] ([fdo#109274] / [fdo#111767]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-tglu-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#3546]) +1 similar issue [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-1/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][133] ([i915#4213]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-rkl: NOTRUN -> [SKIP][134] ([fdo#111825]) +4 similar issues [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-rkl-7/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html - shard-tglu: NOTRUN -> [SKIP][135] ([fdo#109274]) +1 similar issue [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-tglu-2/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-snb: NOTRUN -> [SKIP][136] ([fdo#109271] / [fdo#111767]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-snb5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-dg2: NOTRUN -> [SKIP][137] ([fdo#109274] / [i915#5354]) +2 similar issues [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-8/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-apl: [PASS][138] -> [FAIL][139] ([i915#2346]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#4103] / [i915#4213]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-rkl: NOTRUN -> [SKIP][141] ([i915#4103]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-rkl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-tglu: NOTRUN -> [SKIP][142] ([i915#4103]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-tglu-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][143] ([i915#3804]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-tglu-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][144] ([i915#3804]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][145] ([fdo#109274] / [i915#3637]) +1 similar issue [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-tglu-10/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-dg2: NOTRUN -> [SKIP][146] ([fdo#109274]) +2 similar issues [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-10/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#3637]) +1 similar issue [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-6/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1: - shard-mtlp: [PASS][148] -> [DMESG-WARN][149] ([i915#1982]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-mtlp-4/igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-7/igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1: - shard-glk: [PASS][150] -> [FAIL][151] ([i915#79]) +1 similar issue [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-glk9/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1.html [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-glk2/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1.html * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1: - shard-apl: [PASS][152] -> [ABORT][153] ([i915#180]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-apl6/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-apl7/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html * igt@kms_flip@wf_vblank-ts-check-interruptible@c-hdmi-a1: - shard-glk: [PASS][154] -> [FAIL][155] ([i915#2122]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-glk4/igt@kms_flip@wf_vblank-ts-check-interruptible@c-hdmi-a1.html [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-glk6/igt@kms_flip@wf_vblank-ts-check-interruptible@c-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][156] ([i915#2672]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html - shard-tglu: NOTRUN -> [SKIP][157] ([i915#2587] / [i915#2672]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#2672]) +1 similar issue [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#2672]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#8708]) +8 similar issues [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#5354]) +16 similar issues [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#1825]) +10 similar issues [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][163] ([i915#8708]) +1 similar issue [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary: - shard-dg2: [PASS][164] -> [FAIL][165] ([i915#6880]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][166] ([fdo#111825] / [i915#1825]) +9 similar issues [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#3458]) +6 similar issues [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][168] ([fdo#109280]) +9 similar issues [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-render: - shard-rkl: NOTRUN -> [SKIP][169] ([i915#3023]) +4 similar issues [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html * igt@kms_hdr@bpc-switch-dpms: - shard-rkl: NOTRUN -> [SKIP][170] ([i915#3555] / [i915#8228]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-rkl-2/igt@kms_hdr@bpc-switch-dpms.html - shard-tglu: NOTRUN -> [SKIP][171] ([i915#3555] / [i915#8228]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-tglu-8/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#3555] / [i915#8228]) +2 similar issues [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-7/igt@kms_hdr@static-toggle.html - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#8228]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-2/igt@kms_hdr@static-toggle.html * igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c: - shard-tglu: NOTRUN -> [SKIP][174] ([fdo#109289]) +1 similar issue [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-tglu-9/igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][175] ([i915#8292]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-rkl-1/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-c-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#5176]) +7 similar issues [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-c-hdmi-a-2.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#5176]) +1 similar issue [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html * igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][178] ([i915#5176]) +3 similar issues [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-rkl-4/igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][179] ([i915#5235]) +1 similar issue [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-rkl-4/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1: - shard-snb: NOTRUN -> [SKIP][180] ([fdo#109271]) +357 similar issues [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-snb2/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][181] ([i915#5235]) +3 similar issues [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b-edp-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#5235]) +23 similar issues [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_prime@d3hot: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#6524] / [i915#6805]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-2/igt@kms_prime@d3hot.html - shard-rkl: NOTRUN -> [SKIP][184] ([i915#6524]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-rkl-7/igt@kms_prime@d3hot.html - shard-tglu: NOTRUN -> [SKIP][185] ([i915#6524]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-tglu-6/igt@kms_prime@d3hot.html * igt@kms_psr2_su@page_flip-nv12: - shard-apl: NOTRUN -> [SKIP][186] ([fdo#109271] / [i915#658]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-apl1/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@basic: - shard-tglu: NOTRUN -> [SKIP][187] ([fdo#110189]) +5 similar issues [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-tglu-6/igt@kms_psr@basic.html - shard-rkl: NOTRUN -> [SKIP][188] ([i915#1072]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-rkl-4/igt@kms_psr@basic.html * igt@kms_psr@psr2_sprite_plane_move: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#1072]) +2 similar issues [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-6/igt@kms_psr@psr2_sprite_plane_move.html * igt@kms_rotation_crc@primary-rotation-90: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#4235]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-2/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-mtlp: NOTRUN -> [SKIP][191] ([i915#4235]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-2/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-d: - shard-mtlp: NOTRUN -> [SKIP][192] ([i915#5030]) +3 similar issues [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-3/igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-d.html * igt@kms_tiled_display@basic-test-pattern: - shard-tglu: NOTRUN -> [SKIP][193] ([i915#8623]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-tglu-9/igt@kms_tiled_display@basic-test-pattern.html - shard-dg2: NOTRUN -> [SKIP][194] ([i915#8623]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-2/igt@kms_tiled_display@basic-test-pattern.html - shard-rkl: NOTRUN -> [SKIP][195] ([i915#8623]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-rkl-7/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vblank@pipe-c-wait-busy-hang: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#4070] / [i915#6768]) +2 similar issues [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-rkl-4/igt@kms_vblank@pipe-c-wait-busy-hang.html * igt@perf@global-sseu-config-invalid: - shard-mtlp: NOTRUN -> [SKIP][197] ([i915#7387]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-8/igt@perf@global-sseu-config-invalid.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [PASS][198] -> [FAIL][199] ([i915#3089]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-dg2-1/igt@perf@non-zero-reason@0-rcs0.html [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-11/igt@perf@non-zero-reason@0-rcs0.html * igt@perf@oa-exponents@0-rcs0: - shard-glk: [PASS][200] -> [ABORT][201] ([i915#5213] / [i915#7941]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-glk2/igt@perf@oa-exponents@0-rcs0.html [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-glk9/igt@perf@oa-exponents@0-rcs0.html * igt@perf_pmu@busy-double-start@vcs1: - shard-mtlp: [PASS][202] -> [FAIL][203] ([i915#4349]) +2 similar issues [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-mtlp-7/igt@perf_pmu@busy-double-start@vcs1.html [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-1/igt@perf_pmu@busy-double-start@vcs1.html * igt@perf_pmu@busy-idle@ccs3: - shard-dg2: NOTRUN -> [FAIL][204] ([i915#4349]) +2 similar issues [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-10/igt@perf_pmu@busy-idle@ccs3.html * igt@perf_pmu@faulting-read@gtt: - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#8440]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-8/igt@perf_pmu@faulting-read@gtt.html * igt@perf_pmu@rc6-all-gts: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#8516]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-6/igt@perf_pmu@rc6-all-gts.html - shard-rkl: NOTRUN -> [SKIP][207] ([i915#8516]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-rkl-2/igt@perf_pmu@rc6-all-gts.html - shard-tglu: NOTRUN -> [SKIP][208] ([i915#8516]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-tglu-10/igt@perf_pmu@rc6-all-gts.html * igt@sysfs_heartbeat_interval@mixed@ccs0: - shard-mtlp: [PASS][209] -> [DMESG-WARN][210] ([i915#8552]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-mtlp-5/igt@sysfs_heartbeat_interval@mixed@ccs0.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-8/igt@sysfs_heartbeat_interval@mixed@ccs0.html * igt@sysfs_heartbeat_interval@mixed@vecs0: - shard-mtlp: [PASS][211] -> [ABORT][212] ([i915#8552]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-mtlp-5/igt@sysfs_heartbeat_interval@mixed@vecs0.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-8/igt@sysfs_heartbeat_interval@mixed@vecs0.html * igt@v3d/v3d_get_param@base-params: - shard-rkl: NOTRUN -> [SKIP][213] ([fdo#109315]) +2 similar issues [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-rkl-4/igt@v3d/v3d_get_param@base-params.html * igt@v3d/v3d_perfmon@create-perfmon-0: - shard-mtlp: NOTRUN -> [SKIP][214] ([i915#2575]) +4 similar issues [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-4/igt@v3d/v3d_perfmon@create-perfmon-0.html * igt@v3d/v3d_submit_cl@single-out-sync: - shard-tglu: NOTRUN -> [SKIP][215] ([fdo#109315] / [i915#2575]) +2 similar issues [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-tglu-8/igt@v3d/v3d_submit_cl@single-out-sync.html * igt@v3d/v3d_submit_csd@job-perfmon: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#2575]) +4 similar issues [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-8/igt@v3d/v3d_submit_csd@job-perfmon.html * igt@vc4/vc4_perfmon@create-perfmon-0: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#7711]) +2 similar issues [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-7/igt@vc4/vc4_perfmon@create-perfmon-0.html - shard-rkl: NOTRUN -> [SKIP][218] ([i915#7711]) +1 similar issue [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-rkl-6/igt@vc4/vc4_perfmon@create-perfmon-0.html * igt@vc4/vc4_purgeable_bo@access-purged-bo-mem: - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#7711]) +1 similar issue [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-7/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html * igt@vc4/vc4_purgeable_bo@mark-unpurgeable-purged: - shard-tglu: NOTRUN -> [SKIP][220] ([i915#2575]) +1 similar issue [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-tglu-10/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-purged.html #### Possible fixes #### * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [FAIL][221] ([i915#7742]) -> [PASS][222] [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-rkl-1/igt@drm_fdinfo@most-busy-check-all@rcs0.html [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@gem_eio@kms: - shard-snb: [INCOMPLETE][223] -> [PASS][224] [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-snb6/igt@gem_eio@kms.html [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-snb2/igt@gem_eio@kms.html * igt@gem_exec_balancer@full-pulse: - shard-dg2: [FAIL][225] ([i915#6032]) -> [PASS][226] [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-dg2-5/igt@gem_exec_balancer@full-pulse.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-7/igt@gem_exec_balancer@full-pulse.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][227] ([i915#2842]) -> [PASS][228] [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-rkl: [FAIL][229] ([i915#2842]) -> [PASS][230] +2 similar issues [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-rkl-6/igt@gem_exec_fair@basic-throttle@rcs0.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-rkl-7/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_whisper@basic-fds-all: - shard-mtlp: [FAIL][231] ([i915#6363]) -> [PASS][232] +2 similar issues [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-mtlp-5/igt@gem_exec_whisper@basic-fds-all.html [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-6/igt@gem_exec_whisper@basic-fds-all.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [ABORT][233] ([i915#5566]) -> [PASS][234] [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-apl7/igt@gen9_exec_parse@allowed-single.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-apl1/igt@gen9_exec_parse@allowed-single.html * igt@i915_hangman@engine-engine-error@vcs0: - shard-mtlp: [FAIL][235] ([i915#7069]) -> [PASS][236] +1 similar issue [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-mtlp-7/igt@i915_hangman@engine-engine-error@vcs0.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-6/igt@i915_hangman@engine-engine-error@vcs0.html * igt@i915_pm_rpm@basic-pci-d3-state: - {shard-dg1}: [FAIL][237] ([i915#7691]) -> [PASS][238] [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-dg1-13/igt@i915_pm_rpm@basic-pci-d3-state.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg1-19/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@i915_pm_rpm@cursor-dpms: - shard-tglu: [FAIL][239] ([i915#7940]) -> [PASS][240] +2 similar issues [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-tglu-3/igt@i915_pm_rpm@cursor-dpms.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-tglu-2/igt@i915_pm_rpm@cursor-dpms.html - {shard-dg1}: [FAIL][241] ([i915#7940]) -> [PASS][242] [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-dg1-16/igt@i915_pm_rpm@cursor-dpms.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg1-14/igt@i915_pm_rpm@cursor-dpms.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: [SKIP][243] ([i915#1397]) -> [PASS][244] +2 similar issues [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-dg2-12/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-11/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-rkl: [SKIP][245] ([i915#1397]) -> [PASS][246] +2 similar issues [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-rkl-6/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-mtlp: [FAIL][247] ([i915#3743]) -> [PASS][248] [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: [FAIL][249] ([i915#5138]) -> [PASS][250] [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [FAIL][251] ([i915#2346]) -> [PASS][252] [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a2: - shard-glk: [FAIL][253] ([i915#79]) -> [PASS][254] [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-glk3/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a2.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-glk3/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a2.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt: - shard-dg2: [FAIL][255] ([i915#6880]) -> [PASS][256] [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-dg2-12/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_sysfs_edid_timing: - shard-dg2: [FAIL][257] ([IGT#2]) -> [PASS][258] [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-dg2-6/igt@kms_sysfs_edid_timing.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-7/igt@kms_sysfs_edid_timing.html - {shard-dg1}: [FAIL][259] ([IGT#2] / [i915#6493]) -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-dg1-17/igt@kms_sysfs_edid_timing.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg1-18/igt@kms_sysfs_edid_timing.html * igt@perf_pmu@busy-double-start@rcs0: - shard-snb: [ABORT][261] ([i915#7461]) -> [PASS][262] [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-snb7/igt@perf_pmu@busy-double-start@rcs0.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-snb2/igt@perf_pmu@busy-double-start@rcs0.html * igt@perf_pmu@most-busy-idle-check-all@rcs0: - shard-dg2: [FAIL][263] ([i915#5234]) -> [PASS][264] [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-dg2-1/igt@perf_pmu@most-busy-idle-check-all@rcs0.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-11/igt@perf_pmu@most-busy-idle-check-all@rcs0.html - shard-mtlp: [FAIL][265] ([i915#5234]) -> [PASS][266] [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-mtlp-7/igt@perf_pmu@most-busy-idle-check-all@rcs0.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-3/igt@perf_pmu@most-busy-idle-check-all@rcs0.html * {igt@perf_pmu@rc6@runtime-pm-long-gt1}: - shard-mtlp: [SKIP][267] ([i915#8537]) -> [PASS][268] +2 similar issues [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-mtlp-3/igt@perf_pmu@rc6@runtime-pm-long-gt1.html [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-6/igt@perf_pmu@rc6@runtime-pm-long-gt1.html * igt@perf_pmu@semaphore-busy@vcs1: - {shard-dg1}: [FAIL][269] ([i915#4349]) -> [PASS][270] +2 similar issues [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-dg1-18/igt@perf_pmu@semaphore-busy@vcs1.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg1-16/igt@perf_pmu@semaphore-busy@vcs1.html - shard-mtlp: [FAIL][271] ([i915#4349]) -> [PASS][272] +3 similar issues [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-mtlp-8/igt@perf_pmu@semaphore-busy@vcs1.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-6/igt@perf_pmu@semaphore-busy@vcs1.html * igt@perf_pmu@semaphore-busy@vecs0: - shard-dg2: [FAIL][273] ([i915#4349]) -> [PASS][274] +7 similar issues [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-dg2-11/igt@perf_pmu@semaphore-busy@vecs0.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-2/igt@perf_pmu@semaphore-busy@vecs0.html #### Warnings #### * igt@gem_exec_whisper@basic-contexts-forked-all: - shard-mtlp: [TIMEOUT][275] ([i915#8628]) -> [ABORT][276] ([i915#8131]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-mtlp-3/igt@gem_exec_whisper@basic-contexts-forked-all.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-6/igt@gem_exec_whisper@basic-contexts-forked-all.html * igt@gem_exec_whisper@basic-contexts-priority-all: - shard-mtlp: [TIMEOUT][277] ([i915#7392]) -> [ABORT][278] ([i915#8131]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-mtlp-1/igt@gem_exec_whisper@basic-contexts-priority-all.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-6/igt@gem_exec_whisper@basic-contexts-priority-all.html * igt@kms_content_protection@mei_interface: - shard-dg2: [SKIP][279] ([i915#7118] / [i915#7162]) -> [SKIP][280] ([i915#7118]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-dg2-11/igt@kms_content_protection@mei_interface.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-7/igt@kms_content_protection@mei_interface.html - shard-rkl: [SKIP][281] ([fdo#109300]) -> [SKIP][282] ([i915#7118]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-rkl-1/igt@kms_content_protection@mei_interface.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-rkl-6/igt@kms_content_protection@mei_interface.html - shard-tglu: [SKIP][283] ([fdo#109300]) -> [SKIP][284] ([i915#6944] / [i915#7116] / [i915#7118]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-tglu-7/igt@kms_content_protection@mei_interface.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-tglu-3/igt@kms_content_protection@mei_interface.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-mtlp: [DMESG-FAIL][285] ([i915#2017] / [i915#5954]) -> [FAIL][286] ([i915#2346]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-mtlp-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-mtlp-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_flip@flip-vs-suspend@a-vga1: - shard-snb: [DMESG-WARN][287] ([i915#5090] / [i915#8841]) -> [DMESG-WARN][288] ([i915#8841]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-snb5/igt@kms_flip@flip-vs-suspend@a-vga1.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-snb6/igt@kms_flip@flip-vs-suspend@a-vga1.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: [SKIP][289] ([fdo#109285]) -> [SKIP][290] ([fdo#109285] / [i915#4098]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-rkl-6/igt@kms_force_connector_basic@force-load-detect.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-rkl-2/igt@kms_force_connector_basic@force-load-detect.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [CRASH][291] ([i915#7331]) -> [INCOMPLETE][292] ([i915#5493]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7379/shard-dg2-1/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/shard-dg2-11/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.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#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [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 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1339]: https://gitlab.freedesktop.org/drm/intel/issues/1339 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433 [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [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#3089]: https://gitlab.freedesktop.org/drm/intel/issues/3089 [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#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3354]: https://gitlab.freedesktop.org/drm/intel/issues/3354 [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#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [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#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [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#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#5030]: https://gitlab.freedesktop.org/drm/intel/issues/5030 [i915#5090]: https://gitlab.freedesktop.org/drm/intel/issues/5090 [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#5213]: https://gitlab.freedesktop.org/drm/intel/issues/5213 [i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [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#5889]: https://gitlab.freedesktop.org/drm/intel/issues/5889 [i915#5954]: https://gitlab.freedesktop.org/drm/intel/issues/5954 [i915#6032]: https://gitlab.freedesktop.org/drm/intel/issues/6032 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6363]: https://gitlab.freedesktop.org/drm/intel/issues/6363 [i915#6493]: https://gitlab.freedesktop.org/drm/intel/issues/6493 [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#7036]: https://gitlab.freedesktop.org/drm/intel/issues/7036 [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162 [i915#7327]: https://gitlab.freedesktop.org/drm/intel/issues/7327 [i915#7331]: https://gitlab.freedesktop.org/drm/intel/issues/7331 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392 [i915#7443]: https://gitlab.freedesktop.org/drm/intel/issues/7443 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7691]: https://gitlab.freedesktop.org/drm/intel/issues/7691 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940 [i915#7941]: https://gitlab.freedesktop.org/drm/intel/issues/7941 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8102]: https://gitlab.freedesktop.org/drm/intel/issues/8102 [i915#8131]: https://gitlab.freedesktop.org/drm/intel/issues/8131 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8234]: https://gitlab.freedesktop.org/drm/intel/issues/8234 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [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#8440]: https://gitlab.freedesktop.org/drm/intel/issues/8440 [i915#8497]: https://gitlab.freedesktop.org/drm/intel/issues/8497 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8537]: https://gitlab.freedesktop.org/drm/intel/issues/8537 [i915#8545]: https://gitlab.freedesktop.org/drm/intel/issues/8545 [i915#8552]: https://gitlab.freedesktop.org/drm/intel/issues/8552 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8628]: https://gitlab.freedesktop.org/drm/intel/issues/8628 [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7379 -> IGTPW_9380 CI-20190529: 20190529 CI_DRM_13366: e547f03913976a1adcb823ed64d803284fdfa6a2 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9380: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/index.html IGT_7379: e927b137f46ab9955bcb39d88746a0b2f8b9cee1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9380/index.html [-- Attachment #2: Type: text/html, Size: 87620 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2023-07-14 6:41 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-07-11 6:54 [igt-dev] [PATCH i-g-t v3 0/3] Test for gtidle properties Riana Tauro 2023-07-11 6:54 ` [igt-dev] [PATCH i-g-t v3 1/3] tests/xe: Add basic idle residency test Riana Tauro 2023-07-14 5:08 ` Nilawar, Badal 2023-07-11 6:54 ` [igt-dev] [PATCH i-g-t v3 2/3] tests/xe: validate gt is in c6 on idle Riana Tauro 2023-07-14 5:20 ` Nilawar, Badal 2023-07-14 6:41 ` Kamil Konieczny 2023-07-11 6:54 ` [igt-dev] [PATCH i-g-t v3 3/3] xe-fast-feedback.testlist: Add gt-c6-on-idle to BAT Riana Tauro 2023-07-11 7:37 ` [igt-dev] ✓ Fi.CI.BAT: success for Test for gtidle properties (rev4) Patchwork 2023-07-11 7:49 ` [igt-dev] ○ CI.xeBAT: info " Patchwork 2023-07-11 8:50 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox