* [igt-dev] [PATCH i-g-t 0/3] enable feature-discovery tests
@ 2023-09-07 14:32 Swati Sharma
2023-09-07 14:32 ` [igt-dev] [PATCH i-g-t 1/3] tests: rename feature_discovery to kms_feature_discovery Swati Sharma
` (5 more replies)
0 siblings, 6 replies; 12+ messages in thread
From: Swati Sharma @ 2023-09-07 14:32 UTC (permalink / raw)
To: igt-dev
Enable feature-discovery tests for xe. Add documentation.
Enable dp-mst feature discovery test.
Swati Sharma (3):
tests: rename feature_discovery to kms_feature_discovery
tests/intel-ci: remove feature_discovery from blocklist
tests/kms_feature_discovery: detect mst configuration
tests/intel-ci/xe.blocklist.txt | 1 -
...re_discovery.c => kms_feature_discovery.c} | 79 ++++++++++++++++++-
tests/meson.build | 2 +-
3 files changed, 79 insertions(+), 3 deletions(-)
rename tests/{feature_discovery.c => kms_feature_discovery.c} (59%)
--
2.25.1
^ permalink raw reply [flat|nested] 12+ messages in thread* [igt-dev] [PATCH i-g-t 1/3] tests: rename feature_discovery to kms_feature_discovery 2023-09-07 14:32 [igt-dev] [PATCH i-g-t 0/3] enable feature-discovery tests Swati Sharma @ 2023-09-07 14:32 ` Swati Sharma 2023-09-07 16:38 ` Modem, Bhanuprakash 2023-09-07 17:33 ` Kamil Konieczny 2023-09-07 14:32 ` [igt-dev] [PATCH i-g-t 2/3] tests/intel-ci: remove feature_discovery from blocklist Swati Sharma ` (4 subsequent siblings) 5 siblings, 2 replies; 12+ messages in thread From: Swati Sharma @ 2023-09-07 14:32 UTC (permalink / raw) To: igt-dev Since feature discovery test is only having kms tests, rename to kms_feature_discovery. Also, add documentation for the subtests. Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- ...re_discovery.c => kms_feature_discovery.c} | 53 ++++++++++++++++++- tests/meson.build | 2 +- 2 files changed, 53 insertions(+), 2 deletions(-) rename tests/{feature_discovery.c => kms_feature_discovery.c} (68%) diff --git a/tests/feature_discovery.c b/tests/kms_feature_discovery.c similarity index 68% rename from tests/feature_discovery.c rename to tests/kms_feature_discovery.c index d1f4b1633..49958fd88 100644 --- a/tests/feature_discovery.c +++ b/tests/kms_feature_discovery.c @@ -22,6 +22,58 @@ * */ +/** + * TEST: kms feature discovery + * Category: Display + * Description: A metatest that checks for \"features\" presence. + * The subtests here should only skip or pass, + * anything else means we have a serious problem. + * + * SUBTEST: display + * Description: Make sure that we have display support with + * some outputs connected. + * Driver requirement: i915, xe + * Functionality: feature_discovery + * Mega feature: General Display Features + * Run type: FULL + * Test category: functionality test + * + * SUBTEST: display-%dx + * Description: Make sure that we have display support with %arg[1] + * outputs connected. + * Driver requirement: i915, xe + * Functionality: feature_discovery + * Mega feature: General Display Features + * Run type: FULL + * Test category: functionality test + * + * SUBTEST: chamelium + * Description: Make sure that Chamelium is configured and reachable. + * Driver requirement: i915, xe + * Functionality: feature_discovery, chamelium + * Mega feature: General Display Features + * Run type: FULL + * Test category: functionality test + * + * SUBTEST: psr1 + * Description: Make sure that we have eDP panel with PSR1 support. + * Driver requirement: i915, xe + * Functionality: feature_discovery, psr1, eDP + * Mega feature: General Display Features + * Run type: FULL + * Test category: functionality test + * + * SUBTEST: psr2 + * Description: Make sure that we have eDP panel with PSR2 support. + * Driver requirement: i915, xe + * Functionality: feature_discovery, psr2, eDP + * Mega feature: General Display Features + * Run type: FULL + * Test category: functionality test + * + * arg[1].values: 2, 3, 4 + */ + #include "igt.h" #ifdef HAVE_CHAMELIUM #include "igt_chamelium.h" @@ -46,7 +98,6 @@ igt_main { } igt_subtest_group { - igt_fixture { igt_display_require(&display, fd); } diff --git a/tests/meson.build b/tests/meson.build index aa8e3434c..eb643d4dd 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -14,7 +14,6 @@ test_progs = [ 'drm_mm', 'drm_read', 'fbdev', - 'feature_discovery', 'kms_3d', 'kms_addfb_basic', 'kms_async_flips', @@ -31,6 +30,7 @@ test_progs = [ 'kms_dither', 'kms_display_modes', 'kms_dp_aux_dev', + 'kms_feature_discovery', 'kms_flip', 'kms_flip_event_leak', 'kms_force_connector_basic', -- 2.25.1 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/3] tests: rename feature_discovery to kms_feature_discovery 2023-09-07 14:32 ` [igt-dev] [PATCH i-g-t 1/3] tests: rename feature_discovery to kms_feature_discovery Swati Sharma @ 2023-09-07 16:38 ` Modem, Bhanuprakash 2023-09-07 17:33 ` Kamil Konieczny 1 sibling, 0 replies; 12+ messages in thread From: Modem, Bhanuprakash @ 2023-09-07 16:38 UTC (permalink / raw) To: Swati Sharma, igt-dev Hi Swati, On Thu-07-09-2023 08:02 pm, Swati Sharma wrote: > Since feature discovery test is only having kms tests, > rename to kms_feature_discovery. Also, add documentation > for the subtests. Please float a new patch for documentation. - Bhanu > > Signed-off-by: Swati Sharma <swati2.sharma@intel.com> > --- > ...re_discovery.c => kms_feature_discovery.c} | 53 ++++++++++++++++++- > tests/meson.build | 2 +- > 2 files changed, 53 insertions(+), 2 deletions(-) > rename tests/{feature_discovery.c => kms_feature_discovery.c} (68%) > > diff --git a/tests/feature_discovery.c b/tests/kms_feature_discovery.c > similarity index 68% > rename from tests/feature_discovery.c > rename to tests/kms_feature_discovery.c > index d1f4b1633..49958fd88 100644 > --- a/tests/feature_discovery.c > +++ b/tests/kms_feature_discovery.c > @@ -22,6 +22,58 @@ > * > */ > > +/** > + * TEST: kms feature discovery > + * Category: Display > + * Description: A metatest that checks for \"features\" presence. > + * The subtests here should only skip or pass, > + * anything else means we have a serious problem. > + * > + * SUBTEST: display > + * Description: Make sure that we have display support with > + * some outputs connected. > + * Driver requirement: i915, xe > + * Functionality: feature_discovery > + * Mega feature: General Display Features > + * Run type: FULL > + * Test category: functionality test > + * > + * SUBTEST: display-%dx > + * Description: Make sure that we have display support with %arg[1] > + * outputs connected. > + * Driver requirement: i915, xe > + * Functionality: feature_discovery > + * Mega feature: General Display Features > + * Run type: FULL > + * Test category: functionality test > + * > + * SUBTEST: chamelium > + * Description: Make sure that Chamelium is configured and reachable. > + * Driver requirement: i915, xe > + * Functionality: feature_discovery, chamelium > + * Mega feature: General Display Features > + * Run type: FULL > + * Test category: functionality test > + * > + * SUBTEST: psr1 > + * Description: Make sure that we have eDP panel with PSR1 support. > + * Driver requirement: i915, xe > + * Functionality: feature_discovery, psr1, eDP > + * Mega feature: General Display Features > + * Run type: FULL > + * Test category: functionality test > + * > + * SUBTEST: psr2 > + * Description: Make sure that we have eDP panel with PSR2 support. > + * Driver requirement: i915, xe > + * Functionality: feature_discovery, psr2, eDP > + * Mega feature: General Display Features > + * Run type: FULL > + * Test category: functionality test > + * > + * arg[1].values: 2, 3, 4 > + */ > + > #include "igt.h" > #ifdef HAVE_CHAMELIUM > #include "igt_chamelium.h" > @@ -46,7 +98,6 @@ igt_main { > } > > igt_subtest_group { > - > igt_fixture { > igt_display_require(&display, fd); > } > diff --git a/tests/meson.build b/tests/meson.build > index aa8e3434c..eb643d4dd 100644 > --- a/tests/meson.build > +++ b/tests/meson.build > @@ -14,7 +14,6 @@ test_progs = [ > 'drm_mm', > 'drm_read', > 'fbdev', > - 'feature_discovery', > 'kms_3d', > 'kms_addfb_basic', > 'kms_async_flips', > @@ -31,6 +30,7 @@ test_progs = [ > 'kms_dither', > 'kms_display_modes', > 'kms_dp_aux_dev', > + 'kms_feature_discovery', > 'kms_flip', > 'kms_flip_event_leak', > 'kms_force_connector_basic', ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/3] tests: rename feature_discovery to kms_feature_discovery 2023-09-07 14:32 ` [igt-dev] [PATCH i-g-t 1/3] tests: rename feature_discovery to kms_feature_discovery Swati Sharma 2023-09-07 16:38 ` Modem, Bhanuprakash @ 2023-09-07 17:33 ` Kamil Konieczny 2023-09-08 5:51 ` Sharma, Swati2 1 sibling, 1 reply; 12+ messages in thread From: Kamil Konieczny @ 2023-09-07 17:33 UTC (permalink / raw) To: igt-dev Hi Swati, On 2023-09-07 at 20:02:12 +0530, Swati Sharma wrote: > Since feature discovery test is only having kms tests, > rename to kms_feature_discovery. Also, add documentation > for the subtests. > > Signed-off-by: Swati Sharma <swati2.sharma@intel.com> > --- > ...re_discovery.c => kms_feature_discovery.c} | 53 ++++++++++++++++++- > tests/meson.build | 2 +- > 2 files changed, 53 insertions(+), 2 deletions(-) > rename tests/{feature_discovery.c => kms_feature_discovery.c} (68%) > > diff --git a/tests/feature_discovery.c b/tests/kms_feature_discovery.c > similarity index 68% > rename from tests/feature_discovery.c > rename to tests/kms_feature_discovery.c > index d1f4b1633..49958fd88 100644 > --- a/tests/feature_discovery.c > +++ b/tests/kms_feature_discovery.c > @@ -22,6 +22,58 @@ > * > */ > > +/** > + * TEST: kms feature discovery > + * Category: Display > + * Description: A metatest that checks for \"features\" presence. > + * The subtests here should only skip or pass, > + * anything else means we have a serious problem. > + * > + * SUBTEST: display > + * Description: Make sure that we have display support with > + * some outputs connected. > + * Driver requirement: i915, xe > + * Functionality: feature_discovery > + * Mega feature: General Display Features > + * Run type: FULL > + * Test category: functionality test > + * > + * SUBTEST: display-%dx > + * Description: Make sure that we have display support with %arg[1] > + * outputs connected. > + * Driver requirement: i915, xe > + * Functionality: feature_discovery > + * Mega feature: General Display Features > + * Run type: FULL > + * Test category: functionality test > + * > + * SUBTEST: chamelium > + * Description: Make sure that Chamelium is configured and reachable. > + * Driver requirement: i915, xe > + * Functionality: feature_discovery, chamelium > + * Mega feature: General Display Features > + * Run type: FULL > + * Test category: functionality test > + * > + * SUBTEST: psr1 > + * Description: Make sure that we have eDP panel with PSR1 support. > + * Driver requirement: i915, xe > + * Functionality: feature_discovery, psr1, eDP > + * Mega feature: General Display Features > + * Run type: FULL > + * Test category: functionality test > + * > + * SUBTEST: psr2 > + * Description: Make sure that we have eDP panel with PSR2 support. > + * Driver requirement: i915, xe ----- ^ > + * Functionality: feature_discovery, psr2, eDP > + * Mega feature: General Display Features ----- ^ > + * Run type: FULL ----- ^ > + * Test category: functionality test ----- ^ All these fields are the same for all SUBTEST:, imho we should move them into TEST: and save some space. With that: Acked-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> Regards, Kamil > + * > + * arg[1].values: 2, 3, 4 > + */ > + > #include "igt.h" > #ifdef HAVE_CHAMELIUM > #include "igt_chamelium.h" > @@ -46,7 +98,6 @@ igt_main { > } > > igt_subtest_group { > - > igt_fixture { > igt_display_require(&display, fd); > } > diff --git a/tests/meson.build b/tests/meson.build > index aa8e3434c..eb643d4dd 100644 > --- a/tests/meson.build > +++ b/tests/meson.build > @@ -14,7 +14,6 @@ test_progs = [ > 'drm_mm', > 'drm_read', > 'fbdev', > - 'feature_discovery', > 'kms_3d', > 'kms_addfb_basic', > 'kms_async_flips', > @@ -31,6 +30,7 @@ test_progs = [ > 'kms_dither', > 'kms_display_modes', > 'kms_dp_aux_dev', > + 'kms_feature_discovery', > 'kms_flip', > 'kms_flip_event_leak', > 'kms_force_connector_basic', > -- > 2.25.1 > ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/3] tests: rename feature_discovery to kms_feature_discovery 2023-09-07 17:33 ` Kamil Konieczny @ 2023-09-08 5:51 ` Sharma, Swati2 0 siblings, 0 replies; 12+ messages in thread From: Sharma, Swati2 @ 2023-09-08 5:51 UTC (permalink / raw) To: Kamil Konieczny, igt-dev On 07-Sep-23 11:03 PM, Kamil Konieczny wrote: > Hi Swati, > > On 2023-09-07 at 20:02:12 +0530, Swati Sharma wrote: >> Since feature discovery test is only having kms tests, >> rename to kms_feature_discovery. Also, add documentation >> for the subtests. >> >> Signed-off-by: Swati Sharma <swati2.sharma@intel.com> >> --- >> ...re_discovery.c => kms_feature_discovery.c} | 53 ++++++++++++++++++- >> tests/meson.build | 2 +- >> 2 files changed, 53 insertions(+), 2 deletions(-) >> rename tests/{feature_discovery.c => kms_feature_discovery.c} (68%) >> >> diff --git a/tests/feature_discovery.c b/tests/kms_feature_discovery.c >> similarity index 68% >> rename from tests/feature_discovery.c >> rename to tests/kms_feature_discovery.c >> index d1f4b1633..49958fd88 100644 >> --- a/tests/feature_discovery.c >> +++ b/tests/kms_feature_discovery.c >> @@ -22,6 +22,58 @@ >> * >> */ >> >> +/** >> + * TEST: kms feature discovery >> + * Category: Display >> + * Description: A metatest that checks for \"features\" presence. >> + * The subtests here should only skip or pass, >> + * anything else means we have a serious problem. >> + * >> + * SUBTEST: display >> + * Description: Make sure that we have display support with >> + * some outputs connected. >> + * Driver requirement: i915, xe >> + * Functionality: feature_discovery >> + * Mega feature: General Display Features >> + * Run type: FULL >> + * Test category: functionality test >> + * >> + * SUBTEST: display-%dx >> + * Description: Make sure that we have display support with %arg[1] >> + * outputs connected. >> + * Driver requirement: i915, xe >> + * Functionality: feature_discovery >> + * Mega feature: General Display Features >> + * Run type: FULL >> + * Test category: functionality test >> + * >> + * SUBTEST: chamelium >> + * Description: Make sure that Chamelium is configured and reachable. >> + * Driver requirement: i915, xe >> + * Functionality: feature_discovery, chamelium >> + * Mega feature: General Display Features >> + * Run type: FULL >> + * Test category: functionality test >> + * >> + * SUBTEST: psr1 >> + * Description: Make sure that we have eDP panel with PSR1 support. >> + * Driver requirement: i915, xe >> + * Functionality: feature_discovery, psr1, eDP >> + * Mega feature: General Display Features >> + * Run type: FULL >> + * Test category: functionality test >> + * >> + * SUBTEST: psr2 >> + * Description: Make sure that we have eDP panel with PSR2 support. >> + * Driver requirement: i915, xe > ----- ^ > >> + * Functionality: feature_discovery, psr2, eDP >> + * Mega feature: General Display Features > ----- ^ > >> + * Run type: FULL > ----- ^ > >> + * Test category: functionality test > ----- ^ > All these fields are the same for all SUBTEST:, imho we should > move them into TEST: and save some space. With that: > > Acked-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > > Regards, > Kamil Hi Kamil, This might be valid for today but in future if we need to extend test having different fields, this might not to be true. For other kms tests too, we have done testplan documentation at subtest level only. > >> + * >> + * arg[1].values: 2, 3, 4 >> + */ >> + >> #include "igt.h" >> #ifdef HAVE_CHAMELIUM >> #include "igt_chamelium.h" >> @@ -46,7 +98,6 @@ igt_main { >> } >> >> igt_subtest_group { >> - >> igt_fixture { >> igt_display_require(&display, fd); >> } >> diff --git a/tests/meson.build b/tests/meson.build >> index aa8e3434c..eb643d4dd 100644 >> --- a/tests/meson.build >> +++ b/tests/meson.build >> @@ -14,7 +14,6 @@ test_progs = [ >> 'drm_mm', >> 'drm_read', >> 'fbdev', >> - 'feature_discovery', >> 'kms_3d', >> 'kms_addfb_basic', >> 'kms_async_flips', >> @@ -31,6 +30,7 @@ test_progs = [ >> 'kms_dither', >> 'kms_display_modes', >> 'kms_dp_aux_dev', >> + 'kms_feature_discovery', >> 'kms_flip', >> 'kms_flip_event_leak', >> 'kms_force_connector_basic', >> -- >> 2.25.1 >> ^ permalink raw reply [flat|nested] 12+ messages in thread
* [igt-dev] [PATCH i-g-t 2/3] tests/intel-ci: remove feature_discovery from blocklist 2023-09-07 14:32 [igt-dev] [PATCH i-g-t 0/3] enable feature-discovery tests Swati Sharma 2023-09-07 14:32 ` [igt-dev] [PATCH i-g-t 1/3] tests: rename feature_discovery to kms_feature_discovery Swati Sharma @ 2023-09-07 14:32 ` Swati Sharma 2023-09-07 17:33 ` Kamil Konieczny 2023-09-07 14:32 ` [igt-dev] [PATCH i-g-t 3/3] tests/kms_feature_discovery: detect mst configuration Swati Sharma ` (3 subsequent siblings) 5 siblings, 1 reply; 12+ messages in thread From: Swati Sharma @ 2023-09-07 14:32 UTC (permalink / raw) To: igt-dev Remove feature_discovery from blocklist. Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- tests/intel-ci/xe.blocklist.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/intel-ci/xe.blocklist.txt b/tests/intel-ci/xe.blocklist.txt index d496a3f6d..e73018ec6 100644 --- a/tests/intel-ci/xe.blocklist.txt +++ b/tests/intel-ci/xe.blocklist.txt @@ -38,7 +38,6 @@ igt@drm_fdinfo igt@drm_read igt@dumb.* igt@fbdev -igt@feature_discovery igt@prime_.* igt@sw_sync igt@syncobj_.* -- 2.25.1 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 2/3] tests/intel-ci: remove feature_discovery from blocklist 2023-09-07 14:32 ` [igt-dev] [PATCH i-g-t 2/3] tests/intel-ci: remove feature_discovery from blocklist Swati Sharma @ 2023-09-07 17:33 ` Kamil Konieczny 0 siblings, 0 replies; 12+ messages in thread From: Kamil Konieczny @ 2023-09-07 17:33 UTC (permalink / raw) To: igt-dev Hi Swati, On 2023-09-07 at 20:02:13 +0530, Swati Sharma wrote: > Remove feature_discovery from blocklist. > > Signed-off-by: Swati Sharma <swati2.sharma@intel.com> Acked-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > --- > tests/intel-ci/xe.blocklist.txt | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/tests/intel-ci/xe.blocklist.txt b/tests/intel-ci/xe.blocklist.txt > index d496a3f6d..e73018ec6 100644 > --- a/tests/intel-ci/xe.blocklist.txt > +++ b/tests/intel-ci/xe.blocklist.txt > @@ -38,7 +38,6 @@ igt@drm_fdinfo > igt@drm_read > igt@dumb.* > igt@fbdev > -igt@feature_discovery > igt@prime_.* > igt@sw_sync > igt@syncobj_.* > -- > 2.25.1 > ^ permalink raw reply [flat|nested] 12+ messages in thread
* [igt-dev] [PATCH i-g-t 3/3] tests/kms_feature_discovery: detect mst configuration 2023-09-07 14:32 [igt-dev] [PATCH i-g-t 0/3] enable feature-discovery tests Swati Sharma 2023-09-07 14:32 ` [igt-dev] [PATCH i-g-t 1/3] tests: rename feature_discovery to kms_feature_discovery Swati Sharma 2023-09-07 14:32 ` [igt-dev] [PATCH i-g-t 2/3] tests/intel-ci: remove feature_discovery from blocklist Swati Sharma @ 2023-09-07 14:32 ` Swati Sharma 2023-09-07 16:47 ` Modem, Bhanuprakash 2023-09-07 16:09 ` [igt-dev] ✓ CI.xeBAT: success for enable feature-discovery tests Patchwork ` (2 subsequent siblings) 5 siblings, 1 reply; 12+ messages in thread From: Swati Sharma @ 2023-09-07 14:32 UTC (permalink / raw) To: igt-dev; +Cc: Kunal Joshi Add test to detect if we have mst configuration. v2: -use for_each_connected_output() (Bhanu) -don't use helper (Bhanu) -add documentation Signed-off-by: Swati Sharma <swati2.sharma@intel.com> Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com> --- tests/kms_feature_discovery.c | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/tests/kms_feature_discovery.c b/tests/kms_feature_discovery.c index 49958fd88..a178010d6 100644 --- a/tests/kms_feature_discovery.c +++ b/tests/kms_feature_discovery.c @@ -71,6 +71,14 @@ * Run type: FULL * Test category: functionality test * + * SUBTEST: dp-mst + * Description: Make sure that we have DP-MST configuration. + * Driver requirement: i915, xe + * Functionality: feature_discovery, mst + * Mega feature: General Display Features + * Run type: FULL + * Test category: functionality test + * * arg[1].values: 2, 3, 4 */ @@ -164,5 +172,23 @@ igt_main { igt_subtest("psr2") { igt_require(psr_sink_support(fd, debugfs_fd, PSR_MODE_2)); } + + igt_describe("Make sure that we have DP-MST configuration."); + igt_subtest("dp-mst") { + struct kmstest_connector_config config; + igt_output_t *output; + const char *encoder; + int ret; + + for_each_connected_output(&display, output) { + kmstest_get_connector_config(fd, output->config.connector->connector_id, -1, &config); + encoder = kmstest_encoder_type_str(config.encoder->encoder_type); + + ret = strcmp(encoder, "DP MST"); + if (ret == 0) + break; + } + igt_require(ret == 0); + } } } -- 2.25.1 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 3/3] tests/kms_feature_discovery: detect mst configuration 2023-09-07 14:32 ` [igt-dev] [PATCH i-g-t 3/3] tests/kms_feature_discovery: detect mst configuration Swati Sharma @ 2023-09-07 16:47 ` Modem, Bhanuprakash 0 siblings, 0 replies; 12+ messages in thread From: Modem, Bhanuprakash @ 2023-09-07 16:47 UTC (permalink / raw) To: Swati Sharma, igt-dev; +Cc: Kunal Joshi Hi Swati, On Thu-07-09-2023 08:02 pm, Swati Sharma wrote: > Add test to detect if we have mst configuration. > > v2: -use for_each_connected_output() (Bhanu) > -don't use helper (Bhanu) > -add documentation > > Signed-off-by: Swati Sharma <swati2.sharma@intel.com> > Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com> > --- > tests/kms_feature_discovery.c | 26 ++++++++++++++++++++++++++ > 1 file changed, 26 insertions(+) > > diff --git a/tests/kms_feature_discovery.c b/tests/kms_feature_discovery.c > index 49958fd88..a178010d6 100644 > --- a/tests/kms_feature_discovery.c > +++ b/tests/kms_feature_discovery.c > @@ -71,6 +71,14 @@ > * Run type: FULL > * Test category: functionality test > * > + * SUBTEST: dp-mst > + * Description: Make sure that we have DP-MST configuration. > + * Driver requirement: i915, xe > + * Functionality: feature_discovery, mst > + * Mega feature: General Display Features > + * Run type: FULL > + * Test category: functionality test > + * > * arg[1].values: 2, 3, 4 > */ > > @@ -164,5 +172,23 @@ igt_main { > igt_subtest("psr2") { > igt_require(psr_sink_support(fd, debugfs_fd, PSR_MODE_2)); > } > + > + igt_describe("Make sure that we have DP-MST configuration."); > + igt_subtest("dp-mst") { > + struct kmstest_connector_config config; > + igt_output_t *output; > + const char *encoder; > + int ret; ----------------------------^ Please initialize 'ret' with -1, otherwise test will send a false positive on headless configs. > + > + for_each_connected_output(&display, output) { > + kmstest_get_connector_config(fd, output->config.connector->connector_id, -1, &config); > + encoder = kmstest_encoder_type_str(config.encoder->encoder_type); > + > + ret = strcmp(encoder, "DP MST"); > + if (ret == 0) > + break; > + } > + igt_require(ret == 0); Please add some meaningful message on skip. - Bhanu > + } > } > } ^ permalink raw reply [flat|nested] 12+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for enable feature-discovery tests 2023-09-07 14:32 [igt-dev] [PATCH i-g-t 0/3] enable feature-discovery tests Swati Sharma ` (2 preceding siblings ...) 2023-09-07 14:32 ` [igt-dev] [PATCH i-g-t 3/3] tests/kms_feature_discovery: detect mst configuration Swati Sharma @ 2023-09-07 16:09 ` Patchwork 2023-09-07 16:13 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork 2023-09-07 18:21 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 5 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2023-09-07 16:09 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1417 bytes --] == Series Details == Series: enable feature-discovery tests URL : https://patchwork.freedesktop.org/series/123396/ State : success == Summary == CI Bug Log - changes from XEIGT_7474_BAT -> XEIGTPW_9742_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_9742_BAT that come from known issues: ### IGT changes ### {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#524]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/524 Build changes ------------- * IGT: IGT_7474 -> IGTPW_9742 * Linux: xe-357-bae46e59a7f667734376ddb0d2451967dfb264f1 -> xe-361-bae46e59a7f667734376ddb0d2451967dfb264f1 IGTPW_9742: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/index.html IGT_7474: 9d91cf2c6e7bb64d60c2030d1535e40ca0ad53ee @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-357-bae46e59a7f667734376ddb0d2451967dfb264f1: bae46e59a7f667734376ddb0d2451967dfb264f1 xe-361-bae46e59a7f667734376ddb0d2451967dfb264f1: bae46e59a7f667734376ddb0d2451967dfb264f1 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9742/index.html [-- Attachment #2: Type: text/html, Size: 1906 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for enable feature-discovery tests 2023-09-07 14:32 [igt-dev] [PATCH i-g-t 0/3] enable feature-discovery tests Swati Sharma ` (3 preceding siblings ...) 2023-09-07 16:09 ` [igt-dev] ✓ CI.xeBAT: success for enable feature-discovery tests Patchwork @ 2023-09-07 16:13 ` Patchwork 2023-09-07 18:21 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 5 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2023-09-07 16:13 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5756 bytes --] == Series Details == Series: enable feature-discovery tests URL : https://patchwork.freedesktop.org/series/123396/ State : success == Summary == CI Bug Log - changes from CI_DRM_13608 -> IGTPW_9742 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/index.html Participating hosts (41 -> 39) ------------------------------ Missing (2): fi-kbl-soraka fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9742: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_chamelium_frames@hdmi-crc-fast: - {bat-dg2-13}: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13608/bat-dg2-13/igt@kms_chamelium_frames@hdmi-crc-fast.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/bat-dg2-13/igt@kms_chamelium_frames@hdmi-crc-fast.html Known issues ------------ Here are the changes found in IGTPW_9742 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@execlists: - fi-bsw-nick: [PASS][3] -> [ABORT][4] ([i915#7911] / [i915#7913]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13608/fi-bsw-nick/igt@i915_selftest@live@execlists.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/fi-bsw-nick/igt@i915_selftest@live@execlists.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - fi-hsw-4770: NOTRUN -> [SKIP][5] ([fdo#109271]) +13 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/fi-hsw-4770/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: NOTRUN -> [SKIP][6] ([i915#1845]) +3 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-vga-1: - fi-hsw-4770: NOTRUN -> [DMESG-WARN][7] ([i915#8841]) +6 other tests dmesg-warn [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/fi-hsw-4770/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-vga-1.html * igt@kms_psr@primary_mmap_gtt: - bat-rplp-1: NOTRUN -> [ABORT][8] ([i915#8442] / [i915#8469] / [i915#8668]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/bat-rplp-1/igt@kms_psr@primary_mmap_gtt.html * igt@kms_psr@sprite_plane_onoff: - fi-hsw-4770: NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#1072]) +3 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/fi-hsw-4770/igt@kms_psr@sprite_plane_onoff.html - bat-rplp-1: NOTRUN -> [SKIP][10] ([i915#1072]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/bat-rplp-1/igt@kms_psr@sprite_plane_onoff.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s0@smem: - bat-dg2-9: [INCOMPLETE][11] ([i915#9275]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13608/bat-dg2-9/igt@gem_exec_suspend@basic-s0@smem.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/bat-dg2-9/igt@gem_exec_suspend@basic-s0@smem.html #### Warnings #### * igt@kms_psr@primary_page_flip: - bat-rplp-1: [ABORT][13] ([i915#8442] / [i915#8668] / [i915#8860]) -> [SKIP][14] ([i915#1072]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13608/bat-rplp-1/igt@kms_psr@primary_page_flip.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/bat-rplp-1/igt@kms_psr@primary_page_flip.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442 [i915#8469]: https://gitlab.freedesktop.org/drm/intel/issues/8469 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8860]: https://gitlab.freedesktop.org/drm/intel/issues/8860 [i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7474 -> IGTPW_9742 CI-20190529: 20190529 CI_DRM_13608: 5853d2bdd9ed69639af4e5cbc435578da8fedab7 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9742: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/index.html IGT_7474: 9d91cf2c6e7bb64d60c2030d1535e40ca0ad53ee @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@kms_feature_discovery@chamelium +igt@kms_feature_discovery@display +igt@kms_feature_discovery@display-2x +igt@kms_feature_discovery@display-3x +igt@kms_feature_discovery@display-4x +igt@kms_feature_discovery@dp-mst +igt@kms_feature_discovery@psr1 +igt@kms_feature_discovery@psr2 -igt@feature_discovery@chamelium -igt@feature_discovery@display -igt@feature_discovery@display-2x -igt@feature_discovery@display-3x -igt@feature_discovery@display-4x -igt@feature_discovery@psr1 -igt@feature_discovery@psr2 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/index.html [-- Attachment #2: Type: text/html, Size: 6993 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for enable feature-discovery tests 2023-09-07 14:32 [igt-dev] [PATCH i-g-t 0/3] enable feature-discovery tests Swati Sharma ` (4 preceding siblings ...) 2023-09-07 16:13 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork @ 2023-09-07 18:21 ` Patchwork 5 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2023-09-07 18:21 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100249 bytes --] == Series Details == Series: enable feature-discovery tests URL : https://patchwork.freedesktop.org/series/123396/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13608_full -> IGTPW_9742_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9742_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9742_full, please notify your bug team (lgci.bug.filing@intel.com) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/index.html Participating hosts (10 -> 9) ------------------------------ Missing (1): shard-tglu0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9742_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_suspend@basic-s0@smem: - shard-dg2: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13608/shard-dg2-10/igt@gem_exec_suspend@basic-s0@smem.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-2/igt@gem_exec_suspend@basic-s0@smem.html * {igt@kms_feature_discovery@chamelium} (NEW): - shard-tglu: NOTRUN -> [SKIP][3] +5 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-tglu-8/igt@kms_feature_discovery@chamelium.html - shard-mtlp: NOTRUN -> [SKIP][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-3/igt@kms_feature_discovery@chamelium.html * {igt@kms_feature_discovery@display-2x} (NEW): - shard-rkl: NOTRUN -> [SKIP][5] +5 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-rkl-1/igt@kms_feature_discovery@display-2x.html * {igt@kms_feature_discovery@display-3x} (NEW): - shard-dg2: NOTRUN -> [SKIP][6] +4 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-1/igt@kms_feature_discovery@display-3x.html * {igt@kms_feature_discovery@psr2} (NEW): - shard-dg1: NOTRUN -> [SKIP][7] +5 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg1-14/igt@kms_feature_discovery@psr2.html * igt@perf@polling@1-vcs1: - shard-mtlp: NOTRUN -> [FAIL][8] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-3/igt@perf@polling@1-vcs1.html #### Warnings #### * igt@i915_suspend@basic-s3-without-i915: - shard-snb: [DMESG-WARN][9] ([i915#8841]) -> [INCOMPLETE][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13608/shard-snb5/igt@i915_suspend@basic-s3-without-i915.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-snb4/igt@i915_suspend@basic-s3-without-i915.html New tests --------- New tests have been introduced between CI_DRM_13608_full and IGTPW_9742_full: ### New IGT tests (8) ### * igt@kms_feature_discovery@chamelium: - Statuses : 7 skip(s) - Exec time: [0.0] s * igt@kms_feature_discovery@display: - Statuses : 4 pass(s) - Exec time: [0.0] s * igt@kms_feature_discovery@display-2x: - Statuses : 1 pass(s) 6 skip(s) - Exec time: [0.0] s * igt@kms_feature_discovery@display-3x: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt@kms_feature_discovery@display-4x: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt@kms_feature_discovery@dp-mst: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt@kms_feature_discovery@psr1: - Statuses : 1 pass(s) 6 skip(s) - Exec time: [0.0] s * igt@kms_feature_discovery@psr2: - Statuses : 7 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9742_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][11] ([i915#8411]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-7/igt@api_intel_bb@object-reloc-keep-cache.html - shard-rkl: NOTRUN -> [SKIP][12] ([i915#8411]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-rkl-6/igt@api_intel_bb@object-reloc-keep-cache.html - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#8411]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-7/igt@api_intel_bb@object-reloc-keep-cache.html * igt@api_intel_bb@render-ccs: - shard-dg2: NOTRUN -> [FAIL][14] ([i915#6122]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-6/igt@api_intel_bb@render-ccs.html * igt@debugfs_test@basic-hwmon: - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#7456]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-5/igt@debugfs_test@basic-hwmon.html * igt@drm_buddy@drm_buddy_test: - shard-rkl: NOTRUN -> [SKIP][16] ([i915#8661]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-rkl-2/igt@drm_buddy@drm_buddy_test.html * igt@drm_fdinfo@busy-check-all@ccs0: - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#8414]) +23 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-1/igt@drm_fdinfo@busy-check-all@ccs0.html * igt@drm_fdinfo@busy@ccs0: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#8414]) +9 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-11/igt@drm_fdinfo@busy@ccs0.html * igt@gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#3936]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-5/igt@gem_busy@semaphore.html * igt@gem_ccs@block-copy-compressed: - shard-mtlp: NOTRUN -> [SKIP][20] ([i915#3555] / [i915#5325]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-5/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: - shard-dg2: [PASS][21] -> [INCOMPLETE][22] ([i915#7297]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13608/shard-dg2-2/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-10/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglu: [PASS][23] -> [FAIL][24] ([i915#6268]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13608/shard-tglu-8/igt@gem_ctx_exec@basic-nohangcheck.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-tglu-2/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_isolation@preservation-s3@bcs0: - shard-dg2: NOTRUN -> [FAIL][25] ([fdo#103375]) +5 other tests fail [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-5/igt@gem_ctx_isolation@preservation-s3@bcs0.html * igt@gem_ctx_persistence@hang: - shard-mtlp: NOTRUN -> [SKIP][26] ([i915#8555]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-7/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#8555]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_persistence@legacy-engines-cleanup: - shard-snb: NOTRUN -> [SKIP][28] ([fdo#109271] / [i915#1099]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-snb4/igt@gem_ctx_persistence@legacy-engines-cleanup.html * igt@gem_ctx_persistence@legacy-engines-hostile@vebox: - shard-mtlp: [PASS][29] -> [FAIL][30] ([i915#2410]) +2 other tests fail [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13608/shard-mtlp-8/igt@gem_ctx_persistence@legacy-engines-hostile@vebox.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-1/igt@gem_ctx_persistence@legacy-engines-hostile@vebox.html * igt@gem_ctx_sseu@engines: - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#280]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-2/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-sseu: - shard-tglu: NOTRUN -> [SKIP][32] ([i915#280]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-tglu-3/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@hibernate: - shard-dg1: [PASS][33] -> [ABORT][34] ([i915#7975] / [i915#8213]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13608/shard-dg1-12/igt@gem_eio@hibernate.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg1-14/igt@gem_eio@hibernate.html * igt@gem_eio@in-flight-suspend: - shard-mtlp: NOTRUN -> [ABORT][35] ([i915#7892] / [i915#9262]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-1/igt@gem_eio@in-flight-suspend.html * igt@gem_eio@unwedge-stress: - shard-dg1: [PASS][36] -> [FAIL][37] ([i915#5784]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13608/shard-dg1-15/igt@gem_eio@unwedge-stress.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg1-18/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#4812]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-1/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_balancer@parallel: - shard-rkl: NOTRUN -> [SKIP][39] ([i915#4525]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-rkl-1/igt@gem_exec_balancer@parallel.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-glk: NOTRUN -> [SKIP][40] ([fdo#109271] / [i915#6334]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-glk2/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_fair@basic-deadline: - shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4473] / [i915#4771]) +2 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-3/igt@gem_exec_fair@basic-deadline.html - shard-glk: NOTRUN -> [FAIL][42] ([i915#2846]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-glk3/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-flow: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#3539] / [i915#4852]) +2 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-5/igt@gem_exec_fair@basic-flow.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-glk: NOTRUN -> [FAIL][44] ([i915#2842]) +1 other test fail [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-glk1/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-tglu: NOTRUN -> [FAIL][45] ([i915#2842]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-tglu-4/igt@gem_exec_fair@basic-none-share@rcs0.html - shard-rkl: [PASS][46] -> [FAIL][47] ([i915#2842]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13608/shard-rkl-2/igt@gem_exec_fair@basic-none-share@rcs0.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-rkl-1/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-apl: [PASS][48] -> [FAIL][49] ([i915#2842]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13608/shard-apl2/igt@gem_exec_fair@basic-pace-solo@rcs0.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-apl1/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-glk: [PASS][50] -> [FAIL][51] ([i915#2842]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13608/shard-glk9/igt@gem_exec_fair@basic-pace@rcs0.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-glk3/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_fence@concurrent: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4812]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-2/igt@gem_exec_fence@concurrent.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#3539]) +2 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-5/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#5107]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-1/igt@gem_exec_params@rsvd2-dirt.html - shard-tglu: NOTRUN -> [SKIP][55] ([fdo#109283]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-tglu-9/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_params@secure-non-master: - shard-mtlp: NOTRUN -> [SKIP][56] ([fdo#112283]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-5/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_reloc@basic-cpu-gtt: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#3281]) +13 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-11/igt@gem_exec_reloc@basic-cpu-gtt.html * igt@gem_exec_reloc@basic-gtt-noreloc: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#3281]) +13 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-2/igt@gem_exec_reloc@basic-gtt-noreloc.html * igt@gem_exec_reloc@basic-gtt-wc-active: - shard-rkl: NOTRUN -> [SKIP][59] ([i915#3281]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-wc-active.html * igt@gem_exec_schedule@preempt-queue-contexts: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4537] / [i915#4812]) +2 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-4/igt@gem_exec_schedule@preempt-queue-contexts.html - shard-dg2: NOTRUN -> [SKIP][61] ([i915#4537] / [i915#4812]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-1/igt@gem_exec_schedule@preempt-queue-contexts.html * igt@gem_exec_suspend@basic-s3-devices@smem: - shard-mtlp: [PASS][62] -> [DMESG-WARN][63] ([i915#9260]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13608/shard-mtlp-7/igt@gem_exec_suspend@basic-s3-devices@smem.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-4/igt@gem_exec_suspend@basic-s3-devices@smem.html * igt@gem_exec_suspend@basic-s3@smem: - shard-snb: NOTRUN -> [DMESG-WARN][64] ([i915#8841]) +5 other tests dmesg-warn [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-snb2/igt@gem_exec_suspend@basic-s3@smem.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg2: NOTRUN -> [ABORT][65] ([i915#7975] / [i915#8213]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-5/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_fence_thrash@bo-copy: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4860]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-4/igt@gem_fence_thrash@bo-copy.html * igt@gem_fence_thrash@bo-write-verify-x: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4860]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-1/igt@gem_fence_thrash@bo-write-verify-x.html * igt@gem_huc_copy@huc-copy: - shard-tglu: NOTRUN -> [SKIP][68] ([i915#2190]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-tglu-10/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4613]) +4 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-3/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][70] ([fdo#109271] / [i915#4613]) +4 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-glk6/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: NOTRUN -> [TIMEOUT][71] ([i915#5493]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-1/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-tglu: NOTRUN -> [SKIP][72] ([i915#4613]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-tglu-10/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#8289]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-3/igt@gem_media_fill@media-fill.html * igt@gem_mmap_gtt@basic-write-read: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4077]) +25 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-6/igt@gem_mmap_gtt@basic-write-read.html * igt@gem_mmap_gtt@coherency: - shard-tglu: NOTRUN -> [SKIP][75] ([fdo#111656]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-tglu-2/igt@gem_mmap_gtt@coherency.html * igt@gem_mmap_gtt@medium-copy-xy: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#4077]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg1-19/igt@gem_mmap_gtt@medium-copy-xy.html * igt@gem_mmap_wc@set-cache-level: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#4083]) +11 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-3/igt@gem_mmap_wc@set-cache-level.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#4083]) +3 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-6/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#3282]) +10 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-7/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_pwrite@basic-exhaustion: - shard-glk: NOTRUN -> [WARN][80] ([i915#2658]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-glk1/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@create-valid-protected-context: - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#4270]) +8 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-7/igt@gem_pxp@create-valid-protected-context.html * igt@gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#4270]) +2 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-2/igt@gem_pxp@display-protected-crc.html - shard-rkl: NOTRUN -> [SKIP][83] ([i915#4270]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-rkl-6/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-tglu: NOTRUN -> [SKIP][84] ([i915#4270]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-tglu-3/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_readwrite@read-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][85] ([i915#3282]) +6 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-5/igt@gem_readwrite@read-bad-handle.html * igt@gem_readwrite@write-bad-handle: - shard-rkl: NOTRUN -> [SKIP][86] ([i915#3282]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-rkl-7/igt@gem_readwrite@write-bad-handle.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#8428]) +6 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-1/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#4079]) +2 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-1/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#4077]) +13 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-3/igt@gem_tiled_blits@basic.html * igt@gem_tiled_pread_pwrite: - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#4079]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-3/igt@gem_tiled_pread_pwrite.html * igt@gem_unfence_active_buffers: - shard-mtlp: NOTRUN -> [SKIP][91] ([i915#4879]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-7/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@dmabuf-sync: - shard-glk: NOTRUN -> [SKIP][92] ([fdo#109271] / [i915#3323]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-glk7/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#3297]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-1/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#3297] / [i915#4880]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg1: NOTRUN -> [SKIP][95] ([i915#3297] / [i915#4880]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg1-19/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@mmap-offset-banned@gtt: - shard-mtlp: NOTRUN -> [SKIP][96] ([i915#3297]) +8 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-4/igt@gem_userptr_blits@mmap-offset-banned@gtt.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-tglu: NOTRUN -> [SKIP][97] ([i915#3297]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-tglu-6/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gem_userptr_blits@vma-merge: - shard-glk: NOTRUN -> [FAIL][98] ([i915#3318]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-glk5/igt@gem_userptr_blits@vma-merge.html * igt@gen3_render_tiledx_blits: - shard-rkl: NOTRUN -> [SKIP][99] ([fdo#109289]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-rkl-1/igt@gen3_render_tiledx_blits.html * igt@gen7_exec_parse@basic-offset: - shard-dg2: NOTRUN -> [SKIP][100] ([fdo#109289]) +5 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-11/igt@gen7_exec_parse@basic-offset.html * igt@gen9_exec_parse@basic-rejected: - shard-tglu: NOTRUN -> [SKIP][101] ([i915#2527] / [i915#2856]) +2 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-tglu-7/igt@gen9_exec_parse@basic-rejected.html - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#2856]) +3 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-8/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@batch-invalid-length: - shard-rkl: NOTRUN -> [SKIP][103] ([i915#2527]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-rkl-1/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@batch-zero-length: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#2527]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg1-15/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@secure-batches: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#2856]) +3 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-11/igt@gen9_exec_parse@secure-batches.html * igt@i915_fb_tiling: - shard-mtlp: NOTRUN -> [SKIP][106] ([i915#4881]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-3/igt@i915_fb_tiling.html * igt@i915_module_load@load: - shard-mtlp: NOTRUN -> [SKIP][107] ([i915#6227]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-5/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-mtlp: [PASS][108] -> [INCOMPLETE][109] ([i915#8489]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13608/shard-mtlp-7/igt@i915_module_load@reload-with-fault-injection.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pipe_stress@stress-xrgb8888-ytiled: - shard-mtlp: NOTRUN -> [SKIP][110] ([i915#8436]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-7/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html * igt@i915_pm_backlight@fade: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#5354] / [i915#7561]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-6/igt@i915_pm_backlight@fade.html * igt@i915_pm_backlight@fade-with-suspend: - shard-dg1: NOTRUN -> [SKIP][112] ([i915#5354] / [i915#7561]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg1-14/igt@i915_pm_backlight@fade-with-suspend.html * igt@i915_pm_dc@dc5-psr: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#658]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-11/igt@i915_pm_dc@dc5-psr.html * igt@i915_pm_dc@dc6-dpms: - shard-tglu: [PASS][114] -> [FAIL][115] ([i915#3989] / [i915#454]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13608/shard-tglu-2/igt@i915_pm_dc@dc6-dpms.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-tglu-4/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-tglu: NOTRUN -> [SKIP][116] ([i915#6590]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-tglu-10/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_freq_mult@media-freq@gt1: - shard-mtlp: NOTRUN -> [SKIP][117] ([i915#6590]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-4/igt@i915_pm_freq_mult@media-freq@gt1.html * igt@i915_pm_lpsp@screens-disabled: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#1902]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-5/igt@i915_pm_lpsp@screens-disabled.html * igt@i915_pm_rpm@dpms-mode-unset-lpsp: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#1397]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-rkl-1/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][120] ([i915#1397]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-3/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@gem-mmap-type@gtt-smem0: - shard-mtlp: NOTRUN -> [SKIP][121] ([i915#8431]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-2/igt@i915_pm_rpm@gem-mmap-type@gtt-smem0.html * igt@i915_pm_rpm@modeset-lpsp: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#1397]) +2 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-2/igt@i915_pm_rpm@modeset-lpsp.html - shard-rkl: [PASS][123] -> [SKIP][124] ([i915#1397]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13608/shard-rkl-7/igt@i915_pm_rpm@modeset-lpsp.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-rkl-6/igt@i915_pm_rpm@modeset-lpsp.html * igt@i915_pm_rpm@modeset-pc8-residency-stress: - shard-mtlp: NOTRUN -> [SKIP][125] ([fdo#109293]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-3/igt@i915_pm_rpm@modeset-pc8-residency-stress.html * igt@i915_pm_rpm@system-suspend-devices: - shard-snb: NOTRUN -> [SKIP][126] ([fdo#109271]) +289 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-snb2/igt@i915_pm_rpm@system-suspend-devices.html * igt@i915_pm_rps@basic-api: - shard-mtlp: NOTRUN -> [SKIP][127] ([i915#6621]) +2 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-5/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#6621]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-3/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@thresholds-park@gt1: - shard-mtlp: NOTRUN -> [SKIP][129] ([i915#8925]) +1 other test skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-1/igt@i915_pm_rps@thresholds-park@gt1.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-mtlp: NOTRUN -> [SKIP][130] ([i915#6188]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-7/igt@i915_query@query-topology-coherent-slice-mask.html - shard-dg2: NOTRUN -> [SKIP][131] ([i915#6188]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-7/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_query@query-topology-unsupported: - shard-mtlp: NOTRUN -> [SKIP][132] ([fdo#109302]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-5/igt@i915_query@query-topology-unsupported.html * igt@i915_selftest@live@gt_engines: - shard-mtlp: NOTRUN -> [FAIL][133] ([i915#9278]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-6/igt@i915_selftest@live@gt_engines.html * igt@i915_selftest@live@gt_heartbeat: - shard-apl: [PASS][134] -> [DMESG-FAIL][135] ([i915#5334]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13608/shard-apl4/igt@i915_selftest@live@gt_heartbeat.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-apl3/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@gt_pm: - shard-mtlp: NOTRUN -> [DMESG-FAIL][136] ([i915#9270]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-6/igt@i915_selftest@live@gt_pm.html * igt@i915_suspend@basic-s3-without-i915: - shard-tglu: NOTRUN -> [INCOMPLETE][137] ([i915#7443] / [i915#8102]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-tglu-5/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-mtlp: NOTRUN -> [SKIP][138] ([i915#4212]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-4/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html - shard-dg1: NOTRUN -> [SKIP][139] ([i915#4212]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg1-12/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#5190]) +11 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-3/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html - shard-mtlp: NOTRUN -> [SKIP][141] ([i915#5190]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc_ccs: - shard-mtlp: NOTRUN -> [SKIP][142] ([i915#8502]) +11 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc_ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-2-y-rc_ccs: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#8502]) +3 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-rkl-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-2-y-rc_ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4-mc_ccs: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#8502] / [i915#8709]) +11 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4-mc_ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-1-y-rc_ccs: - shard-dg1: NOTRUN -> [SKIP][145] ([i915#8502]) +7 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg1-19/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-1-y-rc_ccs.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][146] ([i915#8247]) +3 other tests fail [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-1/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#404]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-rkl: NOTRUN -> [SKIP][148] ([i915#404]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-rkl-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#1769] / [i915#3555]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#1769] / [i915#3555]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-11/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][151] ([i915#4538] / [i915#5286]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg1-15/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#5286]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-rkl-4/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-180-hflip: - shard-tglu: NOTRUN -> [SKIP][153] ([fdo#111615] / [i915#5286]) +2 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-tglu-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][154] ([fdo#111614]) +3 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-5/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][155] ([i915#3638]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg1-18/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][156] ([fdo#111614]) +5 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-4/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][157] ([fdo#111614]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-tglu-4/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][158] ([fdo#111614] / [i915#3638]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-rkl-4/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#6187]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-1/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-mtlp: NOTRUN -> [SKIP][160] ([fdo#111615]) +15 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][161] ([fdo#111615]) +1 other test skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-tglu-3/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][162] ([fdo#110723]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-rkl-7/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#4538] / [i915#5190]) +4 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-1/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html * igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_mtl_rc_ccs: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#5354] / [i915#6095]) +1 other test skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-rkl-1/igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs: - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#5354] / [i915#6095]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-2/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#6095]) +54 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-7/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs_cc: - shard-tglu: NOTRUN -> [SKIP][167] ([i915#5354] / [i915#6095]) +9 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-tglu-8/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#3734] / [i915#5354] / [i915#6095]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-rkl-4/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_ccs.html * igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: - shard-glk: NOTRUN -> [SKIP][169] ([fdo#109271] / [i915#3886]) +11 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-glk1/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][170] ([i915#3886] / [i915#5354] / [i915#6095]) +1 other test skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-rkl-4/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#3886] / [i915#6095]) +10 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-3/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][172] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-tglu-2/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#5354]) +42 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-1/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][174] ([i915#3689] / [i915#5354] / [i915#6095]) +7 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-tglu-10/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_ccs.html * igt@kms_ccs@pipe-c-crc-primary-rotation-180-yf_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][175] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-tglu-10/igt@kms_ccs@pipe-c-crc-primary-rotation-180-yf_tiled_ccs.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs_cc: - shard-dg1: NOTRUN -> [SKIP][176] ([i915#5354] / [i915#6095]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg1-19/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_rc_ccs_cc: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#3689] / [i915#3886] / [i915#5354]) +11 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-7/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-d-crc-primary-basic-yf_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#3689] / [i915#5354]) +21 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-3/igt@kms_ccs@pipe-d-crc-primary-basic-yf_tiled_ccs.html * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc: - shard-rkl: NOTRUN -> [SKIP][179] ([i915#5354]) +6 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-rkl-7/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-tglu: NOTRUN -> [SKIP][180] ([i915#3742]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-tglu-7/igt@kms_cdclk@mode-transition-all-outputs.html - shard-mtlp: NOTRUN -> [SKIP][181] ([i915#7213] / [i915#9010]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-6/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#4087] / [i915#7213]) +3 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-3/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_chamelium_color@ctm-0-50: - shard-rkl: NOTRUN -> [SKIP][183] ([fdo#111827]) +1 other test skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-rkl-7/igt@kms_chamelium_color@ctm-0-50.html - shard-tglu: NOTRUN -> [SKIP][184] ([fdo#111827]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-tglu-5/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-mtlp: NOTRUN -> [SKIP][185] ([fdo#111827]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-5/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_color@ctm-negative: - shard-glk: NOTRUN -> [SKIP][186] ([fdo#109271]) +368 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-glk3/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#7828]) +11 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-6/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_frames@hdmi-crc-multiple: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#7828]) +4 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-rkl-1/igt@kms_chamelium_frames@hdmi-crc-multiple.html * igt@kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#7828]) +11 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-7/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@dp-hpd-storm-disable: - shard-tglu: NOTRUN -> [SKIP][190] ([i915#7828]) +2 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-tglu-6/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html * igt@kms_color@deep-color: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#3555]) +6 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-1/igt@kms_color@deep-color.html - shard-rkl: NOTRUN -> [SKIP][192] ([i915#3555]) +2 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-rkl-7/igt@kms_color@deep-color.html * igt@kms_color@degamma@pipe-a: - shard-mtlp: NOTRUN -> [FAIL][193] ([i915#9257]) +3 other tests fail [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-7/igt@kms_color@degamma@pipe-a.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#3299]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-3/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#3299]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-11/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic: - shard-tglu: NOTRUN -> [SKIP][196] ([i915#6944] / [i915#7116] / [i915#7118]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-tglu-4/igt@kms_content_protection@lic.html * igt@kms_content_protection@type1: - shard-mtlp: NOTRUN -> [SKIP][197] ([i915#6944]) +1 other test skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-1/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#3359]) +2 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-3/igt@kms_cursor_crc@cursor-random-512x170.html - shard-rkl: NOTRUN -> [SKIP][199] ([i915#3359]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-rkl-7/igt@kms_cursor_crc@cursor-random-512x170.html - shard-mtlp: NOTRUN -> [SKIP][200] ([i915#3359]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-6/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-tglu: NOTRUN -> [SKIP][201] ([i915#3555]) +2 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-32x32.html - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#3555] / [i915#8814]) +4 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-8/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][203] ([fdo#109274] / [fdo#111767] / [i915#5354]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html - shard-snb: NOTRUN -> [SKIP][204] ([fdo#109271] / [fdo#111767]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-snb6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-tglu: NOTRUN -> [SKIP][205] ([fdo#109274]) +1 other test skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-tglu-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-rkl: NOTRUN -> [SKIP][206] ([fdo#111825]) +3 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-rkl-4/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg2: NOTRUN -> [SKIP][207] ([fdo#109274] / [i915#5354]) +5 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][208] ([fdo#111767] / [i915#3546]) +1 other test skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: NOTRUN -> [FAIL][209] ([i915#2346]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-tglu: NOTRUN -> [SKIP][210] ([i915#4103]) +1 other test skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-tglu-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-mtlp: NOTRUN -> [SKIP][211] ([i915#4213]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][212] ([i915#9227]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg1-19/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-1.html * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][213] ([i915#9226] / [i915#9261]) +1 other test skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg1-19/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1.html * igt@kms_display_modes@extended-mode-basic: - shard-mtlp: NOTRUN -> [SKIP][214] ([i915#3555] / [i915#8827]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-2/igt@kms_display_modes@extended-mode-basic.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#8588]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-11/igt@kms_display_modes@mst-extended-mode-negative.html - shard-rkl: NOTRUN -> [SKIP][216] ([i915#8588]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-rkl-6/igt@kms_display_modes@mst-extended-mode-negative.html - shard-mtlp: NOTRUN -> [SKIP][217] ([i915#8588]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-3/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][218] ([i915#3804]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-tglu-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#3555] / [i915#3840]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-5/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-formats: - shard-mtlp: NOTRUN -> [SKIP][220] ([i915#3555] / [i915#3840]) +1 other test skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-5/igt@kms_dsc@dsc-with-formats.html * igt@kms_fbcon_fbt@psr-suspend: - shard-mtlp: NOTRUN -> [ABORT][221] ([i915#9262]) +5 other tests abort [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-4/igt@kms_fbcon_fbt@psr-suspend.html * {igt@kms_feature_discovery@display-4x} (NEW): - shard-apl: NOTRUN -> [SKIP][222] ([fdo#109271]) +6 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-apl1/igt@kms_feature_discovery@display-4x.html * igt@kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#4881]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-5/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-tglu: NOTRUN -> [SKIP][224] ([fdo#109274] / [fdo#111767] / [i915#3637]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-tglu-8/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html - shard-mtlp: NOTRUN -> [SKIP][225] ([fdo#111767] / [i915#3637]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-3/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][226] ([i915#8381]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-3/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-suspend: - shard-mtlp: NOTRUN -> [SKIP][227] ([i915#3637]) +12 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-2/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-dg2: NOTRUN -> [SKIP][228] ([fdo#109274]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-2/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-tglu: NOTRUN -> [SKIP][229] ([fdo#109274] / [i915#3637]) +1 other test skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-tglu-9/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a4: - shard-dg1: [PASS][230] -> [FAIL][231] ([i915#8986]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13608/shard-dg1-17/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a4.html [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg1-14/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a4.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][232] ([i915#2672]) +5 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][233] ([i915#2587] / [i915#2672]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#2672]) +7 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#8810]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][236] ([i915#2672] / [i915#3555]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-mtlp: NOTRUN -> [SKIP][237] ([fdo#109285]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-4/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#5274]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-3/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#1825]) +56 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt: - shard-tglu: NOTRUN -> [SKIP][240] ([fdo#109280]) +15 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-tglu-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][241] ([i915#5460]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][242] ([fdo#111825] / [i915#1825]) +9 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#8708]) +19 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt: - shard-tglu: NOTRUN -> [SKIP][244] ([fdo#110189]) +10 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][245] ([i915#8708]) +15 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-rte: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#3458]) +22 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-rte.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg1: NOTRUN -> [SKIP][247] ([fdo#111825]) +3 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][248] ([i915#8708]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][249] ([i915#3023]) +9 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#6118]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-1/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@bpc-switch-suspend@pipe-a-edp-1: - shard-mtlp: [PASS][251] -> [FAIL][252] ([fdo#103375]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13608/shard-mtlp-8/igt@kms_hdr@bpc-switch-suspend@pipe-a-edp-1.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-5/igt@kms_hdr@bpc-switch-suspend@pipe-a-edp-1.html * igt@kms_hdr@static-swap: - shard-tglu: NOTRUN -> [SKIP][253] ([i915#3555] / [i915#8228]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-tglu-2/igt@kms_hdr@static-swap.html - shard-mtlp: NOTRUN -> [SKIP][254] ([i915#3555] / [i915#8228]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-8/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][255] ([i915#3555] / [i915#8228]) +2 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-3/igt@kms_hdr@static-toggle-suspend.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-mtlp: NOTRUN -> [SKIP][256] ([i915#4816]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-dg2: NOTRUN -> [SKIP][257] ([i915#4816]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@atomic-fastset: - shard-tglu: NOTRUN -> [SKIP][258] ([i915#6301]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-tglu-2/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1: - shard-apl: [PASS][259] -> [INCOMPLETE][260] ([i915#180]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13608/shard-apl7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-apl3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1.html * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][261] ([i915#4573]) +1 other test fail [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-glk2/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_lowres@tiling-x@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][262] ([i915#3582]) +7 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-6/igt@kms_plane_lowres@tiling-x@pipe-c-edp-1.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][263] ([i915#8821]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-7/igt@kms_plane_lowres@tiling-y.html - shard-mtlp: NOTRUN -> [SKIP][264] ([i915#8821]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-4/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-mtlp: NOTRUN -> [SKIP][265] ([i915#3546]) +5 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-7/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@intel-max-src-size: - shard-mtlp: NOTRUN -> [SKIP][266] ([i915#6953]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-5/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][267] ([i915#8292]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-11/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][268] ([i915#8292]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-rkl-7/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html - shard-tglu: [PASS][269] -> [FAIL][270] ([i915#8292]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13608/shard-tglu-3/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-tglu-4/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][271] ([i915#5176]) +11 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg1-17/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][272] ([i915#5176]) +7 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-dp-4.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][273] ([i915#5176]) +9 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][274] ([i915#5176]) +7 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-3/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#5235]) +11 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-dp-4.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][276] ([i915#5235]) +3 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-rkl-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][277] ([i915#5235]) +11 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg1-15/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-4.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][278] ([i915#5235]) +15 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c-edp-1.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][279] ([i915#6524] / [i915#6805]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-1/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@overlay-plane-move-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][280] ([i915#658]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-tglu-4/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][281] ([fdo#111068] / [i915#658]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-rkl-7/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-glk: NOTRUN -> [SKIP][282] ([fdo#109271] / [i915#658]) +5 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-glk6/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-mtlp: NOTRUN -> [SKIP][283] ([i915#4348]) +2 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-8/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@primary_page_flip: - shard-dg2: NOTRUN -> [SKIP][284] ([i915#1072]) +8 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-2/igt@kms_psr@primary_page_flip.html - shard-rkl: NOTRUN -> [SKIP][285] ([i915#1072]) +2 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-rkl-6/igt@kms_psr@primary_page_flip.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-mtlp: NOTRUN -> [SKIP][286] ([i915#5289]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][287] ([i915#4235] / [i915#5190]) +1 other test skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-dg2: NOTRUN -> [SKIP][288] ([i915#4235]) +2 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-2/igt@kms_rotation_crc@sprite-rotation-270.html - shard-mtlp: NOTRUN -> [SKIP][289] ([i915#4235]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-7/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-d: - shard-mtlp: NOTRUN -> [SKIP][290] ([i915#5030]) +3 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-2/igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-d.html * igt@kms_selftest@drm_damage: - shard-snb: NOTRUN -> [SKIP][291] ([fdo#109271] / [i915#8661]) +1 other test skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-snb7/igt@kms_selftest@drm_damage.html - shard-mtlp: NOTRUN -> [SKIP][292] ([i915#8661]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-7/igt@kms_selftest@drm_damage.html * igt@kms_selftest@drm_format: - shard-dg2: NOTRUN -> [SKIP][293] ([i915#8661]) +1 other test skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-11/igt@kms_selftest@drm_format.html * igt@kms_selftest@framebuffer: - shard-glk: NOTRUN -> [SKIP][294] ([fdo#109271] / [i915#8661]) +1 other test skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-glk3/igt@kms_selftest@framebuffer.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][295] ([i915#3555] / [i915#8823]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-5/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-tglu: NOTRUN -> [SKIP][296] ([i915#8623]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-tglu-3/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tv_load_detect@load-detect: - shard-mtlp: NOTRUN -> [SKIP][297] ([fdo#109309]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-7/igt@kms_tv_load_detect@load-detect.html * igt@kms_vblank@pipe-c-ts-continuation-dpms-rpm: - shard-rkl: NOTRUN -> [SKIP][298] ([i915#4070] / [i915#6768]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-rkl-2/igt@kms_vblank@pipe-c-ts-continuation-dpms-rpm.html * igt@kms_vblank@pipe-d-query-forked-hang: - shard-rkl: NOTRUN -> [SKIP][299] ([i915#4070] / [i915#533] / [i915#6768]) +2 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-rkl-6/igt@kms_vblank@pipe-d-query-forked-hang.html * igt@kms_writeback@writeback-check-output: - shard-dg1: NOTRUN -> [SKIP][300] ([i915#2437]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg1-16/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-fb-id: - shard-dg2: NOTRUN -> [SKIP][301] ([i915#2437]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-5/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-invalid-parameters: - shard-tglu: NOTRUN -> [SKIP][302] ([i915#2437]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-tglu-7/igt@kms_writeback@writeback-invalid-parameters.html - shard-mtlp: NOTRUN -> [SKIP][303] ([i915#2437]) +1 other test skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-8/igt@kms_writeback@writeback-invalid-parameters.html * igt@kms_writeback@writeback-pixel-formats: - shard-glk: NOTRUN -> [SKIP][304] ([fdo#109271] / [i915#2437]) +2 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-glk4/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-mtlp: NOTRUN -> [SKIP][305] ([fdo#109289]) +10 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-1/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@polling@0-rcs0: - shard-mtlp: NOTRUN -> [FAIL][306] ([i915#9259]) +1 other test fail [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-3/igt@perf@polling@0-rcs0.html * igt@perf_pmu@busy-check-all@rcs0: - shard-mtlp: NOTRUN -> [FAIL][307] ([i915#4521]) +2 other tests fail [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-3/igt@perf_pmu@busy-check-all@rcs0.html * igt@perf_pmu@busy-hang@ccs0: - shard-mtlp: NOTRUN -> [FAIL][308] ([i915#4349]) +8 other tests fail [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-6/igt@perf_pmu@busy-hang@ccs0.html * igt@perf_pmu@event-wait@rcs0: - shard-mtlp: NOTRUN -> [SKIP][309] ([i915#8807]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-3/igt@perf_pmu@event-wait@rcs0.html * igt@perf_pmu@rc6-suspend: - shard-mtlp: NOTRUN -> [INCOMPLETE][310] ([i915#9268]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-7/igt@perf_pmu@rc6-suspend.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][311] ([i915#8516]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-6/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-blt: - shard-mtlp: NOTRUN -> [FAIL][312] ([i915#8445]) +2 other tests fail [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-3/igt@prime_vgem@basic-blt.html * igt@prime_vgem@fence-write-hang: - shard-dg2: NOTRUN -> [SKIP][313] ([i915#3708]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-3/igt@prime_vgem@fence-write-hang.html * igt@v3d/v3d_mmap@mmap-bo: - shard-mtlp: NOTRUN -> [SKIP][314] ([i915#2575]) +22 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-3/igt@v3d/v3d_mmap@mmap-bo.html * igt@v3d/v3d_submit_cl@single-in-sync: - shard-rkl: NOTRUN -> [SKIP][315] ([fdo#109315]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-rkl-2/igt@v3d/v3d_submit_cl@single-in-sync.html * igt@v3d/v3d_submit_csd@bad-in-sync: - shard-dg1: NOTRUN -> [SKIP][316] ([i915#2575]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg1-18/igt@v3d/v3d_submit_csd@bad-in-sync.html * igt@v3d/v3d_submit_csd@bad-multisync-extension: - shard-tglu: NOTRUN -> [SKIP][317] ([fdo#109315] / [i915#2575]) +5 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-tglu-6/igt@v3d/v3d_submit_csd@bad-multisync-extension.html * igt@v3d/v3d_submit_csd@single-out-sync: - shard-dg2: NOTRUN -> [SKIP][318] ([i915#2575]) +13 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-6/igt@v3d/v3d_submit_csd@single-out-sync.html * igt@vc4/vc4_label_bo@set-bad-name: - shard-tglu: NOTRUN -> [SKIP][319] ([i915#2575]) +3 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-tglu-10/igt@vc4/vc4_label_bo@set-bad-name.html * igt@vc4/vc4_perfmon@create-perfmon-exceed: - shard-mtlp: NOTRUN -> [SKIP][320] ([i915#7711]) +13 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-2/igt@vc4/vc4_perfmon@create-perfmon-exceed.html * igt@vc4/vc4_wait_bo@used-bo-1ns: - shard-rkl: NOTRUN -> [SKIP][321] ([i915#7711]) +2 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-rkl-7/igt@vc4/vc4_wait_bo@used-bo-1ns.html * igt@vc4/vc4_wait_seqno@bad-seqno-1ns: - shard-dg2: NOTRUN -> [SKIP][322] ([i915#7711]) +10 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-7/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html #### Possible fixes #### * igt@gem_ctx_persistence@legacy-engines-hang@bsd1: - shard-mtlp: [FAIL][323] ([i915#2410]) -> [PASS][324] [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13608/shard-mtlp-3/igt@gem_ctx_persistence@legacy-engines-hang@bsd1.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-4/igt@gem_ctx_persistence@legacy-engines-hang@bsd1.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-rkl: [FAIL][325] ([i915#2842]) -> [PASS][326] [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13608/shard-rkl-6/igt@gem_exec_fair@basic-pace@rcs0.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-rkl-1/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_whisper@basic-fds-forked-all: - shard-tglu: [INCOMPLETE][327] ([i915#6755] / [i915#7392]) -> [PASS][328] [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13608/shard-tglu-3/igt@gem_exec_whisper@basic-fds-forked-all.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-tglu-9/igt@gem_exec_whisper@basic-fds-forked-all.html * igt@gem_mmap_offset@clear@smem0: - shard-dg1: [FAIL][329] ([i915#7962]) -> [PASS][330] [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13608/shard-dg1-14/igt@gem_mmap_offset@clear@smem0.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg1-14/igt@gem_mmap_offset@clear@smem0.html * igt@i915_hangman@engine-engine-hang@vcs0: - shard-mtlp: [FAIL][331] ([i915#7069]) -> [PASS][332] [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13608/shard-mtlp-8/igt@i915_hangman@engine-engine-hang@vcs0.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-6/igt@i915_hangman@engine-engine-hang@vcs0.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: - shard-dg1: [SKIP][333] ([i915#1937]) -> [PASS][334] [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13608/shard-dg1-18/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg1-19/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-rkl: [SKIP][335] ([i915#1397]) -> [PASS][336] +1 other test pass [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13608/shard-rkl-7/igt@i915_pm_rpm@dpms-non-lpsp.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-rkl-6/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@modeset-lpsp-stress: - shard-dg1: [SKIP][337] ([i915#1397]) -> [PASS][338] [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13608/shard-dg1-12/igt@i915_pm_rpm@modeset-lpsp-stress.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg1-19/igt@i915_pm_rpm@modeset-lpsp-stress.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-apl: [FAIL][339] ([i915#2346]) -> [PASS][340] [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13608/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@single-move@all-pipes: - shard-mtlp: [DMESG-WARN][341] ([i915#2017]) -> [PASS][342] [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13608/shard-mtlp-4/igt@kms_cursor_legacy@single-move@all-pipes.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-5/igt@kms_cursor_legacy@single-move@all-pipes.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt: - shard-dg2: [FAIL][343] ([i915#6880]) -> [PASS][344] +1 other test pass [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13608/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-suspend: - shard-mtlp: [ABORT][345] ([i915#9262]) -> [PASS][346] +1 other test pass [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13608/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html * igt@kms_rotation_crc@bad-pixel-format: - shard-rkl: [INCOMPLETE][347] -> [PASS][348] [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13608/shard-rkl-7/igt@kms_rotation_crc@bad-pixel-format.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-rkl-2/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend: - shard-dg2: [FAIL][349] ([fdo#103375]) -> [PASS][350] +2 other tests pass [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13608/shard-dg2-5/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg2-5/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html * igt@perf@buffer-fill@0-rcs0: - shard-mtlp: [FAIL][351] ([i915#7823] / [i915#9265]) -> [PASS][352] [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13608/shard-mtlp-8/igt@perf@buffer-fill@0-rcs0.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-4/igt@perf@buffer-fill@0-rcs0.html * igt@perf@i915-ref-count: - shard-tglu: [FAIL][353] -> [PASS][354] [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13608/shard-tglu-6/igt@perf@i915-ref-count.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-tglu-3/igt@perf@i915-ref-count.html * igt@perf_pmu@most-busy-idle-check-all@vcs1: - shard-mtlp: [FAIL][355] ([i915#5234]) -> [PASS][356] +5 other tests pass [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13608/shard-mtlp-2/igt@perf_pmu@most-busy-idle-check-all@vcs1.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-4/igt@perf_pmu@most-busy-idle-check-all@vcs1.html * igt@perf_pmu@semaphore-busy@rcs0: - shard-mtlp: [FAIL][357] ([i915#4349]) -> [PASS][358] +2 other tests pass [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13608/shard-mtlp-6/igt@perf_pmu@semaphore-busy@rcs0.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-mtlp-4/igt@perf_pmu@semaphore-busy@rcs0.html #### Warnings #### * igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0: - shard-dg1: [SKIP][359] ([i915#4565]) -> [SKIP][360] ([i915#4423] / [i915#4565]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13608/shard-dg1-17/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg1-17/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html * igt@kms_fbcon_fbt@psr: - shard-rkl: [SKIP][361] ([fdo#110189] / [i915#3955]) -> [SKIP][362] ([i915#3955]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13608/shard-rkl-1/igt@kms_fbcon_fbt@psr.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-rkl-4/igt@kms_fbcon_fbt@psr.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][363] ([i915#4816]) -> [SKIP][364] ([i915#4070] / [i915#4816]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13608/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_psr@primary_page_flip: - shard-dg1: [SKIP][365] ([i915#1072] / [i915#4078]) -> [SKIP][366] ([i915#1072]) +1 other test skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13608/shard-dg1-12/igt@kms_psr@primary_page_flip.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/shard-dg1-14/igt@kms_psr@primary_page_flip.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [CRASH][367] ([i915#7331]) -> [INCOMPLETE][368] ([i915#5493]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13608/shard-dg2-10/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/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). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [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#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [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#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582 [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#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#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#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4521]: https://gitlab.freedesktop.org/drm/intel/issues/4521 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#5030]: https://gitlab.freedesktop.org/drm/intel/issues/5030 [i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6118]: https://gitlab.freedesktop.org/drm/intel/issues/6118 [i915#6122]: https://gitlab.freedesktop.org/drm/intel/issues/6122 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6755]: https://gitlab.freedesktop.org/drm/intel/issues/6755 [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#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [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#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297 [i915#7331]: https://gitlab.freedesktop.org/drm/intel/issues/7331 [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392 [i915#7443]: https://gitlab.freedesktop.org/drm/intel/issues/7443 [i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7823]: https://gitlab.freedesktop.org/drm/intel/issues/7823 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7892]: https://gitlab.freedesktop.org/drm/intel/issues/7892 [i915#7962]: https://gitlab.freedesktop.org/drm/intel/issues/7962 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8102]: https://gitlab.freedesktop.org/drm/intel/issues/8102 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [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#8431]: https://gitlab.freedesktop.org/drm/intel/issues/8431 [i915#8436]: https://gitlab.freedesktop.org/drm/intel/issues/8436 [i915#8445]: https://gitlab.freedesktop.org/drm/intel/issues/8445 [i915#8489]: https://gitlab.freedesktop.org/drm/intel/issues/8489 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8807]: https://gitlab.freedesktop.org/drm/intel/issues/8807 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821 [i915#8823]: https://gitlab.freedesktop.org/drm/intel/issues/8823 [i915#8827]: https://gitlab.freedesktop.org/drm/intel/issues/8827 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#8986]: https://gitlab.freedesktop.org/drm/intel/issues/8986 [i915#9010]: https://gitlab.freedesktop.org/drm/intel/issues/9010 [i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053 [i915#9226]: https://gitlab.freedesktop.org/drm/intel/issues/9226 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9257]: https://gitlab.freedesktop.org/drm/intel/issues/9257 [i915#9259]: https://gitlab.freedesktop.org/drm/intel/issues/9259 [i915#9260]: https://gitlab.freedesktop.org/drm/intel/issues/9260 [i915#9261]: https://gitlab.freedesktop.org/drm/intel/issues/9261 [i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262 [i915#9265]: https://gitlab.freedesktop.org/drm/intel/issues/9265 [i915#9268]: https://gitlab.freedesktop.org/drm/intel/issues/9268 [i915#9270]: https://gitlab.freedesktop.org/drm/intel/issues/9270 [i915#9278]: https://gitlab.freedesktop.org/drm/intel/issues/9278 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7474 -> IGTPW_9742 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13608: 5853d2bdd9ed69639af4e5cbc435578da8fedab7 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9742: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/index.html IGT_7474: 9d91cf2c6e7bb6 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9742/index.html [-- Attachment #2: Type: text/html, Size: 123168 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2023-09-08 5:51 UTC | newest] Thread overview: 12+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-09-07 14:32 [igt-dev] [PATCH i-g-t 0/3] enable feature-discovery tests Swati Sharma 2023-09-07 14:32 ` [igt-dev] [PATCH i-g-t 1/3] tests: rename feature_discovery to kms_feature_discovery Swati Sharma 2023-09-07 16:38 ` Modem, Bhanuprakash 2023-09-07 17:33 ` Kamil Konieczny 2023-09-08 5:51 ` Sharma, Swati2 2023-09-07 14:32 ` [igt-dev] [PATCH i-g-t 2/3] tests/intel-ci: remove feature_discovery from blocklist Swati Sharma 2023-09-07 17:33 ` Kamil Konieczny 2023-09-07 14:32 ` [igt-dev] [PATCH i-g-t 3/3] tests/kms_feature_discovery: detect mst configuration Swati Sharma 2023-09-07 16:47 ` Modem, Bhanuprakash 2023-09-07 16:09 ` [igt-dev] ✓ CI.xeBAT: success for enable feature-discovery tests Patchwork 2023-09-07 16:13 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork 2023-09-07 18:21 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox