* [igt-dev] [PATCH i-g-t 0/4] enable feature-discovery tests
@ 2023-09-08 7:00 Swati Sharma
2023-09-08 7:00 ` [igt-dev] [PATCH i-g-t 1/4] tests: rename feature_discovery to kms_feature_discovery Swati Sharma
` (6 more replies)
0 siblings, 7 replies; 14+ messages in thread
From: Swati Sharma @ 2023-09-08 7:00 UTC (permalink / raw)
To: igt-dev
Enable feature-discovery tests for xe. Add testplan documentation.
Add new dp-mst feature discovery test.
Swati Sharma (4):
tests: rename feature_discovery to kms_feature_discovery
tests/kms_feature_discovery: add testplan documentation
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] 14+ messages in thread* [igt-dev] [PATCH i-g-t 1/4] tests: rename feature_discovery to kms_feature_discovery 2023-09-08 7:00 [igt-dev] [PATCH i-g-t 0/4] enable feature-discovery tests Swati Sharma @ 2023-09-08 7:00 ` Swati Sharma 2023-09-08 16:59 ` Kamil Konieczny 2023-09-11 14:24 ` Modem, Bhanuprakash 2023-09-08 7:00 ` [igt-dev] [PATCH i-g-t 2/4] tests/kms_feature_discovery: add testplan documentation Swati Sharma ` (5 subsequent siblings) 6 siblings, 2 replies; 14+ messages in thread From: Swati Sharma @ 2023-09-08 7:00 UTC (permalink / raw) To: igt-dev Since feature discovery test is only having kms tests, rename to kms_feature_discovery. Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- tests/{feature_discovery.c => kms_feature_discovery.c} | 0 tests/meson.build | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename tests/{feature_discovery.c => kms_feature_discovery.c} (100%) diff --git a/tests/feature_discovery.c b/tests/kms_feature_discovery.c similarity index 100% rename from tests/feature_discovery.c rename to tests/kms_feature_discovery.c 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] 14+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/4] tests: rename feature_discovery to kms_feature_discovery 2023-09-08 7:00 ` [igt-dev] [PATCH i-g-t 1/4] tests: rename feature_discovery to kms_feature_discovery Swati Sharma @ 2023-09-08 16:59 ` Kamil Konieczny 2023-09-11 14:24 ` Modem, Bhanuprakash 1 sibling, 0 replies; 14+ messages in thread From: Kamil Konieczny @ 2023-09-08 16:59 UTC (permalink / raw) To: igt-dev Hi Swati, On 2023-09-08 at 12:30:50 +0530, Swati Sharma wrote: > Since feature discovery test is only having kms tests, > rename to kms_feature_discovery. > > Signed-off-by: Swati Sharma <swati2.sharma@intel.com> Acked-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> Before merge please cc to bug filing team. Regrads, Kamil > --- > tests/{feature_discovery.c => kms_feature_discovery.c} | 0 > tests/meson.build | 2 +- > 2 files changed, 1 insertion(+), 1 deletion(-) > rename tests/{feature_discovery.c => kms_feature_discovery.c} (100%) > > diff --git a/tests/feature_discovery.c b/tests/kms_feature_discovery.c > similarity index 100% > rename from tests/feature_discovery.c > rename to tests/kms_feature_discovery.c > 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] 14+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/4] tests: rename feature_discovery to kms_feature_discovery 2023-09-08 7:00 ` [igt-dev] [PATCH i-g-t 1/4] tests: rename feature_discovery to kms_feature_discovery Swati Sharma 2023-09-08 16:59 ` Kamil Konieczny @ 2023-09-11 14:24 ` Modem, Bhanuprakash 1 sibling, 0 replies; 14+ messages in thread From: Modem, Bhanuprakash @ 2023-09-11 14:24 UTC (permalink / raw) To: Swati Sharma, igt-dev On Fri-08-09-2023 12:30 pm, Swati Sharma wrote: > Since feature discovery test is only having kms tests, > rename to kms_feature_discovery. > > Signed-off-by: Swati Sharma <swati2.sharma@intel.com> Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > --- > tests/{feature_discovery.c => kms_feature_discovery.c} | 0 > tests/meson.build | 2 +- > 2 files changed, 1 insertion(+), 1 deletion(-) > rename tests/{feature_discovery.c => kms_feature_discovery.c} (100%) > > diff --git a/tests/feature_discovery.c b/tests/kms_feature_discovery.c > similarity index 100% > rename from tests/feature_discovery.c > rename to tests/kms_feature_discovery.c > 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] 14+ messages in thread
* [igt-dev] [PATCH i-g-t 2/4] tests/kms_feature_discovery: add testplan documentation 2023-09-08 7:00 [igt-dev] [PATCH i-g-t 0/4] enable feature-discovery tests Swati Sharma 2023-09-08 7:00 ` [igt-dev] [PATCH i-g-t 1/4] tests: rename feature_discovery to kms_feature_discovery Swati Sharma @ 2023-09-08 7:00 ` Swati Sharma 2023-09-11 14:27 ` Modem, Bhanuprakash 2023-09-08 7:00 ` [igt-dev] [PATCH i-g-t 3/4] tests/intel-ci: remove feature_discovery from blocklist Swati Sharma ` (4 subsequent siblings) 6 siblings, 1 reply; 14+ messages in thread From: Swati Sharma @ 2023-09-08 7:00 UTC (permalink / raw) To: igt-dev Add testplan documentation for the subtests. Signed-off-by: Swati Sharma <swati2.sharma@intel.com> Acked-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> --- tests/kms_feature_discovery.c | 53 ++++++++++++++++++++++++++++++++++- 1 file changed, 52 insertions(+), 1 deletion(-) diff --git a/tests/kms_feature_discovery.c b/tests/kms_feature_discovery.c index d1f4b1633..49958fd88 100644 --- a/tests/kms_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); } -- 2.25.1 ^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 2/4] tests/kms_feature_discovery: add testplan documentation 2023-09-08 7:00 ` [igt-dev] [PATCH i-g-t 2/4] tests/kms_feature_discovery: add testplan documentation Swati Sharma @ 2023-09-11 14:27 ` Modem, Bhanuprakash 2023-09-12 6:39 ` Sharma, Swati2 0 siblings, 1 reply; 14+ messages in thread From: Modem, Bhanuprakash @ 2023-09-11 14:27 UTC (permalink / raw) To: Swati Sharma, igt-dev Hi Swati, On Fri-08-09-2023 12:30 pm, Swati Sharma wrote: > Add testplan documentation for the subtests. > > Signed-off-by: Swati Sharma <swati2.sharma@intel.com> > Acked-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > --- > tests/kms_feature_discovery.c | 53 ++++++++++++++++++++++++++++++++++- > 1 file changed, 52 insertions(+), 1 deletion(-) > > diff --git a/tests/kms_feature_discovery.c b/tests/kms_feature_discovery.c > index d1f4b1633..49958fd88 100644 > --- a/tests/kms_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 Please drop Run type for every test. > + * Test category: functionality test > + * > + * SUBTEST: display-%dx Just for readability purpose, please move this test group to end of the list. > + * 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 Mega feature should be PSR. > + * 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 Mega feature should be PSR. > + * 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 { > - Nit: Unrelated change. - Bhanu > igt_fixture { > igt_display_require(&display, fd); > } ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 2/4] tests/kms_feature_discovery: add testplan documentation 2023-09-11 14:27 ` Modem, Bhanuprakash @ 2023-09-12 6:39 ` Sharma, Swati2 0 siblings, 0 replies; 14+ messages in thread From: Sharma, Swati2 @ 2023-09-12 6:39 UTC (permalink / raw) To: Modem, Bhanuprakash, igt-dev On 11-Sep-23 7:57 PM, Modem, Bhanuprakash wrote: > Hi Swati, > > On Fri-08-09-2023 12:30 pm, Swati Sharma wrote: >> Add testplan documentation for the subtests. >> >> Signed-off-by: Swati Sharma <swati2.sharma@intel.com> >> Acked-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> >> --- >> tests/kms_feature_discovery.c | 53 ++++++++++++++++++++++++++++++++++- >> 1 file changed, 52 insertions(+), 1 deletion(-) >> >> diff --git a/tests/kms_feature_discovery.c >> b/tests/kms_feature_discovery.c >> index d1f4b1633..49958fd88 100644 >> --- a/tests/kms_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 > > Please drop Run type for every test. Done. > >> + * Test category: functionality test >> + * >> + * SUBTEST: display-%dx > > Just for readability purpose, please move this test group to end of the > list. I guess its better here only, display test followed by display-2x/3x/4x tests. Its kind of one group. > >> + * 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 > > Mega feature should be PSR. Done > >> + * 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 > > Mega feature should be PSR. Done > >> + * 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 { >> - > > Nit: Unrelated change. > > - Bhanu > >> igt_fixture { >> igt_display_require(&display, fd); >> } ^ permalink raw reply [flat|nested] 14+ messages in thread
* [igt-dev] [PATCH i-g-t 3/4] tests/intel-ci: remove feature_discovery from blocklist 2023-09-08 7:00 [igt-dev] [PATCH i-g-t 0/4] enable feature-discovery tests Swati Sharma 2023-09-08 7:00 ` [igt-dev] [PATCH i-g-t 1/4] tests: rename feature_discovery to kms_feature_discovery Swati Sharma 2023-09-08 7:00 ` [igt-dev] [PATCH i-g-t 2/4] tests/kms_feature_discovery: add testplan documentation Swati Sharma @ 2023-09-08 7:00 ` Swati Sharma 2023-09-11 14:28 ` Modem, Bhanuprakash 2023-09-08 7:00 ` [igt-dev] [PATCH i-g-t 4/4] tests/kms_feature_discovery: detect mst configuration Swati Sharma ` (3 subsequent siblings) 6 siblings, 1 reply; 14+ messages in thread From: Swati Sharma @ 2023-09-08 7:00 UTC (permalink / raw) To: igt-dev 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 related [flat|nested] 14+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 3/4] tests/intel-ci: remove feature_discovery from blocklist 2023-09-08 7:00 ` [igt-dev] [PATCH i-g-t 3/4] tests/intel-ci: remove feature_discovery from blocklist Swati Sharma @ 2023-09-11 14:28 ` Modem, Bhanuprakash 0 siblings, 0 replies; 14+ messages in thread From: Modem, Bhanuprakash @ 2023-09-11 14:28 UTC (permalink / raw) To: Swati Sharma, igt-dev On Fri-08-09-2023 12:30 pm, 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> Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@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_.* ^ permalink raw reply [flat|nested] 14+ messages in thread
* [igt-dev] [PATCH i-g-t 4/4] tests/kms_feature_discovery: detect mst configuration 2023-09-08 7:00 [igt-dev] [PATCH i-g-t 0/4] enable feature-discovery tests Swati Sharma ` (2 preceding siblings ...) 2023-09-08 7:00 ` [igt-dev] [PATCH i-g-t 3/4] tests/intel-ci: remove feature_discovery from blocklist Swati Sharma @ 2023-09-08 7:00 ` Swati Sharma 2023-09-11 14:30 ` Modem, Bhanuprakash 2023-09-08 8:06 ` [igt-dev] ✓ CI.xeBAT: success for enable feature-discovery tests (rev2) Patchwork ` (2 subsequent siblings) 6 siblings, 1 reply; 14+ messages in thread From: Swati Sharma @ 2023-09-08 7:00 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 v3: -add message on skip (Bhanu) -initialize ret (Bhanu) 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..d0451cf9e 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 = -1; + + 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_f(ret == 0, "No DP-MST configuration found.\n"); + } } } -- 2.25.1 ^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 4/4] tests/kms_feature_discovery: detect mst configuration 2023-09-08 7:00 ` [igt-dev] [PATCH i-g-t 4/4] tests/kms_feature_discovery: detect mst configuration Swati Sharma @ 2023-09-11 14:30 ` Modem, Bhanuprakash 0 siblings, 0 replies; 14+ messages in thread From: Modem, Bhanuprakash @ 2023-09-11 14:30 UTC (permalink / raw) To: Swati Sharma, igt-dev; +Cc: Kunal Joshi Hi Swati, On Fri-08-09-2023 12:30 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 > v3: -add message on skip (Bhanu) > -initialize ret (Bhanu) > > 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..d0451cf9e 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 Please drop "Run type", as it is handled by the testplan scripts. With this change, this patch is Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> - Bhanu > + * 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 = -1; > + > + 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_f(ret == 0, "No DP-MST configuration found.\n"); > + } > } > } ^ permalink raw reply [flat|nested] 14+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for enable feature-discovery tests (rev2) 2023-09-08 7:00 [igt-dev] [PATCH i-g-t 0/4] enable feature-discovery tests Swati Sharma ` (3 preceding siblings ...) 2023-09-08 7:00 ` [igt-dev] [PATCH i-g-t 4/4] tests/kms_feature_discovery: detect mst configuration Swati Sharma @ 2023-09-08 8:06 ` Patchwork 2023-09-08 8:11 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork 2023-09-08 13:17 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 6 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2023-09-08 8:06 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1366 bytes --] == Series Details == Series: enable feature-discovery tests (rev2) URL : https://patchwork.freedesktop.org/series/123396/ State : success == Summary == CI Bug Log - changes from XEIGT_7474_BAT -> XEIGTPW_9749_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_9749_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#526]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/526 Build changes ------------- * IGT: IGT_7474 -> IGTPW_9749 * Linux: xe-357-bae46e59a7f667734376ddb0d2451967dfb264f1 -> xe-362-758f01ec2a6774fda1e8f8075d31f42b81783caf IGTPW_9749: 9749 IGT_7474: 9d91cf2c6e7bb64d60c2030d1535e40ca0ad53ee @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-357-bae46e59a7f667734376ddb0d2451967dfb264f1: bae46e59a7f667734376ddb0d2451967dfb264f1 xe-362-758f01ec2a6774fda1e8f8075d31f42b81783caf: 758f01ec2a6774fda1e8f8075d31f42b81783caf == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9749/index.html [-- Attachment #2: Type: text/html, Size: 1855 bytes --] ^ permalink raw reply [flat|nested] 14+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for enable feature-discovery tests (rev2) 2023-09-08 7:00 [igt-dev] [PATCH i-g-t 0/4] enable feature-discovery tests Swati Sharma ` (4 preceding siblings ...) 2023-09-08 8:06 ` [igt-dev] ✓ CI.xeBAT: success for enable feature-discovery tests (rev2) Patchwork @ 2023-09-08 8:11 ` Patchwork 2023-09-08 13:17 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 6 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2023-09-08 8:11 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 6293 bytes --] == Series Details == Series: enable feature-discovery tests (rev2) URL : https://patchwork.freedesktop.org/series/123396/ State : success == Summary == CI Bug Log - changes from CI_DRM_13613 -> IGTPW_9749 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/index.html Participating hosts (38 -> 38) ------------------------------ Additional (2): fi-kbl-soraka fi-hsw-4770 Missing (2): fi-snb-2520m fi-pnv-d510 Known issues ------------ Here are the changes found in IGTPW_9749 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - fi-hsw-4770: NOTRUN -> [SKIP][1] ([fdo#109271]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/fi-hsw-4770/igt@debugfs_test@basic-hwmon.html * igt@gem_huc_copy@huc-copy: - fi-kbl-soraka: NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#2190]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-kbl-soraka: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#4613]) +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html * igt@i915_selftest@live@gt_heartbeat: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][4] ([i915#5334] / [i915#7872]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@gt_pm: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][5] ([i915#1886] / [i915#7913]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - fi-kbl-soraka: NOTRUN -> [SKIP][6] ([fdo#109271]) +8 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/fi-kbl-soraka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_frontbuffer_tracking@basic: - fi-bsw-nick: [PASS][7] -> [FAIL][8] ([i915#9276]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/fi-bsw-nick/igt@kms_frontbuffer_tracking@basic.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/fi-bsw-nick/igt@kms_frontbuffer_tracking@basic.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-b-dp-6: - bat-adlp-11: [PASS][9] -> [ABORT][10] ([i915#8668]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-b-dp-6.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-b-dp-6.html * igt@kms_psr@primary_page_flip: - bat-rplp-1: NOTRUN -> [SKIP][11] ([i915#1072]) +3 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/bat-rplp-1/igt@kms_psr@primary_page_flip.html * igt@kms_setmode@basic-clone-single-crtc: - bat-rplp-1: NOTRUN -> [ABORT][12] ([i915#8260] / [i915#8668]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/bat-rplp-1/igt@kms_setmode@basic-clone-single-crtc.html #### Possible fixes #### * igt@i915_selftest@live@gt_heartbeat: - fi-apl-guc: [DMESG-FAIL][13] ([i915#5334]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-a-dp-5: - bat-adlp-11: [ABORT][15] ([i915#8668]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-a-dp-5.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-a-dp-5.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1: - bat-rplp-1: [ABORT][17] ([i915#8442] / [i915#8668]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#7872]: https://gitlab.freedesktop.org/drm/intel/issues/7872 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#8260]: https://gitlab.freedesktop.org/drm/intel/issues/8260 [i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#9276]: https://gitlab.freedesktop.org/drm/intel/issues/9276 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7474 -> IGTPW_9749 CI-20190529: 20190529 CI_DRM_13613: 25ec37710fd81562fd25eccebaac156d9334ff0c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9749: 9749 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_9749/index.html [-- Attachment #2: Type: text/html, Size: 7756 bytes --] ^ permalink raw reply [flat|nested] 14+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for enable feature-discovery tests (rev2) 2023-09-08 7:00 [igt-dev] [PATCH i-g-t 0/4] enable feature-discovery tests Swati Sharma ` (5 preceding siblings ...) 2023-09-08 8:11 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork @ 2023-09-08 13:17 ` Patchwork 6 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2023-09-08 13:17 UTC (permalink / raw) To: Sharma, Swati2; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 96927 bytes --] == Series Details == Series: enable feature-discovery tests (rev2) URL : https://patchwork.freedesktop.org/series/123396/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13613_full -> IGTPW_9749_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9749_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9749_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_9749/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9749_full: ### IGT changes ### #### Possible regressions #### * {igt@kms_feature_discovery@chamelium} (NEW): - shard-tglu: NOTRUN -> [SKIP][1] +6 other tests skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-tglu-8/igt@kms_feature_discovery@chamelium.html * {igt@kms_feature_discovery@display-2x} (NEW): - shard-dg2: NOTRUN -> [SKIP][2] +2 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-11/igt@kms_feature_discovery@display-2x.html * {igt@kms_feature_discovery@display-3x} (NEW): - shard-rkl: NOTRUN -> [SKIP][3] +6 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-4/igt@kms_feature_discovery@display-3x.html - shard-mtlp: NOTRUN -> [SKIP][4] +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-4/igt@kms_feature_discovery@display-3x.html * {igt@kms_feature_discovery@psr2} (NEW): - shard-dg1: NOTRUN -> [SKIP][5] +6 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg1-19/igt@kms_feature_discovery@psr2.html * igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend: - shard-apl: [PASS][6] -> [INCOMPLETE][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-apl7/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-apl6/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html New tests --------- New tests have been introduced between CI_DRM_13613_full and IGTPW_9749_full: ### New IGT tests (8) ### * igt@kms_feature_discovery@chamelium: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt@kms_feature_discovery@display: - Statuses : 7 pass(s) - Exec time: [0.0] s * igt@kms_feature_discovery@display-2x: - Statuses : 1 pass(s) 7 skip(s) - Exec time: [0.0] s * igt@kms_feature_discovery@display-3x: - Statuses : 7 skip(s) - Exec time: [0.0] s * igt@kms_feature_discovery@display-4x: - Statuses : 7 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 : 7 skip(s) - Exec time: [0.0] s * igt@kms_feature_discovery@psr2: - Statuses : 1 pass(s) 6 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9749_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#8411]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-3/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@render-ccs: - shard-dg2: NOTRUN -> [FAIL][9] ([i915#6122]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-11/igt@api_intel_bb@render-ccs.html * igt@drm_buddy@drm_buddy_test: - shard-rkl: NOTRUN -> [SKIP][10] ([i915#8661]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-6/igt@drm_buddy@drm_buddy_test.html * igt@drm_fdinfo@busy-idle-check-all@ccs0: - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#8414]) +17 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-7/igt@drm_fdinfo@busy-idle-check-all@ccs0.html * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: - shard-rkl: [PASS][12] -> [FAIL][13] ([i915#7742]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-2/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html * igt@drm_fdinfo@virtual-busy-idle: - shard-dg2: NOTRUN -> [SKIP][14] ([i915#8414]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-7/igt@drm_fdinfo@virtual-busy-idle.html * igt@gem_basic@multigpu-create-close: - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#7697]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-7/igt@gem_basic@multigpu-create-close.html * igt@gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#3936]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-1/igt@gem_busy@semaphore.html * igt@gem_caching@reads: - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#4873]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-1/igt@gem_caching@reads.html * igt@gem_ccs@block-copy-compressed: - shard-mtlp: NOTRUN -> [SKIP][18] ([i915#3555] / [i915#5325]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-4/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: NOTRUN -> [SKIP][19] ([i915#4098] / [i915#5325]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-4/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][20] ([i915#7297]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html * igt@gem_ctx_freq@sysfs@gt0: - shard-dg2: NOTRUN -> [FAIL][21] ([i915#6786]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-7/igt@gem_ctx_freq@sysfs@gt0.html * igt@gem_ctx_persistence@engines-hang@vcs0: - shard-mtlp: NOTRUN -> [FAIL][22] ([i915#2410]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-5/igt@gem_ctx_persistence@engines-hang@vcs0.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-mtlp: NOTRUN -> [SKIP][23] ([i915#8555]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-7/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#8555]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_persistence@legacy-engines-cleanup: - shard-snb: NOTRUN -> [SKIP][25] ([fdo#109271] / [i915#1099]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-snb6/igt@gem_ctx_persistence@legacy-engines-cleanup.html * igt@gem_ctx_persistence@saturated-hostile@vecs0: - shard-mtlp: NOTRUN -> [FAIL][26] ([i915#7816]) +2 other tests fail [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-4/igt@gem_ctx_persistence@saturated-hostile@vecs0.html * igt@gem_ctx_sseu@engines: - shard-mtlp: NOTRUN -> [SKIP][27] ([i915#280]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-4/igt@gem_ctx_sseu@engines.html * igt@gem_eio@unwedge-stress: - shard-dg1: [PASS][28] -> [FAIL][29] ([i915#5784]) +1 other test fail [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-dg1-12/igt@gem_eio@unwedge-stress.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg1-16/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-dual: - shard-mtlp: NOTRUN -> [SKIP][30] ([i915#4771]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-5/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#4812]) +4 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-3/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#4036]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-11/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@parallel-keep-submit-fence: - shard-rkl: NOTRUN -> [SKIP][33] ([i915#4525]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-1/igt@gem_exec_balancer@parallel-keep-submit-fence.html * igt@gem_exec_capture@pi@vcs0: - shard-mtlp: NOTRUN -> [FAIL][34] ([i915#4475]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-7/igt@gem_exec_capture@pi@vcs0.html * igt@gem_exec_endless@dispatch@vcs1: - shard-tglu: [PASS][35] -> [TIMEOUT][36] ([i915#3778]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-tglu-5/igt@gem_exec_endless@dispatch@vcs1.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-tglu-5/igt@gem_exec_endless@dispatch@vcs1.html * igt@gem_exec_fair@basic-deadline: - shard-mtlp: NOTRUN -> [SKIP][37] ([i915#4473] / [i915#4771]) +2 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-1/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-flow: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#3539] / [i915#4852]) +2 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-3/igt@gem_exec_fair@basic-flow.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: NOTRUN -> [FAIL][39] ([i915#2842]) +3 other tests fail [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-2/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-rkl: [PASS][40] -> [FAIL][41] ([i915#2842]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-rkl-2/igt@gem_exec_fair@basic-pace-share@rcs0.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-6/igt@gem_exec_fair@basic-pace-share@rcs0.html - shard-tglu: [PASS][42] -> [FAIL][43] ([i915#2842]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-tglu-3/igt@gem_exec_fair@basic-pace-share@rcs0.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-tglu-4/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-glk: [PASS][44] -> [FAIL][45] ([i915#2842]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-glk8/igt@gem_exec_fair@basic-pace-solo@rcs0.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-glk4/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fence@concurrent: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4812]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-3/igt@gem_exec_fence@concurrent.html * igt@gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#5107]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-3/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_params@secure-non-root: - shard-mtlp: NOTRUN -> [SKIP][48] ([fdo#112283]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-1/igt@gem_exec_params@secure-non-root.html * igt@gem_exec_reloc@basic-cpu-noreloc: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#3281]) +13 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-3/igt@gem_exec_reloc@basic-cpu-noreloc.html * igt@gem_exec_reloc@basic-gtt-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#3281]) +9 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-7/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html * igt@gem_exec_reloc@basic-gtt-wc-active: - shard-rkl: NOTRUN -> [SKIP][51] ([i915#3281]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-1/igt@gem_exec_reloc@basic-gtt-wc-active.html * igt@gem_exec_schedule@deep@rcs0: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4537]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-7/igt@gem_exec_schedule@deep@rcs0.html * igt@gem_exec_schedule@preempt-engines@ccs0: - shard-mtlp: [PASS][53] -> [FAIL][54] ([i915#9119]) +4 other tests fail [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-mtlp-8/igt@gem_exec_schedule@preempt-engines@ccs0.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-4/igt@gem_exec_schedule@preempt-engines@ccs0.html * igt@gem_exec_schedule@preempt-engines@rcs0: - shard-mtlp: [PASS][55] -> [DMESG-FAIL][56] ([i915#8962] / [i915#9121]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-mtlp-8/igt@gem_exec_schedule@preempt-engines@rcs0.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-4/igt@gem_exec_schedule@preempt-engines@rcs0.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4537] / [i915#4812]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-11/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4537] / [i915#4812]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-1/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg2: NOTRUN -> [ABORT][59] ([i915#7975] / [i915#8213]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-6/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_fence_thrash@bo-write-verify-none: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4860]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-11/igt@gem_fence_thrash@bo-write-verify-none.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4860]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-8/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4613]) +6 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-7/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#4613]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-4/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: NOTRUN -> [TIMEOUT][64] ([i915#5493]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-11/igt@gem_lmem_swapping@smem-oom@lmem0.html - shard-dg1: [PASS][65] -> [DMESG-WARN][66] ([i915#4936] / [i915#5493]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-dg1-19/igt@gem_lmem_swapping@smem-oom@lmem0.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_media_vme: - shard-rkl: NOTRUN -> [SKIP][67] ([i915#284]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-4/igt@gem_media_vme.html * igt@gem_mmap@bad-object: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4083]) +10 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-4/igt@gem_mmap@bad-object.html * igt@gem_mmap_gtt@cpuset-medium-copy: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4077]) +20 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-3/igt@gem_mmap_gtt@cpuset-medium-copy.html * igt@gem_mmap_gtt@medium-copy-xy: - shard-dg1: NOTRUN -> [SKIP][70] ([i915#4077]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg1-17/igt@gem_mmap_gtt@medium-copy-xy.html * igt@gem_mmap_offset@clear@smem0: - shard-mtlp: NOTRUN -> [INCOMPLETE][71] ([i915#5493]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-1/igt@gem_mmap_offset@clear@smem0.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#4083]) +4 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-7/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#3282]) +6 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-7/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-rkl: NOTRUN -> [SKIP][74] ([i915#3282]) +3 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_pwrite@basic-exhaustion: - shard-snb: NOTRUN -> [WARN][75] ([i915#2658]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-snb4/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#4270]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-2/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-rkl: NOTRUN -> [SKIP][77] ([i915#4270]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-6/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#4270]) +5 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-1/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_readwrite@new-obj: - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#3282]) +6 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-4/igt@gem_readwrite@new-obj.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][80] ([i915#8428]) +6 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-5/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-rkl: NOTRUN -> [SKIP][81] ([i915#8411]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-4/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_set_tiling_vs_gtt: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#4079]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-7/igt@gem_set_tiling_vs_gtt.html * igt@gem_set_tiling_vs_pwrite: - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#4079]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-7/igt@gem_set_tiling_vs_pwrite.html * igt@gem_softpin@evict-snoop: - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#4885]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-7/igt@gem_softpin@evict-snoop.html * igt@gem_spin_batch@spin-all-new: - shard-dg2: NOTRUN -> [FAIL][85] ([i915#5889]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-5/igt@gem_spin_batch@spin-all-new.html * igt@gem_spin_batch@spin-each: - shard-mtlp: [PASS][86] -> [DMESG-FAIL][87] ([i915#9121]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-mtlp-2/igt@gem_spin_batch@spin-each.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-4/igt@gem_spin_batch@spin-each.html * igt@gem_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#4077]) +12 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-11/igt@gem_tiled_blits@basic.html * igt@gem_unfence_active_buffers: - shard-mtlp: NOTRUN -> [SKIP][89] ([i915#4879]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-7/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@coherency-sync: - shard-rkl: NOTRUN -> [SKIP][90] ([fdo#110542]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-7/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#3297]) +2 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-11/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-rkl: NOTRUN -> [SKIP][92] ([i915#3297]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-1/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#3297] / [i915#4880]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-11/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg1: NOTRUN -> [SKIP][94] ([i915#3297] / [i915#4880]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg1-19/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@unsync-overlap: - shard-mtlp: NOTRUN -> [SKIP][95] ([i915#3297]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-4/igt@gem_userptr_blits@unsync-overlap.html * igt@gen7_exec_parse@basic-offset: - shard-dg2: NOTRUN -> [SKIP][96] ([fdo#109289]) +3 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-7/igt@gen7_exec_parse@basic-offset.html * igt@gen9_exec_parse@allowed-all: - shard-rkl: NOTRUN -> [SKIP][97] ([i915#2527]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-1/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [PASS][98] -> [INCOMPLETE][99] ([i915#5566]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-apl3/igt@gen9_exec_parse@allowed-single.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-apl4/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@basic-rejected: - shard-mtlp: NOTRUN -> [SKIP][100] ([i915#2856]) +6 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-4/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@batch-zero-length: - shard-dg1: NOTRUN -> [SKIP][101] ([i915#2527]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg1-12/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@secure-batches: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#2856]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-1/igt@gen9_exec_parse@secure-batches.html * igt@i915_fb_tiling: - shard-mtlp: NOTRUN -> [SKIP][103] ([i915#4881]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-1/igt@i915_fb_tiling.html * igt@i915_hwmon@hwmon-read: - shard-rkl: NOTRUN -> [SKIP][104] ([i915#7707]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-1/igt@i915_hwmon@hwmon-read.html * igt@i915_module_load@load: - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#6227]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-5/igt@i915_module_load@load.html * igt@i915_module_load@resize-bar: - shard-mtlp: NOTRUN -> [SKIP][106] ([i915#6412]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-3/igt@i915_module_load@resize-bar.html * igt@i915_pm_backlight@fade: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#5354] / [i915#7561]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-11/igt@i915_pm_backlight@fade.html * igt@i915_pm_backlight@fade-with-suspend: - shard-dg1: NOTRUN -> [SKIP][108] ([i915#5354] / [i915#7561]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg1-18/igt@i915_pm_backlight@fade-with-suspend.html * igt@i915_pm_dc@dc6-dpms: - shard-tglu: [PASS][109] -> [FAIL][110] ([i915#3989] / [i915#454]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-tglu-10/igt@i915_pm_dc@dc6-dpms.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-tglu-5/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_freq_mult@media-freq@gt1: - shard-mtlp: NOTRUN -> [SKIP][111] ([i915#6590]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-7/igt@i915_pm_freq_mult@media-freq@gt1.html * igt@i915_pm_lpsp@screens-disabled: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#1902]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-1/igt@i915_pm_lpsp@screens-disabled.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-dg1: [PASS][113] -> [FAIL][114] ([i915#3591]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_pm_rpm@dpms-mode-unset-lpsp: - shard-rkl: NOTRUN -> [SKIP][115] ([i915#1397]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-2/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][116] ([i915#1397]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-4/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-dg2: NOTRUN -> [SKIP][117] ([fdo#109506]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-5/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_rpm@modeset-lpsp: - shard-dg1: [PASS][118] -> [SKIP][119] ([i915#1397]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-dg1-19/igt@i915_pm_rpm@modeset-lpsp.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg1-15/igt@i915_pm_rpm@modeset-lpsp.html * igt@i915_pm_rpm@modeset-lpsp-stress: - shard-rkl: [PASS][120] -> [SKIP][121] ([i915#1397]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-rkl-7/igt@i915_pm_rpm@modeset-lpsp-stress.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-6/igt@i915_pm_rpm@modeset-lpsp-stress.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#1397]) +2 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-6/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@i915_pm_rpm@modeset-pc8-residency-stress: - shard-mtlp: NOTRUN -> [SKIP][123] ([fdo#109293]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-1/igt@i915_pm_rpm@modeset-pc8-residency-stress.html * igt@i915_pm_rps@basic-api: - shard-mtlp: NOTRUN -> [SKIP][124] ([i915#6621]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-7/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@reset: - shard-mtlp: NOTRUN -> [FAIL][125] ([i915#8346]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-1/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds-idle@gt0: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#8925]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-3/igt@i915_pm_rps@thresholds-idle@gt0.html * igt@i915_pm_rps@thresholds@gt1: - shard-mtlp: NOTRUN -> [SKIP][127] ([i915#8925]) +3 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-3/igt@i915_pm_rps@thresholds@gt1.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-mtlp: NOTRUN -> [SKIP][128] ([i915#6188]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-5/igt@i915_query@query-topology-coherent-slice-mask.html - shard-dg2: NOTRUN -> [SKIP][129] ([i915#6188]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-6/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_query@query-topology-unsupported: - shard-mtlp: NOTRUN -> [SKIP][130] ([fdo#109302]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-3/igt@i915_query@query-topology-unsupported.html * igt@i915_suspend@basic-s3-without-i915: - shard-mtlp: NOTRUN -> [SKIP][131] ([i915#6645]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-4/igt@i915_suspend@basic-s3-without-i915.html * igt@i915_suspend@forcewake: - shard-mtlp: NOTRUN -> [ABORT][132] ([i915#9262]) +5 other tests abort [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-6/igt@i915_suspend@forcewake.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#4212]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg1-17/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-mtlp: NOTRUN -> [SKIP][134] ([i915#5190]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#4215] / [i915#5190]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-1/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#4212]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-3/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4-mc_ccs: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#8502] / [i915#8709]) +11 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-6/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-a-hdmi-a-3-y-rc_ccs: - shard-dg1: NOTRUN -> [SKIP][138] ([i915#8502]) +7 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg1-13/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc_ccs.html * igt@kms_async_flips@crc@pipe-c-hdmi-a-1: - shard-dg1: NOTRUN -> [FAIL][139] ([i915#8247]) +3 other tests fail [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg1-19/igt@kms_async_flips@crc@pipe-c-hdmi-a-1.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#404]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-rkl: NOTRUN -> [SKIP][141] ([i915#404]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-mtlp: NOTRUN -> [SKIP][142] ([i915#1769] / [i915#3555]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#1769] / [i915#3555]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][144] ([fdo#111614]) +2 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-1/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][145] ([i915#4538] / [i915#5286]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg1-12/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-addfb: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#5286]) +1 other test skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-1/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: NOTRUN -> [FAIL][147] ([i915#5138]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][148] ([fdo#111614] / [i915#3638]) +2 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-1/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][149] ([fdo#111614]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-2/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#3638]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg1-13/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#5190]) +15 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-6/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-mtlp: NOTRUN -> [SKIP][152] ([fdo#111615]) +14 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-7/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][153] ([fdo#110723]) +2 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-6/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-mtlp: NOTRUN -> [SKIP][154] ([i915#6187]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-5/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#4538] / [i915#5190]) +5 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-11/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_mtl_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][156] ([i915#5354] / [i915#6095]) +5 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-1/igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#3886] / [i915#6095]) +15 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-1/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs: - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#5354] / [i915#6095]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-7/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs: - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#6095]) +51 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-3/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs.html * igt@kms_ccs@pipe-b-bad-aux-stride-4_tiled_mtl_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][160] ([i915#5354] / [i915#6095]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-tglu-3/igt@kms_ccs@pipe-b-bad-aux-stride-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#3734] / [i915#5354] / [i915#6095]) +1 other test skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-1/igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_ccs: - shard-snb: NOTRUN -> [SKIP][162] ([fdo#109271]) +201 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-snb4/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_ccs.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][163] ([i915#3886] / [i915#5354] / [i915#6095]) +2 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-1/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#3689] / [i915#3886] / [i915#5354]) +16 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-5/igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-crc-primary-rotation-180-yf_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][165] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-tglu-4/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][166] ([i915#5354] / [i915#6095]) +1 other test skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg1-15/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-d-crc-primary-basic-yf_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#3689] / [i915#5354]) +21 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-11/igt@kms_ccs@pipe-d-crc-primary-basic-yf_tiled_ccs.html * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#5354]) +11 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-7/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs.html * igt@kms_cdclk@mode-transition: - shard-rkl: NOTRUN -> [SKIP][169] ([i915#3742]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-7/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#4087] / [i915#7213]) +3 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-7/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#4087]) +3 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-6/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html * igt@kms_chamelium_color@ctm-0-50: - shard-rkl: NOTRUN -> [SKIP][172] ([fdo#111827]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-1/igt@kms_chamelium_color@ctm-0-50.html - shard-tglu: NOTRUN -> [SKIP][173] ([fdo#111827]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-tglu-4/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_color@ctm-negative: - shard-mtlp: NOTRUN -> [SKIP][174] ([fdo#111827]) +1 other test skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-3/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_color@gamma: - shard-dg2: NOTRUN -> [SKIP][175] ([fdo#111827]) +1 other test skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-11/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#7828]) +4 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-7/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_frames@hdmi-crc-multiple: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#7828]) +9 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-3/igt@kms_chamelium_frames@hdmi-crc-multiple.html * igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode: - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#7828]) +16 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-3/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html * igt@kms_color@deep-color: - shard-rkl: NOTRUN -> [SKIP][179] ([i915#3555]) +3 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-2/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#7118]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-6/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-mtlp: NOTRUN -> [SKIP][181] ([i915#3299]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-4/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#3299]) +1 other test skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-11/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic: - shard-mtlp: NOTRUN -> [SKIP][183] ([i915#6944]) +1 other test skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-4/igt@kms_content_protection@lic.html * igt@kms_content_protection@uevent@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][184] ([i915#1339]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-11/igt@kms_content_protection@uevent@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-offscreen-32x10: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#3555]) +5 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-6/igt@kms_cursor_crc@cursor-offscreen-32x10.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-mtlp: NOTRUN -> [SKIP][186] ([i915#3555] / [i915#8814]) +2 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-4/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-rkl: NOTRUN -> [SKIP][187] ([fdo#109279] / [i915#3359]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#3359]) +2 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-7/igt@kms_cursor_crc@cursor-random-512x170.html - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#3359]) +2 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-3/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#3359]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-1/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-mtlp: NOTRUN -> [SKIP][191] ([i915#4213]) +2 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html - shard-dg2: NOTRUN -> [SKIP][192] ([i915#4103] / [i915#4213]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#3546]) +5 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-2/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-rkl: NOTRUN -> [SKIP][194] ([fdo#111825]) +6 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-4/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg2: NOTRUN -> [SKIP][195] ([fdo#109274] / [i915#5354]) +6 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][196] ([fdo#111767] / [i915#3546]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [PASS][197] -> [FAIL][198] ([i915#2346]) +1 other test fail [197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html - shard-apl: [PASS][199] -> [FAIL][200] ([i915#2346]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_display_modes@extended-mode-basic: - shard-mtlp: NOTRUN -> [SKIP][201] ([i915#3555] / [i915#8827]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-1/igt@kms_display_modes@extended-mode-basic.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#8588]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-3/igt@kms_display_modes@mst-extended-mode-negative.html - shard-mtlp: NOTRUN -> [SKIP][203] ([i915#8588]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-4/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#3555] / [i915#3840]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-3/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#3840]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-3/igt@kms_dsc@dsc-with-output-formats.html * {igt@kms_feature_discovery@display-4x} (NEW): - shard-apl: NOTRUN -> [SKIP][206] ([fdo#109271]) +4 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-apl2/igt@kms_feature_discovery@display-4x.html - shard-glk: NOTRUN -> [SKIP][207] ([fdo#109271]) +5 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-glk7/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-mtlp: NOTRUN -> [SKIP][208] ([fdo#111767] / [i915#3637]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-3/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-snb: NOTRUN -> [SKIP][209] ([fdo#109271] / [fdo#111767]) +1 other test skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-snb2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][210] ([i915#8381]) +1 other test skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-7/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-suspend: - shard-mtlp: NOTRUN -> [SKIP][211] ([i915#3637]) +11 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-1/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][212] ([fdo#109274]) +4 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-3/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1: - shard-apl: [PASS][213] -> [FAIL][214] ([i915#79]) +1 other test fail [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-apl1/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-apl3/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][215] ([i915#2672]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][216] ([i915#2672]) +4 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][217] ([i915#8810]) +1 other test skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-1/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-valid-mode: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#2672]) +6 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#2672] / [i915#3555]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-mtlp: NOTRUN -> [SKIP][220] ([fdo#109285]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-7/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-mtlp: NOTRUN -> [SKIP][221] ([i915#5274]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-4/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#8708]) +13 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt: - shard-dg2: [PASS][223] -> [FAIL][224] ([i915#6880]) +1 other test fail [223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen: - shard-dg2: NOTRUN -> [FAIL][225] ([i915#6880]) +1 other test fail [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#5354]) +41 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][227] ([i915#8708]) +2 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#3458]) +20 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][229] ([fdo#111825] / [i915#1825]) +13 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][230] ([i915#1825]) +39 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][231] ([fdo#110189]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#8708]) +18 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg1: NOTRUN -> [SKIP][233] ([fdo#111825]) +3 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][234] ([i915#3023]) +14 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#6118]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-1/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#3555] / [i915#8228]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-7/igt@kms_hdr@static-toggle-suspend.html - shard-rkl: NOTRUN -> [SKIP][237] ([i915#3555] / [i915#8228]) +3 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-2/igt@kms_hdr@static-toggle-suspend.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#4816]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-dg2: NOTRUN -> [SKIP][239] ([i915#4816]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-rkl: NOTRUN -> [SKIP][240] ([fdo#109289]) +2 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-4/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c: - shard-mtlp: NOTRUN -> [SKIP][241] ([fdo#109289]) +8 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-3/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-1: - shard-apl: [PASS][242] -> [ABORT][243] ([i915#180]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-apl2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-1.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-apl7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-1.html * igt@kms_plane_lowres@tiling-x@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][244] ([i915#3582]) +7 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-3/igt@kms_plane_lowres@tiling-x@pipe-c-edp-1.html * igt@kms_plane_multiple@tiling-yf: - shard-mtlp: NOTRUN -> [SKIP][245] ([i915#3555] / [i915#8806]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-7/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][246] ([i915#5176]) +3 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][247] ([i915#5176]) +19 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg1-12/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#5176]) +7 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-7/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][249] ([i915#5176]) +3 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-1/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-20x20@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][250] ([i915#5235]) +7 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][251] ([i915#5235]) +15 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b-edp-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][252] ([i915#5235]) +15 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg1-17/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-25@pipe-c-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#5235]) +11 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-2.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#6524] / [i915#6805]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-3/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-modeset-hybrid: - shard-mtlp: NOTRUN -> [SKIP][255] ([i915#6524]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-7/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@cursor-plane-update-sf: - shard-rkl: NOTRUN -> [SKIP][256] ([fdo#111068] / [i915#658]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-2/igt@kms_psr2_sf@cursor-plane-update-sf.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#658]) +4 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-11/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb: - shard-rkl: NOTRUN -> [SKIP][258] ([i915#658]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-6/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-mtlp: NOTRUN -> [SKIP][259] ([i915#4348]) +3 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-8/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@psr2_primary_blt: - shard-dg2: NOTRUN -> [SKIP][260] ([i915#1072]) +8 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-5/igt@kms_psr@psr2_primary_blt.html * igt@kms_psr@psr2_sprite_plane_move: - shard-rkl: NOTRUN -> [SKIP][261] ([i915#1072]) +2 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-2/igt@kms_psr@psr2_sprite_plane_move.html * igt@kms_rotation_crc@bad-pixel-format: - shard-mtlp: NOTRUN -> [SKIP][262] ([i915#4235]) +1 other test skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-5/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@exhaust-fences: - shard-dg2: NOTRUN -> [SKIP][263] ([i915#4235]) +1 other test skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-3/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][264] ([i915#4235] / [i915#5190]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html - shard-rkl: [PASS][265] -> [INCOMPLETE][266] ([i915#8875]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-rkl-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-mtlp: NOTRUN -> [SKIP][267] ([i915#5289]) +2 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-d: - shard-mtlp: NOTRUN -> [SKIP][268] ([i915#5030]) +3 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-3/igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-d.html * igt@kms_selftest@drm_format_helper: - shard-dg2: NOTRUN -> [SKIP][269] ([i915#8661]) +3 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-7/igt@kms_selftest@drm_format_helper.html * igt@kms_selftest@framebuffer: - shard-mtlp: NOTRUN -> [SKIP][270] ([i915#8661]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-7/igt@kms_selftest@framebuffer.html * igt@kms_setmode@basic@pipe-a-vga-1: - shard-snb: NOTRUN -> [FAIL][271] ([i915#5465]) +1 other test fail [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-snb7/igt@kms_setmode@basic@pipe-a-vga-1.html * igt@kms_setmode@clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][272] ([i915#3555] / [i915#8809]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-1/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][273] ([i915#3555] / [i915#8823]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-7/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-rkl: NOTRUN -> [SKIP][274] ([i915#3555] / [i915#4098]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-4/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_tv_load_detect@load-detect: - shard-mtlp: NOTRUN -> [SKIP][275] ([fdo#109309]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-7/igt@kms_tv_load_detect@load-detect.html * igt@kms_universal_plane@universal-plane-pipe-d-functional: - shard-rkl: NOTRUN -> [SKIP][276] ([i915#4070] / [i915#533] / [i915#6768]) +1 other test skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-2/igt@kms_universal_plane@universal-plane-pipe-d-functional.html * igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend: - shard-snb: NOTRUN -> [DMESG-WARN][277] ([i915#8841]) +1 other test dmesg-warn [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-snb1/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html * igt@kms_vblank@pipe-c-query-forked-busy: - shard-rkl: NOTRUN -> [SKIP][278] ([i915#4070] / [i915#6768]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-1/igt@kms_vblank@pipe-c-query-forked-busy.html * igt@kms_vrr@flip-basic: - shard-mtlp: NOTRUN -> [SKIP][279] ([i915#3555] / [i915#8808]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-5/igt@kms_vrr@flip-basic.html * igt@kms_writeback@writeback-check-output: - shard-dg1: NOTRUN -> [SKIP][280] ([i915#2437]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg1-15/igt@kms_writeback@writeback-check-output.html - shard-mtlp: NOTRUN -> [SKIP][281] ([i915#2437]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-1/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-fb-id: - shard-dg2: NOTRUN -> [SKIP][282] ([i915#2437]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-3/igt@kms_writeback@writeback-fb-id.html * igt@perf@enable-disable@0-rcs0: - shard-mtlp: NOTRUN -> [FAIL][283] ([i915#7823]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-1/igt@perf@enable-disable@0-rcs0.html * igt@perf_pmu@all-busy-idle-check-all: - shard-dg2: [PASS][284] -> [FAIL][285] ([i915#5234]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-dg2-7/igt@perf_pmu@all-busy-idle-check-all.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-11/igt@perf_pmu@all-busy-idle-check-all.html - shard-dg1: [PASS][286] -> [FAIL][287] ([i915#5234]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-dg1-12/igt@perf_pmu@all-busy-idle-check-all.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg1-13/igt@perf_pmu@all-busy-idle-check-all.html * igt@perf_pmu@busy-accuracy-50@ccs0: - shard-mtlp: NOTRUN -> [FAIL][288] ([i915#4349]) +2 other tests fail [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-5/igt@perf_pmu@busy-accuracy-50@ccs0.html * igt@perf_pmu@busy-idle@bcs0: - shard-mtlp: [PASS][289] -> [FAIL][290] ([i915#4349]) +2 other tests fail [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-mtlp-4/igt@perf_pmu@busy-idle@bcs0.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-8/igt@perf_pmu@busy-idle@bcs0.html * igt@perf_pmu@cpu-hotplug: - shard-mtlp: NOTRUN -> [SKIP][291] ([i915#8850]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-3/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@event-wait@rcs0: - shard-mtlp: NOTRUN -> [SKIP][292] ([i915#8807]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-5/igt@perf_pmu@event-wait@rcs0.html * igt@perf_pmu@faulting-read@gtt: - shard-mtlp: NOTRUN -> [SKIP][293] ([i915#8440]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-1/igt@perf_pmu@faulting-read@gtt.html * igt@perf_pmu@module-unload: - shard-mtlp: NOTRUN -> [DMESG-WARN][294] ([i915#9260]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-4/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6-suspend: - shard-mtlp: NOTRUN -> [INCOMPLETE][295] ([i915#9268]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-4/igt@perf_pmu@rc6-suspend.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][296] ([i915#8516]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-3/igt@perf_pmu@rc6@other-idle-gt0.html * igt@perf_pmu@render-node-busy-idle@ccs2: - shard-dg2: NOTRUN -> [FAIL][297] ([i915#4349]) +4 other tests fail [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-11/igt@perf_pmu@render-node-busy-idle@ccs2.html * igt@prime_vgem@basic-blt: - shard-mtlp: NOTRUN -> [FAIL][298] ([i915#8445]) +1 other test fail [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-4/igt@prime_vgem@basic-blt.html * igt@prime_vgem@basic-gtt: - shard-mtlp: NOTRUN -> [SKIP][299] ([i915#3708] / [i915#4077]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-1/igt@prime_vgem@basic-gtt.html * igt@v3d/v3d_submit_cl@bad-bo: - shard-dg2: NOTRUN -> [SKIP][300] ([i915#2575]) +10 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-7/igt@v3d/v3d_submit_cl@bad-bo.html * igt@v3d/v3d_submit_cl@bad-extension: - shard-rkl: NOTRUN -> [SKIP][301] ([fdo#109315]) +3 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-4/igt@v3d/v3d_submit_cl@bad-extension.html * igt@v3d/v3d_submit_csd@bad-in-sync: - shard-dg1: NOTRUN -> [SKIP][302] ([i915#2575]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg1-18/igt@v3d/v3d_submit_csd@bad-in-sync.html * igt@v3d/v3d_wait_bo@used-bo: - shard-mtlp: NOTRUN -> [SKIP][303] ([i915#2575]) +21 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-8/igt@v3d/v3d_wait_bo@used-bo.html * igt@vc4/vc4_perfmon@create-perfmon-exceed: - shard-mtlp: NOTRUN -> [SKIP][304] ([i915#7711]) +9 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-7/igt@vc4/vc4_perfmon@create-perfmon-exceed.html * igt@vc4/vc4_tiling@set-bad-flags: - shard-rkl: NOTRUN -> [SKIP][305] ([i915#7711]) +3 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-6/igt@vc4/vc4_tiling@set-bad-flags.html * igt@vc4/vc4_wait_seqno@bad-seqno-1ns: - shard-dg2: NOTRUN -> [SKIP][306] ([i915#7711]) +9 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-2/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html #### Possible fixes #### * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: - shard-dg2: [INCOMPLETE][307] ([i915#7297]) -> [PASS][308] [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-dg2-10/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [FAIL][309] ([i915#2842]) -> [PASS][310] [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-apl7/igt@gem_exec_fair@basic-none-solo@rcs0.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-apl1/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][311] ([i915#2842]) -> [PASS][312] [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-glk2/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_schedule@noreorder@bcs0: - shard-mtlp: [DMESG-WARN][313] ([i915#9121] / [i915#9262]) -> [PASS][314] [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-mtlp-4/igt@gem_exec_schedule@noreorder@bcs0.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-6/igt@gem_exec_schedule@noreorder@bcs0.html * igt@gem_exec_schedule@noreorder@rcs0: - shard-mtlp: [ABORT][315] ([i915#4537] / [i915#9121] / [i915#9262]) -> [PASS][316] [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-mtlp-4/igt@gem_exec_schedule@noreorder@rcs0.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-6/igt@gem_exec_schedule@noreorder@rcs0.html * igt@i915_pm_dc@dc9-dpms: - shard-tglu: [SKIP][317] ([i915#4281]) -> [PASS][318] [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-tglu-2/igt@i915_pm_dc@dc9-dpms.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-tglu-2/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: - shard-dg1: [SKIP][319] ([i915#1937]) -> [PASS][320] [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-dg1-16/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg1-19/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html * igt@i915_pm_rc6_residency@rc6-idle@vcs0: - shard-dg1: [FAIL][321] ([i915#3591]) -> [PASS][322] +1 other test pass [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-dg1: [SKIP][323] ([i915#1397]) -> [PASS][324] +2 other tests pass [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-dg1-19/igt@i915_pm_rpm@dpms-non-lpsp.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg1-14/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@i2c: - shard-dg2: [FAIL][325] ([i915#8717]) -> [PASS][326] [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-dg2-2/igt@i915_pm_rpm@i2c.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-6/igt@i915_pm_rpm@i2c.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [SKIP][327] ([i915#1397]) -> [PASS][328] [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-2/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@i915_selftest@live@gt_heartbeat: - shard-apl: [DMESG-FAIL][329] ([i915#5334]) -> [PASS][330] [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-apl1/igt@i915_selftest@live@gt_heartbeat.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-apl6/igt@i915_selftest@live@gt_heartbeat.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [FAIL][331] ([i915#2346]) -> [PASS][332] [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt: - shard-dg2: [FAIL][333] ([i915#6880]) -> [PASS][334] +1 other test pass [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-rkl: [INCOMPLETE][335] ([i915#8875]) -> [PASS][336] [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-rkl-6/igt@kms_rotation_crc@sprite-rotation-90.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-1/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_vblank@pipe-d-ts-continuation-suspend: - shard-mtlp: [ABORT][337] ([i915#9262]) -> [PASS][338] +1 other test pass [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-mtlp-1/igt@kms_vblank@pipe-d-ts-continuation-suspend.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-mtlp-4/igt@kms_vblank@pipe-d-ts-continuation-suspend.html * igt@perf@enable-disable@0-rcs0: - shard-dg2: [FAIL][339] ([i915#8724]) -> [PASS][340] [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-dg2-11/igt@perf@enable-disable@0-rcs0.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-1/igt@perf@enable-disable@0-rcs0.html * igt@perf@i915-ref-count: - shard-apl: [FAIL][341] ([i915#9285]) -> [PASS][342] [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-apl6/igt@perf@i915-ref-count.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-apl7/igt@perf@i915-ref-count.html - shard-tglu: [FAIL][343] ([i915#9285]) -> [PASS][344] [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-tglu-4/igt@perf@i915-ref-count.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-tglu-6/igt@perf@i915-ref-count.html #### Warnings #### * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: [ABORT][345] ([i915#7461]) -> [INCOMPLETE][346] ([i915#9283]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-dg2-7/igt@gem_create@create-ext-cpu-access-big.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-6/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_eio@in-flight-suspend: - shard-snb: [DMESG-WARN][347] ([i915#8841]) -> [DMESG-FAIL][348] ([fdo#103375]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-snb2/igt@gem_eio@in-flight-suspend.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-snb7/igt@gem_eio@in-flight-suspend.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][349] ([i915#7118] / [i915#7162]) -> [SKIP][350] ([i915#7118]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-dg2-11/igt@kms_content_protection@type1.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-1/igt@kms_content_protection@type1.html * igt@kms_fbcon_fbt@psr: - shard-rkl: [SKIP][351] ([fdo#110189] / [i915#3955]) -> [SKIP][352] ([i915#3955]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-rkl-2/igt@kms_fbcon_fbt@psr.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-6/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][353] ([i915#3955]) -> [SKIP][354] ([fdo#110189] / [i915#3955]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_psr@primary_mmap_gtt: - shard-dg1: [SKIP][355] ([i915#1072]) -> [SKIP][356] ([i915#1072] / [i915#4078]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-dg1-15/igt@kms_psr@primary_mmap_gtt.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg1-16/igt@kms_psr@primary_mmap_gtt.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [CRASH][357] ([i915#7331]) -> [INCOMPLETE][358] ([i915#5493]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13613/shard-dg2-6/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/shard-dg2-7/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#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [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#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1339]: https://gitlab.freedesktop.org/drm/intel/issues/1339 [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#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#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#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [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#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#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#3778]: https://gitlab.freedesktop.org/drm/intel/issues/3778 [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#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#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#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4475]: https://gitlab.freedesktop.org/drm/intel/issues/4475 [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#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#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [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#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#5030]: https://gitlab.freedesktop.org/drm/intel/issues/5030 [i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#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#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5889]: https://gitlab.freedesktop.org/drm/intel/issues/5889 [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#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412 [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#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6786]: https://gitlab.freedesktop.org/drm/intel/issues/6786 [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#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162 [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#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7816]: https://gitlab.freedesktop.org/drm/intel/issues/7816 [i915#7823]: https://gitlab.freedesktop.org/drm/intel/issues/7823 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [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#8346]: https://gitlab.freedesktop.org/drm/intel/issues/8346 [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#8440]: https://gitlab.freedesktop.org/drm/intel/issues/8440 [i915#8445]: https://gitlab.freedesktop.org/drm/intel/issues/8445 [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#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#8717]: https://gitlab.freedesktop.org/drm/intel/issues/8717 [i915#8724]: https://gitlab.freedesktop.org/drm/intel/issues/8724 [i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806 [i915#8807]: https://gitlab.freedesktop.org/drm/intel/issues/8807 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [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#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850 [i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#8962]: https://gitlab.freedesktop.org/drm/intel/issues/8962 [i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053 [i915#9119]: https://gitlab.freedesktop.org/drm/intel/issues/9119 [i915#9121]: https://gitlab.freedesktop.org/drm/intel/issues/9121 [i915#9260]: https://gitlab.freedesktop.org/drm/intel/issues/9260 [i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262 [i915#9268]: https://gitlab.freedesktop.org/drm/intel/issues/9268 [i915#9283]: https://gitlab.freedesktop.org/drm/intel/issues/9283 [i915#9285]: https://gitlab.freedesktop.org/drm/intel/issues/9285 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7474 -> IGTPW_9749 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13613: 25ec37710fd81562fd25eccebaac156d9334ff0c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9749: 9749 IGT_7474: 9d91cf2c6e7bb64d60c2030d1535e40ca0ad53ee @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9749/index.html [-- Attachment #2: Type: text/html, Size: 117523 bytes --] ^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2023-09-12 6:40 UTC | newest] Thread overview: 14+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-09-08 7:00 [igt-dev] [PATCH i-g-t 0/4] enable feature-discovery tests Swati Sharma 2023-09-08 7:00 ` [igt-dev] [PATCH i-g-t 1/4] tests: rename feature_discovery to kms_feature_discovery Swati Sharma 2023-09-08 16:59 ` Kamil Konieczny 2023-09-11 14:24 ` Modem, Bhanuprakash 2023-09-08 7:00 ` [igt-dev] [PATCH i-g-t 2/4] tests/kms_feature_discovery: add testplan documentation Swati Sharma 2023-09-11 14:27 ` Modem, Bhanuprakash 2023-09-12 6:39 ` Sharma, Swati2 2023-09-08 7:00 ` [igt-dev] [PATCH i-g-t 3/4] tests/intel-ci: remove feature_discovery from blocklist Swati Sharma 2023-09-11 14:28 ` Modem, Bhanuprakash 2023-09-08 7:00 ` [igt-dev] [PATCH i-g-t 4/4] tests/kms_feature_discovery: detect mst configuration Swati Sharma 2023-09-11 14:30 ` Modem, Bhanuprakash 2023-09-08 8:06 ` [igt-dev] ✓ CI.xeBAT: success for enable feature-discovery tests (rev2) Patchwork 2023-09-08 8:11 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork 2023-09-08 13:17 ` [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