* [igt-dev] [PATCH i-g-t 0/3] Improve testlist parsing by test_list.py
@ 2023-10-13 9:29 Mauro Carvalho Chehab
2023-10-13 9:29 ` [igt-dev] [PATCH i-g-t 1/3] scripts/test_list.py: allow ignoring uppercase on testlist read Mauro Carvalho Chehab
` (5 more replies)
0 siblings, 6 replies; 11+ messages in thread
From: Mauro Carvalho Chehab @ 2023-10-13 9:29 UTC (permalink / raw)
To: igt-dev
From: Mauro Carvalho Chehab <mchehab@kernel.org>
This small series improve testlist parsing by:
- allow using case-independent regexes to filter tests;
- change KMS testlist regexes to be case-insensitive;
- better name config options to include and exclude field data
from files with a list of tests with the same value.
Mauro Carvalho Chehab (3):
scripts/test_list.py: allow ignoring uppercase on testlist read
intel/kms_test_config.json: set testlist read parser to ignore case
scripts/test_list.py: better name testlist include/exclude config
fields
scripts/test_list.py | 36 +++++++++++++++++---------------
tests/intel/kms_test_config.json | 5 +++--
tests/intel/xe_test_config.json | 4 ++--
3 files changed, 24 insertions(+), 21 deletions(-)
--
2.41.0
^ permalink raw reply [flat|nested] 11+ messages in thread* [igt-dev] [PATCH i-g-t 1/3] scripts/test_list.py: allow ignoring uppercase on testlist read 2023-10-13 9:29 [igt-dev] [PATCH i-g-t 0/3] Improve testlist parsing by test_list.py Mauro Carvalho Chehab @ 2023-10-13 9:29 ` Mauro Carvalho Chehab 2023-10-13 14:42 ` Kamil Konieczny 2023-10-13 9:29 ` [igt-dev] [PATCH i-g-t 2/3] intel/kms_test_config.json: set testlist read parser to ignore case Mauro Carvalho Chehab ` (4 subsequent siblings) 5 siblings, 1 reply; 11+ messages in thread From: Mauro Carvalho Chehab @ 2023-10-13 9:29 UTC (permalink / raw) To: igt-dev From: Mauro Carvalho Chehab <mchehab@kernel.org> There are some tests in KMS which uses uppercase names. Add a config option on test_list.py json handler to allow parsing testlist regular expressions on a case-insensitive way. Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> --- scripts/test_list.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/scripts/test_list.py b/scripts/test_list.py index c0462188ba8a..c75d15bfca73 100644 --- a/scripts/test_list.py +++ b/scripts/test_list.py @@ -321,6 +321,10 @@ class TestList: self.props["Class"]["_properties_"]["level"] = 1 self.props["Class"]["_properties_"]["sublevel"] = sublevel_count[0] + 1 + flags = 0 + if self.config.get("case_insensitive_testlist", False): + flags |= re.IGNORECASE + # Remove non-multilevel items, as we're only interested on # hierarchical item levels here for field, item in self.props.items(): @@ -335,7 +339,7 @@ class TestList: testlist = {} for value in item["_properties_"]["testlists"]: for name in value.keys(): - self.read_testlist(testlist, name, cfg_path + value[name]) + self.read_testlist(testlist, name, cfg_path + value[name], flags) item["_properties_"]["testlist"] = testlist @@ -344,7 +348,7 @@ class TestList: blocklist = {} for value in item["_properties_"]["blocklists"]: for name in value.keys(): - self.read_testlist(testlist, name, cfg_path + value[name]) + self.read_testlist(testlist, name, cfg_path + value[name], flags) item["_properties_"]["blocklist"] = blocklist @@ -448,7 +452,7 @@ class TestList: self.__add_field(key, sublevel, hierarchy_level, field[key]) - def read_testlist(self, testlist, name, filename): + def read_testlist(self, testlist, name, filename, flags): base = r"^\s*({}[^\s\{}]+)(\S*)\s*(\#.*)?$" regex = re.compile(base.format(self.main_name, self.subtest_separator)) @@ -462,7 +466,7 @@ class TestList: subtest = match.group(2) if not subtest.endswith("$"): subtest += r"(\@.*)?$" - testlist[name].append(re.compile(f"{test}{subtest}")) + testlist[name].append(re.compile(f"{test}{subtest}", flags)) def __filter_subtest(self, test, subtest, field_not_found_value): -- 2.41.0 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/3] scripts/test_list.py: allow ignoring uppercase on testlist read 2023-10-13 9:29 ` [igt-dev] [PATCH i-g-t 1/3] scripts/test_list.py: allow ignoring uppercase on testlist read Mauro Carvalho Chehab @ 2023-10-13 14:42 ` Kamil Konieczny 0 siblings, 0 replies; 11+ messages in thread From: Kamil Konieczny @ 2023-10-13 14:42 UTC (permalink / raw) To: igt-dev Hi Mauro, On 2023-10-13 at 11:29:27 +0200, Mauro Carvalho Chehab wrote: > From: Mauro Carvalho Chehab <mchehab@kernel.org> > > There are some tests in KMS which uses uppercase names. Add a > config option on test_list.py json handler to allow parsing > testlist regular expressions on a case-insensitive way. > > Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > --- > scripts/test_list.py | 12 ++++++++---- > 1 file changed, 8 insertions(+), 4 deletions(-) > > diff --git a/scripts/test_list.py b/scripts/test_list.py > index c0462188ba8a..c75d15bfca73 100644 > --- a/scripts/test_list.py > +++ b/scripts/test_list.py > @@ -321,6 +321,10 @@ class TestList: > self.props["Class"]["_properties_"]["level"] = 1 > self.props["Class"]["_properties_"]["sublevel"] = sublevel_count[0] + 1 > > + flags = 0 > + if self.config.get("case_insensitive_testlist", False): > + flags |= re.IGNORECASE > + > # Remove non-multilevel items, as we're only interested on > # hierarchical item levels here > for field, item in self.props.items(): > @@ -335,7 +339,7 @@ class TestList: > testlist = {} > for value in item["_properties_"]["testlists"]: > for name in value.keys(): > - self.read_testlist(testlist, name, cfg_path + value[name]) > + self.read_testlist(testlist, name, cfg_path + value[name], flags) > > item["_properties_"]["testlist"] = testlist > > @@ -344,7 +348,7 @@ class TestList: > blocklist = {} > for value in item["_properties_"]["blocklists"]: > for name in value.keys(): > - self.read_testlist(testlist, name, cfg_path + value[name]) > + self.read_testlist(testlist, name, cfg_path + value[name], flags) > > item["_properties_"]["blocklist"] = blocklist > > @@ -448,7 +452,7 @@ class TestList: > > self.__add_field(key, sublevel, hierarchy_level, field[key]) > > - def read_testlist(self, testlist, name, filename): > + def read_testlist(self, testlist, name, filename, flags): > base = r"^\s*({}[^\s\{}]+)(\S*)\s*(\#.*)?$" > regex = re.compile(base.format(self.main_name, self.subtest_separator)) > > @@ -462,7 +466,7 @@ class TestList: > subtest = match.group(2) > if not subtest.endswith("$"): > subtest += r"(\@.*)?$" > - testlist[name].append(re.compile(f"{test}{subtest}")) > + testlist[name].append(re.compile(f"{test}{subtest}", flags)) > > def __filter_subtest(self, test, subtest, field_not_found_value): > > -- > 2.41.0 > ^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] [PATCH i-g-t 2/3] intel/kms_test_config.json: set testlist read parser to ignore case 2023-10-13 9:29 [igt-dev] [PATCH i-g-t 0/3] Improve testlist parsing by test_list.py Mauro Carvalho Chehab 2023-10-13 9:29 ` [igt-dev] [PATCH i-g-t 1/3] scripts/test_list.py: allow ignoring uppercase on testlist read Mauro Carvalho Chehab @ 2023-10-13 9:29 ` Mauro Carvalho Chehab 2023-10-13 14:43 ` Kamil Konieczny 2023-10-13 9:29 ` [igt-dev] [PATCH i-g-t 3/3] scripts/test_list.py: better name testlist include/exclude config fields Mauro Carvalho Chehab ` (3 subsequent siblings) 5 siblings, 1 reply; 11+ messages in thread From: Mauro Carvalho Chehab @ 2023-10-13 9:29 UTC (permalink / raw) To: igt-dev From: Mauro Carvalho Chehab <mchehab@kernel.org> As KMS ports are described in upper case, relax testlist parser to ignore case, as the regular expressions at intel-ci may be in lower case. Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> --- tests/intel/kms_test_config.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/intel/kms_test_config.json b/tests/intel/kms_test_config.json index ad3a3aa7abb5..6c9b7194a58f 100644 --- a/tests/intel/kms_test_config.json +++ b/tests/intel/kms_test_config.json @@ -4,6 +4,7 @@ "files": [ "../chamelium/kms_*.c", "../kms_*.c", "../testdisplay.c", "kms_*.c" ], "exclude_files": [ "../chamelium/kms_chamelium_helper.c", "../kms_color_helper.c", "kms_dsc_helper.c" ], + "case_insensitive_testlist": true, "fields": { "Category": { "_properties_": { -- 2.41.0 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 2/3] intel/kms_test_config.json: set testlist read parser to ignore case 2023-10-13 9:29 ` [igt-dev] [PATCH i-g-t 2/3] intel/kms_test_config.json: set testlist read parser to ignore case Mauro Carvalho Chehab @ 2023-10-13 14:43 ` Kamil Konieczny 0 siblings, 0 replies; 11+ messages in thread From: Kamil Konieczny @ 2023-10-13 14:43 UTC (permalink / raw) To: igt-dev Hi Mauro, On 2023-10-13 at 11:29:28 +0200, Mauro Carvalho Chehab wrote: > From: Mauro Carvalho Chehab <mchehab@kernel.org> > > As KMS ports are described in upper case, relax testlist parser to > ignore case, as the regular expressions at intel-ci may be in lower > case. > > Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > --- > tests/intel/kms_test_config.json | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/tests/intel/kms_test_config.json b/tests/intel/kms_test_config.json > index ad3a3aa7abb5..6c9b7194a58f 100644 > --- a/tests/intel/kms_test_config.json > +++ b/tests/intel/kms_test_config.json > @@ -4,6 +4,7 @@ > "files": [ "../chamelium/kms_*.c", "../kms_*.c", "../testdisplay.c", "kms_*.c" ], > "exclude_files": [ "../chamelium/kms_chamelium_helper.c", "../kms_color_helper.c", > "kms_dsc_helper.c" ], > + "case_insensitive_testlist": true, > "fields": { > "Category": { > "_properties_": { > -- > 2.41.0 > ^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] [PATCH i-g-t 3/3] scripts/test_list.py: better name testlist include/exclude config fields 2023-10-13 9:29 [igt-dev] [PATCH i-g-t 0/3] Improve testlist parsing by test_list.py Mauro Carvalho Chehab 2023-10-13 9:29 ` [igt-dev] [PATCH i-g-t 1/3] scripts/test_list.py: allow ignoring uppercase on testlist read Mauro Carvalho Chehab 2023-10-13 9:29 ` [igt-dev] [PATCH i-g-t 2/3] intel/kms_test_config.json: set testlist read parser to ignore case Mauro Carvalho Chehab @ 2023-10-13 9:29 ` Mauro Carvalho Chehab 2023-10-13 14:46 ` Kamil Konieczny 2023-10-13 12:52 ` [igt-dev] ✓ Fi.CI.BAT: success for Improve testlist parsing by test_list.py Patchwork ` (2 subsequent siblings) 5 siblings, 1 reply; 11+ messages in thread From: Mauro Carvalho Chehab @ 2023-10-13 9:29 UTC (permalink / raw) To: igt-dev From: Mauro Carvalho Chehab <mchehab@kernel.org> The config names "testlists" and "blocklists" are confusing, as they don't have the same concept of such lists used within IGT. What the test_list logic does, instead, is to fill a field with a value for all tests included from a file, except for the ones marked on an exclude testlist. Use the name "include" for the tag defining the file name containing a list of tests to be included. On a similar way, use "exclude" to mean the file name containg a list of tests to be excluded. While here, remove two class variables originally planned for the testlist/blocklist logic that aren't actually used. Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> --- scripts/test_list.py | 24 +++++++++++------------- tests/intel/kms_test_config.json | 4 ++-- tests/intel/xe_test_config.json | 4 ++-- 3 files changed, 15 insertions(+), 17 deletions(-) diff --git a/scripts/test_list.py b/scripts/test_list.py index c75d15bfca73..e54873f07e20 100644 --- a/scripts/test_list.py +++ b/scripts/test_list.py @@ -260,8 +260,6 @@ class TestList: self.igt_build_path = igt_build_path self.level_count = 0 self.field_list = {} - self.testlist = {} - self.blocklist = {} self.title = None self.filters = {} self.subtest_separator = subtest_separator @@ -335,22 +333,22 @@ class TestList: del item["_properties_"]["sublevel"] # Read testlist files if any - if "testlists" in item["_properties_"]: + if "include" in item["_properties_"]: testlist = {} - for value in item["_properties_"]["testlists"]: + for value in item["_properties_"]["include"]: for name in value.keys(): self.read_testlist(testlist, name, cfg_path + value[name], flags) - item["_properties_"]["testlist"] = testlist + item["_properties_"]["include"] = testlist # Read blocklist files if any - if "blocklists" in item["_properties_"]: - blocklist = {} - for value in item["_properties_"]["blocklists"]: + if "exclude" in item["_properties_"]: + testlist = {} + for value in item["_properties_"]["exclude"]: for name in value.keys(): self.read_testlist(testlist, name, cfg_path + value[name], flags) - item["_properties_"]["blocklist"] = blocklist + item["_properties_"]["exclude"] = testlist if "_properties_" in self.props: del self.props["_properties_"] @@ -490,7 +488,7 @@ class TestList: if "_properties_" not in self.props[field]: continue - if "testlist" not in self.props[field]["_properties_"]: + if "include" not in self.props[field]["_properties_"]: continue default_value = self.props[field]["_properties_"].get("default-testlist") @@ -503,7 +501,7 @@ class TestList: else: values = set() - for names, regex_array in self.props[field]["_properties_"]["testlist"].items(): + for names, regex_array in self.props[field]["_properties_"]["include"].items(): name = set(re.split(",\s*", names)) for regex in regex_array: if regex.match(testname): @@ -512,8 +510,8 @@ class TestList: # If test is at a global blocklist, ignore it set_full_if_empty = True - if "blocklist" in self.props[field]["_properties_"]: - for names, regex_array in self.props[field]["_properties_"]["testlist"].items(): + if "exclude" in self.props[field]["_properties_"]: + for names, regex_array in self.props[field]["_properties_"]["exclude"].items(): deleted_names = set(re.split(",\s*", names)) for regex in regex_array: if regex.match(testname): diff --git a/tests/intel/kms_test_config.json b/tests/intel/kms_test_config.json index 6c9b7194a58f..40cf69dd0904 100644 --- a/tests/intel/kms_test_config.json +++ b/tests/intel/kms_test_config.json @@ -24,7 +24,7 @@ "_properties_": { "description": "Defines what category of testlist it belongs", "default-testlist": "FULL", - "testlists": [ + "include": [ { "i915 BAT": "../intel-ci/fast-feedback.testlist" }, { "i915 BAT chamelium": "../intel-ci/fast-feedback-chamelium-only.testlist" }, { "i915 chamelium": "../intel-ci/chamelium-only.testlist" }, @@ -32,7 +32,7 @@ { "Xe BAT": "../intel-ci/xe-fast-feedback.testlist" }, { "Xe BAT chamelium": "../intel-ci/xe-fast-feedback-chamelium-only.testlist" } ], - "blocklists": [ + "exclude": [ { "i915 BAT, i915 BAT chamelium, i915 chamelium": "../intel-ci/blacklist.txt" }, { "Xe BAT, Xe BAT chamelium": "../intel-ci/xe.blocklist.txt" } ] diff --git a/tests/intel/xe_test_config.json b/tests/intel/xe_test_config.json index 89df8a1a3ad2..20faf73b7270 100644 --- a/tests/intel/xe_test_config.json +++ b/tests/intel/xe_test_config.json @@ -33,10 +33,10 @@ "mandatory": true, "description": "Defines what category of testlist it belongs", "default-testlist": "FULL", - "testlists": [ + "include": [ { "Xe BAT": "../intel-ci/xe-fast-feedback.testlist" } ], - "blocklists": [ + "exclude": [ { "Xe BAT": "../intel-ci/xe.blocklist.txt" } ], "order": [ -- 2.41.0 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 3/3] scripts/test_list.py: better name testlist include/exclude config fields 2023-10-13 9:29 ` [igt-dev] [PATCH i-g-t 3/3] scripts/test_list.py: better name testlist include/exclude config fields Mauro Carvalho Chehab @ 2023-10-13 14:46 ` Kamil Konieczny 2023-10-13 15:10 ` Mauro Carvalho Chehab 0 siblings, 1 reply; 11+ messages in thread From: Kamil Konieczny @ 2023-10-13 14:46 UTC (permalink / raw) To: igt-dev Hi Mauro, On 2023-10-13 at 11:29:29 +0200, Mauro Carvalho Chehab wrote: > From: Mauro Carvalho Chehab <mchehab@kernel.org> > > The config names "testlists" and "blocklists" are confusing, as they > don't have the same concept of such lists used within IGT. > > What the test_list logic does, instead, is to fill a field with > a value for all tests included from a file, except for the ones > marked on an exclude testlist. > > Use the name "include" for the tag defining the file name > containing a list of tests to be included. > > On a similar way, use "exclude" to mean the file name containg > a list of tests to be excluded. > > While here, remove two class variables originally planned for > the testlist/blocklist logic that aren't actually used. > > Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> Exclude seems ok but include may be somewhat confusing. I hope it will not mislead people. Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > --- > scripts/test_list.py | 24 +++++++++++------------- > tests/intel/kms_test_config.json | 4 ++-- > tests/intel/xe_test_config.json | 4 ++-- > 3 files changed, 15 insertions(+), 17 deletions(-) > > diff --git a/scripts/test_list.py b/scripts/test_list.py > index c75d15bfca73..e54873f07e20 100644 > --- a/scripts/test_list.py > +++ b/scripts/test_list.py > @@ -260,8 +260,6 @@ class TestList: > self.igt_build_path = igt_build_path > self.level_count = 0 > self.field_list = {} > - self.testlist = {} > - self.blocklist = {} > self.title = None > self.filters = {} > self.subtest_separator = subtest_separator > @@ -335,22 +333,22 @@ class TestList: > del item["_properties_"]["sublevel"] > > # Read testlist files if any > - if "testlists" in item["_properties_"]: > + if "include" in item["_properties_"]: > testlist = {} > - for value in item["_properties_"]["testlists"]: > + for value in item["_properties_"]["include"]: > for name in value.keys(): > self.read_testlist(testlist, name, cfg_path + value[name], flags) > > - item["_properties_"]["testlist"] = testlist > + item["_properties_"]["include"] = testlist > > # Read blocklist files if any > - if "blocklists" in item["_properties_"]: > - blocklist = {} > - for value in item["_properties_"]["blocklists"]: > + if "exclude" in item["_properties_"]: > + testlist = {} > + for value in item["_properties_"]["exclude"]: > for name in value.keys(): > self.read_testlist(testlist, name, cfg_path + value[name], flags) > > - item["_properties_"]["blocklist"] = blocklist > + item["_properties_"]["exclude"] = testlist > > if "_properties_" in self.props: > del self.props["_properties_"] > @@ -490,7 +488,7 @@ class TestList: > if "_properties_" not in self.props[field]: > continue > > - if "testlist" not in self.props[field]["_properties_"]: > + if "include" not in self.props[field]["_properties_"]: > continue > > default_value = self.props[field]["_properties_"].get("default-testlist") > @@ -503,7 +501,7 @@ class TestList: > else: > values = set() > > - for names, regex_array in self.props[field]["_properties_"]["testlist"].items(): > + for names, regex_array in self.props[field]["_properties_"]["include"].items(): > name = set(re.split(",\s*", names)) > for regex in regex_array: > if regex.match(testname): > @@ -512,8 +510,8 @@ class TestList: > > # If test is at a global blocklist, ignore it > set_full_if_empty = True > - if "blocklist" in self.props[field]["_properties_"]: > - for names, regex_array in self.props[field]["_properties_"]["testlist"].items(): > + if "exclude" in self.props[field]["_properties_"]: > + for names, regex_array in self.props[field]["_properties_"]["exclude"].items(): > deleted_names = set(re.split(",\s*", names)) > for regex in regex_array: > if regex.match(testname): > diff --git a/tests/intel/kms_test_config.json b/tests/intel/kms_test_config.json > index 6c9b7194a58f..40cf69dd0904 100644 > --- a/tests/intel/kms_test_config.json > +++ b/tests/intel/kms_test_config.json > @@ -24,7 +24,7 @@ > "_properties_": { > "description": "Defines what category of testlist it belongs", > "default-testlist": "FULL", > - "testlists": [ > + "include": [ > { "i915 BAT": "../intel-ci/fast-feedback.testlist" }, > { "i915 BAT chamelium": "../intel-ci/fast-feedback-chamelium-only.testlist" }, > { "i915 chamelium": "../intel-ci/chamelium-only.testlist" }, > @@ -32,7 +32,7 @@ > { "Xe BAT": "../intel-ci/xe-fast-feedback.testlist" }, > { "Xe BAT chamelium": "../intel-ci/xe-fast-feedback-chamelium-only.testlist" } > ], > - "blocklists": [ > + "exclude": [ > { "i915 BAT, i915 BAT chamelium, i915 chamelium": "../intel-ci/blacklist.txt" }, > { "Xe BAT, Xe BAT chamelium": "../intel-ci/xe.blocklist.txt" } > ] > diff --git a/tests/intel/xe_test_config.json b/tests/intel/xe_test_config.json > index 89df8a1a3ad2..20faf73b7270 100644 > --- a/tests/intel/xe_test_config.json > +++ b/tests/intel/xe_test_config.json > @@ -33,10 +33,10 @@ > "mandatory": true, > "description": "Defines what category of testlist it belongs", > "default-testlist": "FULL", > - "testlists": [ > + "include": [ > { "Xe BAT": "../intel-ci/xe-fast-feedback.testlist" } > ], > - "blocklists": [ > + "exclude": [ > { "Xe BAT": "../intel-ci/xe.blocklist.txt" } > ], > "order": [ > -- > 2.41.0 > ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 3/3] scripts/test_list.py: better name testlist include/exclude config fields 2023-10-13 14:46 ` Kamil Konieczny @ 2023-10-13 15:10 ` Mauro Carvalho Chehab 0 siblings, 0 replies; 11+ messages in thread From: Mauro Carvalho Chehab @ 2023-10-13 15:10 UTC (permalink / raw) To: Kamil Konieczny; +Cc: igt-dev On Fri, 13 Oct 2023 16:46:09 +0200 Kamil Konieczny <kamil.konieczny@linux.intel.com> wrote: > Hi Mauro, > On 2023-10-13 at 11:29:29 +0200, Mauro Carvalho Chehab wrote: > > From: Mauro Carvalho Chehab <mchehab@kernel.org> > > > > The config names "testlists" and "blocklists" are confusing, as they > > don't have the same concept of such lists used within IGT. > > > > What the test_list logic does, instead, is to fill a field with > > a value for all tests included from a file, except for the ones > > marked on an exclude testlist. > > > > Use the name "include" for the tag defining the file name > > containing a list of tests to be included. > > > > On a similar way, use "exclude" to mean the file name containg > > a list of tests to be excluded. > > > > While here, remove two class variables originally planned for > > the testlist/blocklist logic that aren't actually used. > > > > Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> > > Exclude seems ok but include may be somewhat confusing. > I hope it will not mislead people. Well, we need something symmetric. So include/exclude is an option, due to the lack of a better name for those ;-) > > Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > > > --- > > scripts/test_list.py | 24 +++++++++++------------- > > tests/intel/kms_test_config.json | 4 ++-- > > tests/intel/xe_test_config.json | 4 ++-- > > 3 files changed, 15 insertions(+), 17 deletions(-) > > > > diff --git a/scripts/test_list.py b/scripts/test_list.py > > index c75d15bfca73..e54873f07e20 100644 > > --- a/scripts/test_list.py > > +++ b/scripts/test_list.py > > @@ -260,8 +260,6 @@ class TestList: > > self.igt_build_path = igt_build_path > > self.level_count = 0 > > self.field_list = {} > > - self.testlist = {} > > - self.blocklist = {} > > self.title = None > > self.filters = {} > > self.subtest_separator = subtest_separator > > @@ -335,22 +333,22 @@ class TestList: > > del item["_properties_"]["sublevel"] > > > > # Read testlist files if any > > - if "testlists" in item["_properties_"]: > > + if "include" in item["_properties_"]: > > testlist = {} > > - for value in item["_properties_"]["testlists"]: > > + for value in item["_properties_"]["include"]: > > for name in value.keys(): > > self.read_testlist(testlist, name, cfg_path + value[name], flags) > > > > - item["_properties_"]["testlist"] = testlist > > + item["_properties_"]["include"] = testlist > > > > # Read blocklist files if any > > - if "blocklists" in item["_properties_"]: > > - blocklist = {} > > - for value in item["_properties_"]["blocklists"]: > > + if "exclude" in item["_properties_"]: > > + testlist = {} > > + for value in item["_properties_"]["exclude"]: > > for name in value.keys(): > > self.read_testlist(testlist, name, cfg_path + value[name], flags) > > > > - item["_properties_"]["blocklist"] = blocklist > > + item["_properties_"]["exclude"] = testlist > > > > if "_properties_" in self.props: > > del self.props["_properties_"] > > @@ -490,7 +488,7 @@ class TestList: > > if "_properties_" not in self.props[field]: > > continue > > > > - if "testlist" not in self.props[field]["_properties_"]: > > + if "include" not in self.props[field]["_properties_"]: > > continue > > > > default_value = self.props[field]["_properties_"].get("default-testlist") > > @@ -503,7 +501,7 @@ class TestList: > > else: > > values = set() > > > > - for names, regex_array in self.props[field]["_properties_"]["testlist"].items(): > > + for names, regex_array in self.props[field]["_properties_"]["include"].items(): > > name = set(re.split(",\s*", names)) > > for regex in regex_array: > > if regex.match(testname): > > @@ -512,8 +510,8 @@ class TestList: > > > > # If test is at a global blocklist, ignore it > > set_full_if_empty = True > > - if "blocklist" in self.props[field]["_properties_"]: > > - for names, regex_array in self.props[field]["_properties_"]["testlist"].items(): > > + if "exclude" in self.props[field]["_properties_"]: > > + for names, regex_array in self.props[field]["_properties_"]["exclude"].items(): > > deleted_names = set(re.split(",\s*", names)) > > for regex in regex_array: > > if regex.match(testname): > > diff --git a/tests/intel/kms_test_config.json b/tests/intel/kms_test_config.json > > index 6c9b7194a58f..40cf69dd0904 100644 > > --- a/tests/intel/kms_test_config.json > > +++ b/tests/intel/kms_test_config.json > > @@ -24,7 +24,7 @@ > > "_properties_": { > > "description": "Defines what category of testlist it belongs", > > "default-testlist": "FULL", > > - "testlists": [ > > + "include": [ > > { "i915 BAT": "../intel-ci/fast-feedback.testlist" }, > > { "i915 BAT chamelium": "../intel-ci/fast-feedback-chamelium-only.testlist" }, > > { "i915 chamelium": "../intel-ci/chamelium-only.testlist" }, > > @@ -32,7 +32,7 @@ > > { "Xe BAT": "../intel-ci/xe-fast-feedback.testlist" }, > > { "Xe BAT chamelium": "../intel-ci/xe-fast-feedback-chamelium-only.testlist" } > > ], > > - "blocklists": [ > > + "exclude": [ > > { "i915 BAT, i915 BAT chamelium, i915 chamelium": "../intel-ci/blacklist.txt" }, > > { "Xe BAT, Xe BAT chamelium": "../intel-ci/xe.blocklist.txt" } > > ] > > diff --git a/tests/intel/xe_test_config.json b/tests/intel/xe_test_config.json > > index 89df8a1a3ad2..20faf73b7270 100644 > > --- a/tests/intel/xe_test_config.json > > +++ b/tests/intel/xe_test_config.json > > @@ -33,10 +33,10 @@ > > "mandatory": true, > > "description": "Defines what category of testlist it belongs", > > "default-testlist": "FULL", > > - "testlists": [ > > + "include": [ > > { "Xe BAT": "../intel-ci/xe-fast-feedback.testlist" } > > ], > > - "blocklists": [ > > + "exclude": [ > > { "Xe BAT": "../intel-ci/xe.blocklist.txt" } > > ], > > "order": [ > > -- > > 2.41.0 > > ^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Improve testlist parsing by test_list.py 2023-10-13 9:29 [igt-dev] [PATCH i-g-t 0/3] Improve testlist parsing by test_list.py Mauro Carvalho Chehab ` (2 preceding siblings ...) 2023-10-13 9:29 ` [igt-dev] [PATCH i-g-t 3/3] scripts/test_list.py: better name testlist include/exclude config fields Mauro Carvalho Chehab @ 2023-10-13 12:52 ` Patchwork 2023-10-13 13:40 ` [igt-dev] ✓ CI.xeBAT: " Patchwork 2023-10-14 14:01 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 5 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2023-10-13 12:52 UTC (permalink / raw) To: Mauro Carvalho Chehab; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 10362 bytes --] == Series Details == Series: Improve testlist parsing by test_list.py URL : https://patchwork.freedesktop.org/series/125106/ State : success == Summary == CI Bug Log - changes from IGT_7536 -> IGTPW_9996 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/index.html Participating hosts (38 -> 39) ------------------------------ Additional (2): fi-kbl-soraka bat-dg2-9 Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_9996 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s0@smem: - bat-dg2-9: NOTRUN -> [INCOMPLETE][1] ([i915#9275]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/bat-dg2-9/igt@gem_exec_suspend@basic-s0@smem.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_9996/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_9996/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@random-engines: - fi-bsw-n3050: NOTRUN -> [SKIP][4] ([fdo#109271]) +18 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/fi-bsw-n3050/igt@gem_lmem_swapping@random-engines.html * igt@gem_mmap@basic: - bat-dg2-9: NOTRUN -> [SKIP][5] ([i915#4083]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/bat-dg2-9/igt@gem_mmap@basic.html * igt@gem_mmap_gtt@basic: - bat-dg2-9: NOTRUN -> [SKIP][6] ([i915#4077]) +2 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/bat-dg2-9/igt@gem_mmap_gtt@basic.html * igt@gem_render_tiled_blits@basic: - bat-dg2-9: NOTRUN -> [SKIP][7] ([i915#4079]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/bat-dg2-9/igt@gem_render_tiled_blits@basic.html * igt@i915_pm_rps@basic-api: - bat-dg2-9: NOTRUN -> [SKIP][8] ([i915#6621]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/bat-dg2-9/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live@gt_heartbeat: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][9] ([i915#5334] / [i915#7872]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html - fi-apl-guc: [PASS][10] -> [DMESG-FAIL][11] ([i915#5334]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@gt_pm: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][12] ([i915#1886]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-dg2-9: NOTRUN -> [SKIP][13] ([i915#5190]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/bat-dg2-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - bat-dg2-9: NOTRUN -> [SKIP][14] ([i915#4215] / [i915#5190]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/bat-dg2-9/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - bat-dg2-9: NOTRUN -> [SKIP][15] ([i915#4212]) +6 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/bat-dg2-9/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@tile-pitch-mismatch: - bat-dg2-9: NOTRUN -> [SKIP][16] ([i915#4212] / [i915#5608]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/bat-dg2-9/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-dg2-9: NOTRUN -> [SKIP][17] ([i915#4103] / [i915#4213] / [i915#5608]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/bat-dg2-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - fi-kbl-soraka: NOTRUN -> [SKIP][18] ([fdo#109271]) +9 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/fi-kbl-soraka/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-dg2-9: NOTRUN -> [SKIP][19] ([fdo#109285]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/bat-dg2-9/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - bat-dg2-9: NOTRUN -> [SKIP][20] ([i915#5274]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/bat-dg2-9/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_hdmi_inject@inject-audio: - fi-kbl-guc: [PASS][21] -> [FAIL][22] ([IGT#3]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html - fi-bsw-n3050: NOTRUN -> [FAIL][23] ([IGT#3]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/fi-bsw-n3050/igt@kms_hdmi_inject@inject-audio.html * igt@kms_psr@sprite_plane_onoff: - bat-dg2-9: NOTRUN -> [SKIP][24] ([i915#1072]) +3 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/bat-dg2-9/igt@kms_psr@sprite_plane_onoff.html * igt@kms_setmode@basic-clone-single-crtc: - bat-dg2-9: NOTRUN -> [SKIP][25] ([i915#3555] / [i915#4098]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/bat-dg2-9/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - bat-dg2-9: NOTRUN -> [SKIP][26] ([i915#3708]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/bat-dg2-9/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-mmap: - bat-dg2-9: NOTRUN -> [SKIP][27] ([i915#3708] / [i915#4077]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/bat-dg2-9/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-write: - bat-dg2-9: NOTRUN -> [SKIP][28] ([i915#3291] / [i915#3708]) +2 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/bat-dg2-9/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@kms_chamelium_edid@hdmi-edid-read: - {bat-dg2-13}: [DMESG-WARN][29] ([i915#7952]) -> [PASS][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_flip@basic-flip-vs-modeset@a-dp1: - bat-adlp-9: [FAIL][31] -> [PASS][32] [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/bat-adlp-9/igt@kms_flip@basic-flip-vs-modeset@a-dp1.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/bat-adlp-9/igt@kms_flip@basic-flip-vs-modeset@a-dp1.html * igt@kms_flip@basic-flip-vs-modeset@c-dp1: - bat-adlp-9: [FAIL][33] ([i915#6121]) -> [PASS][34] +2 other tests pass [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/bat-adlp-9/igt@kms_flip@basic-flip-vs-modeset@c-dp1.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/bat-adlp-9/igt@kms_flip@basic-flip-vs-modeset@c-dp1.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#3]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/3 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [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#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [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#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608 [i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#7872]: https://gitlab.freedesktop.org/drm/intel/issues/7872 [i915#7952]: https://gitlab.freedesktop.org/drm/intel/issues/7952 [i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7536 -> IGTPW_9996 CI-20190529: 20190529 CI_DRM_13752: 6e58c5478b3011e16f563b812da45ce47853bb6c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9996: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/index.html IGT_7536: fdd51d526a9a7cb875cfad2641e90a72af392d98 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/index.html [-- Attachment #2: Type: text/html, Size: 12362 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for Improve testlist parsing by test_list.py 2023-10-13 9:29 [igt-dev] [PATCH i-g-t 0/3] Improve testlist parsing by test_list.py Mauro Carvalho Chehab ` (3 preceding siblings ...) 2023-10-13 12:52 ` [igt-dev] ✓ Fi.CI.BAT: success for Improve testlist parsing by test_list.py Patchwork @ 2023-10-13 13:40 ` Patchwork 2023-10-14 14:01 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 5 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2023-10-13 13:40 UTC (permalink / raw) To: Mauro Carvalho Chehab; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1461 bytes --] == Series Details == Series: Improve testlist parsing by test_list.py URL : https://patchwork.freedesktop.org/series/125106/ State : success == Summary == CI Bug Log - changes from XEIGT_7536_BAT -> XEIGTPW_9996_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_9996_BAT that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@xe_exec_reset@virtual-close-fd-no-exec: - bat-pvc-2: [DMESG-WARN][1] ([Intel XE#696]) -> [PASS][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7536/bat-pvc-2/igt@xe_exec_reset@virtual-close-fd-no-exec.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9996/bat-pvc-2/igt@xe_exec_reset@virtual-close-fd-no-exec.html [Intel XE#696]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/696 Build changes ------------- * IGT: IGT_7536 -> IGTPW_9996 IGTPW_9996: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/index.html IGT_7536: fdd51d526a9a7cb875cfad2641e90a72af392d98 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-433-037b6c8b23818fa71223e996c68a4f55f2d91338: 037b6c8b23818fa71223e996c68a4f55f2d91338 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9996/index.html [-- Attachment #2: Type: text/html, Size: 2023 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for Improve testlist parsing by test_list.py 2023-10-13 9:29 [igt-dev] [PATCH i-g-t 0/3] Improve testlist parsing by test_list.py Mauro Carvalho Chehab ` (4 preceding siblings ...) 2023-10-13 13:40 ` [igt-dev] ✓ CI.xeBAT: " Patchwork @ 2023-10-14 14:01 ` Patchwork 5 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2023-10-14 14:01 UTC (permalink / raw) To: Mauro Carvalho Chehab; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 82541 bytes --] == Series Details == Series: Improve testlist parsing by test_list.py URL : https://patchwork.freedesktop.org/series/125106/ State : success == Summary == CI Bug Log - changes from IGT_7536_full -> IGTPW_9996_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/index.html Participating hosts (10 -> 9) ------------------------------ Missing (1): shard-rkl0 New tests --------- New tests have been introduced between IGT_7536_full and IGTPW_9996_full: ### New IGT tests (43) ### * igt@kms_atomic_interruptible@atomic-setmode@pipe-a-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_atomic_interruptible@legacy-dpms@pipe-a-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_atomic_interruptible@legacy-pageflip@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_invalid_mode@bad-hsync-end@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_invalid_mode@bad-hsync-end@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_invalid_mode@bad-hsync-end@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_invalid_mode@bad-hsync-end@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_invalid_mode@bad-hsync-start@pipe-a-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_invalid_mode@bad-hsync-start@pipe-b-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_invalid_mode@bad-hsync-start@pipe-c-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_invalid_mode@bad-hsync-start@pipe-d-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_invalid_mode@clock-too-high@pipe-a-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_invalid_mode@clock-too-high@pipe-b-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_invalid_mode@clock-too-high@pipe-c-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_invalid_mode@clock-too-high@pipe-d-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_invalid_mode@int-max-clock@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_invalid_mode@int-max-clock@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_invalid_mode@int-max-clock@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_invalid_mode@int-max-clock@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_invalid_mode@zero-hdisplay@pipe-a-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_invalid_mode@zero-hdisplay@pipe-b-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_invalid_mode@zero-hdisplay@pipe-c-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_invalid_mode@zero-hdisplay@pipe-d-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_sequence@get-forked-busy@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_sequence@get-forked-busy@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_sequence@get-forked-busy@pipe-c-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_sequence@get-forked-busy@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_sequence@get-idle@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_sequence@get-idle@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_sequence@get-idle@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_sequence@get-idle@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_sequence@queue-busy@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_sequence@queue-busy@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_sequence@queue-idle@pipe-a-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_sequence@queue-idle@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_sequence@queue-idle@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_sequence@queue-idle@pipe-b-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_sequence@queue-idle@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_sequence@queue-idle@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_sequence@queue-idle@pipe-c-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_sequence@queue-idle@pipe-c-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_sequence@queue-idle@pipe-d-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_sequence@queue-idle@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9996_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-dg1: NOTRUN -> [SKIP][1] ([i915#8411]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg1-17/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@device_reset@unbind-cold-reset-rebind: - shard-mtlp: NOTRUN -> [SKIP][2] ([i915#7701]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-8/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: - shard-rkl: [PASS][3] -> [FAIL][4] ([i915#7742]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-rkl-2/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-rkl-2/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html * igt@drm_fdinfo@most-busy-idle-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][5] ([i915#8414]) +19 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-11/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html * igt@drm_fdinfo@virtual-busy-all: - shard-dg1: NOTRUN -> [SKIP][6] ([i915#8414]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg1-14/igt@drm_fdinfo@virtual-busy-all.html * igt@drm_fdinfo@virtual-busy-hang-all: - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#8414]) +6 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-5/igt@drm_fdinfo@virtual-busy-hang-all.html * igt@gem_basic@multigpu-create-close: - shard-rkl: NOTRUN -> [SKIP][8] ([i915#7697]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-rkl-4/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: NOTRUN -> [SKIP][9] ([i915#4098] / [i915#9323]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-rkl-7/igt@gem_ccs@ctrl-surf-copy-new-ctx.html - shard-dg1: NOTRUN -> [SKIP][10] ([i915#9323]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg1-17/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][11] ([i915#7297]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-3/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [PASS][12] -> [FAIL][13] ([i915#6268]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-rkl-7/igt@gem_ctx_exec@basic-nohangcheck.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-rkl-6/igt@gem_ctx_exec@basic-nohangcheck.html - shard-tglu: [PASS][14] -> [FAIL][15] ([i915#6268]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-tglu-5/igt@gem_ctx_exec@basic-nohangcheck.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-tglu-5/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@engines-hostile@vcs0: - shard-mtlp: [PASS][16] -> [FAIL][17] ([i915#2410]) +1 other test fail [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-mtlp-4/igt@gem_ctx_persistence@engines-hostile@vcs0.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-7/igt@gem_ctx_persistence@engines-hostile@vcs0.html * igt@gem_ctx_persistence@heartbeat-many: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#8555]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_sseu@invalid-args: - shard-mtlp: NOTRUN -> [SKIP][19] ([i915#280]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-3/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#280]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-1/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@in-flight-suspend: - shard-mtlp: [PASS][21] -> [ABORT][22] ([i915#7892] / [i915#9262]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-mtlp-8/igt@gem_eio@in-flight-suspend.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-4/igt@gem_eio@in-flight-suspend.html * igt@gem_eio@kms: - shard-dg1: NOTRUN -> [FAIL][23] ([i915#5784]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg1-17/igt@gem_eio@kms.html * igt@gem_exec_balancer@bonded-dual: - shard-mtlp: NOTRUN -> [SKIP][24] ([i915#4771]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-6/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@bonded-false-hang: - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#4812]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-4/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#4771]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-3/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][27] ([i915#4525]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-rkl-4/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_balancer@sliced: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#4812]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-11/igt@gem_exec_balancer@sliced.html * igt@gem_exec_fair@basic-deadline: - shard-rkl: [PASS][29] -> [FAIL][30] ([i915#2846]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-rkl-6/igt@gem_exec_fair@basic-deadline.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-pace: - shard-dg1: NOTRUN -> [SKIP][31] ([i915#3539]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg1-15/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][32] -> [FAIL][33] ([i915#2842]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-rkl: [PASS][34] -> [FAIL][35] ([i915#2842]) +1 other test fail [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-rkl-4/igt@gem_exec_fair@basic-pace-solo@rcs0.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-rkl-4/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-sync: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#3539]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-11/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][37] ([i915#5107]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-6/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-gtt-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#3281]) +4 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-7/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html * igt@gem_exec_reloc@basic-gtt-read: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#3281]) +18 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-3/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_exec_reloc@basic-wc: - shard-rkl: NOTRUN -> [SKIP][40] ([i915#3281]) +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-rkl-1/igt@gem_exec_reloc@basic-wc.html - shard-dg1: NOTRUN -> [SKIP][41] ([i915#3281]) +3 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg1-13/igt@gem_exec_reloc@basic-wc.html * igt@gem_exec_schedule@preempt-queue: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#4537] / [i915#4812]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-2/igt@gem_exec_schedule@preempt-queue.html * igt@gem_exec_suspend@basic-s0@smem: - shard-dg2: [PASS][43] -> [INCOMPLETE][44] ([i915#9275]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-dg2-3/igt@gem_exec_suspend@basic-s0@smem.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-6/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-rkl: NOTRUN -> [ABORT][45] ([i915#7975] / [i915#8213]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-rkl-1/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@gem_fence_thrash@bo-write-verify-none: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#4860]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-3/igt@gem_fence_thrash@bo-write-verify-none.html * igt@gem_fenced_exec_thrash@too-many-fences: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4860]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-1/igt@gem_fenced_exec_thrash@too-many-fences.html * igt@gem_lmem_swapping@parallel-multi: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4613]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-2/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@parallel-random-engines: - shard-glk: NOTRUN -> [SKIP][49] ([fdo#109271] / [i915#4613]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-glk8/igt@gem_lmem_swapping@parallel-random-engines.html - shard-rkl: NOTRUN -> [SKIP][50] ([i915#4613]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_media_fill@media-fill: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#8289]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-2/igt@gem_media_fill@media-fill.html * igt@gem_mmap_gtt@basic-read-write: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#4077]) +3 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-11/igt@gem_mmap_gtt@basic-read-write.html * igt@gem_mmap_gtt@basic-small-copy-odd: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#4077]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg1-15/igt@gem_mmap_gtt@basic-small-copy-odd.html * igt@gem_mmap_gtt@big-bo-tiledy: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4077]) +6 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-8/igt@gem_mmap_gtt@big-bo-tiledy.html * igt@gem_mmap_wc@bad-object: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4083]) +8 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-11/igt@gem_mmap_wc@bad-object.html * igt@gem_mmap_wc@close: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4083]) +4 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-1/igt@gem_mmap_wc@close.html * igt@gem_mmap_wc@coherency: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4083]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg1-16/igt@gem_mmap_wc@coherency.html * igt@gem_partial_pwrite_pread@write: - shard-rkl: NOTRUN -> [SKIP][58] ([i915#3282]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-rkl-6/igt@gem_partial_pwrite_pread@write.html * igt@gem_pread@exhaustion: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#3282]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-5/igt@gem_pread@exhaustion.html * igt@gem_pxp@create-valid-protected-context: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#4270]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg1-12/igt@gem_pxp@create-valid-protected-context.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4270]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-8/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#4270]) +3 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-11/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#4270]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-rkl-4/igt@gem_pxp@reject-modify-context-protection-off-3.html - shard-tglu: NOTRUN -> [SKIP][64] ([i915#4270]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-tglu-6/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_readwrite@beyond-eob: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#3282]) +4 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-2/igt@gem_readwrite@beyond-eob.html - shard-dg1: NOTRUN -> [SKIP][66] ([i915#3282]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg1-16/igt@gem_readwrite@beyond-eob.html * igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#8428]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-3/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4079]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-7/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#4079]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-6/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_unfence_active_buffers: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4879]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-11/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@coherency-unsync: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#3297]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-11/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-rkl: NOTRUN -> [SKIP][72] ([i915#3297]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-rkl-1/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg1: NOTRUN -> [SKIP][73] ([i915#3297] / [i915#4880]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg1-18/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#3297] / [i915#4880]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-11/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#3297]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-4/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@vma-merge: - shard-mtlp: NOTRUN -> [FAIL][76] ([i915#3318]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-2/igt@gem_userptr_blits@vma-merge.html * igt@gem_workarounds@suspend-resume-fd: - shard-snb: NOTRUN -> [DMESG-WARN][77] ([i915#8841]) +1 other test dmesg-warn [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-snb4/igt@gem_workarounds@suspend-resume-fd.html * igt@gen7_exec_parse@basic-offset: - shard-glk: NOTRUN -> [SKIP][78] ([fdo#109271]) +55 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-glk8/igt@gen7_exec_parse@basic-offset.html - shard-rkl: NOTRUN -> [SKIP][79] ([fdo#109289]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-rkl-6/igt@gen7_exec_parse@basic-offset.html - shard-tglu: NOTRUN -> [SKIP][80] ([fdo#109289]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-tglu-5/igt@gen7_exec_parse@basic-offset.html * igt@gen7_exec_parse@basic-rejected: - shard-dg2: NOTRUN -> [SKIP][81] ([fdo#109289]) +4 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-3/igt@gen7_exec_parse@basic-rejected.html * igt@gen7_exec_parse@chained-batch: - shard-dg1: NOTRUN -> [SKIP][82] ([fdo#109289]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg1-16/igt@gen7_exec_parse@chained-batch.html * igt@gen7_exec_parse@cmd-crossing-page: - shard-mtlp: NOTRUN -> [SKIP][83] ([fdo#109289]) +2 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-8/igt@gen7_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@batch-invalid-length: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#2856]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-11/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@bb-chained: - shard-rkl: NOTRUN -> [SKIP][85] ([i915#2527]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-rkl-1/igt@gen9_exec_parse@bb-chained.html - shard-tglu: NOTRUN -> [SKIP][86] ([i915#2527] / [i915#2856]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-tglu-10/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@bb-start-far: - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#2856]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-2/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-dg1: NOTRUN -> [SKIP][88] ([i915#2527]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg1-16/igt@gen9_exec_parse@cmd-crossing-page.html * igt@i915_fb_tiling: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#4881]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-11/igt@i915_fb_tiling.html * igt@i915_hangman@detector@vcs0: - shard-mtlp: [PASS][90] -> [FAIL][91] ([i915#8456]) +2 other tests fail [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-mtlp-1/igt@i915_hangman@detector@vcs0.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-2/igt@i915_hangman@detector@vcs0.html * igt@i915_hangman@engine-error-state-capture@vcs0: - shard-mtlp: [PASS][92] -> [ABORT][93] ([i915#9414]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-mtlp-4/igt@i915_hangman@engine-error-state-capture@vcs0.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-8/igt@i915_hangman@engine-error-state-capture@vcs0.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [PASS][94] -> [DMESG-WARN][95] ([i915#8617]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-dg2-3/igt@i915_module_load@reload-with-fault-injection.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-3/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-rkl: NOTRUN -> [SKIP][96] ([i915#6590]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-rkl-2/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rc6_residency@rc6-idle@vecs0: - shard-dg1: [PASS][97] -> [FAIL][98] ([i915#3591]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#6188]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-3/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_selftest@mock@memory_region: - shard-mtlp: NOTRUN -> [DMESG-WARN][100] ([i915#9311]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-8/igt@i915_selftest@mock@memory_region.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-dg1: NOTRUN -> [SKIP][101] ([i915#4212]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg1-15/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#4212]) +2 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-6/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: NOTRUN -> [SKIP][103] ([i915#3826]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-rkl-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@crc@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][104] ([i915#8247]) +3 other tests fail [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg1-12/igt@kms_async_flips@crc@pipe-b-hdmi-a-3.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#404]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#1769] / [i915#3555]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg1: NOTRUN -> [SKIP][107] ([i915#1769] / [i915#3555]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg1-12/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][108] ([i915#4538] / [i915#5286]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg1-16/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-64bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][109] ([fdo#111615] / [i915#5286]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-tglu-5/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][110] ([i915#5286]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-rkl-1/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-snb: NOTRUN -> [SKIP][111] ([fdo#109271]) +71 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-snb4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: [PASS][112] -> [FAIL][113] ([i915#5138]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: NOTRUN -> [FAIL][114] ([i915#5138]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][115] ([fdo#111614] / [i915#3638]) +2 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-rkl-7/igt@kms_big_fb@linear-8bpp-rotate-270.html - shard-tglu: NOTRUN -> [SKIP][116] ([fdo#111614]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-tglu-4/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][117] ([fdo#111614]) +3 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-6/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][118] ([fdo#111614]) +3 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-6/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#3638]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg1-13/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: [PASS][120] -> [FAIL][121] ([i915#3743]) +1 other test fail [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-tglu-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-tglu-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#5190]) +18 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][123] ([fdo#110723]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-rkl-4/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html - shard-dg1: NOTRUN -> [SKIP][124] ([i915#4538]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg1-18/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-rkl: NOTRUN -> [SKIP][125] ([fdo#111615]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-rkl-2/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: NOTRUN -> [SKIP][126] ([fdo#111615]) +5 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#4538] / [i915#5190]) +7 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_joiner@basic: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#2705]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-3/igt@kms_big_joiner@basic.html * igt@kms_cdclk@mode-transition@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][129] ([i915#7213] / [i915#9010]) +3 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-3/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html * igt@kms_cdclk@plane-scaling@pipe-b-dp-4: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#4087]) +3 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-dg2: NOTRUN -> [SKIP][131] ([fdo#111827]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-11/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_color@ctm-limited-range: - shard-mtlp: NOTRUN -> [SKIP][132] ([fdo#111827]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-6/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#7828]) +11 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-11/igt@kms_chamelium_frames@hdmi-crc-fast.html - shard-rkl: NOTRUN -> [SKIP][134] ([i915#7828]) +2 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-rkl-4/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_frames@hdmi-frame-dump: - shard-dg1: NOTRUN -> [SKIP][135] ([i915#7828]) +3 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg1-12/igt@kms_chamelium_frames@hdmi-frame-dump.html * igt@kms_chamelium_hpd@hdmi-hpd: - shard-mtlp: NOTRUN -> [SKIP][136] ([i915#7828]) +6 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-3/igt@kms_chamelium_hpd@hdmi-hpd.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-mtlp: NOTRUN -> [SKIP][137] ([i915#3299]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-6/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@legacy@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][138] ([i915#7173]) +1 other test timeout [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-11/igt@kms_content_protection@legacy@pipe-a-dp-4.html * igt@kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#7118] / [i915#7162]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-11/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][140] ([i915#1339]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-11/igt@kms_content_protection@uevent@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#3359]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-11/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-dg1: NOTRUN -> [SKIP][142] ([i915#3359]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg1-13/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#3555]) +9 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-3/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-mtlp: NOTRUN -> [SKIP][144] ([i915#3555] / [i915#8814]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-1/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-mtlp: NOTRUN -> [SKIP][145] ([i915#3359]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-6/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-4: - shard-dg1: [PASS][146] -> [FAIL][147] ([fdo#103375]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-dg1-17/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-4.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg1-18/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-4.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#3546]) +2 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-5/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#4103] / [i915#4213] / [i915#5608]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-rkl: NOTRUN -> [SKIP][150] ([fdo#111825]) +3 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-rkl-7/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg2: NOTRUN -> [SKIP][151] ([fdo#109274] / [i915#5354]) +4 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][152] ([fdo#111767] / [i915#3546]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-apl: [PASS][153] -> [FAIL][154] ([i915#2346]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@single-bo@all-pipes: - shard-mtlp: NOTRUN -> [DMESG-WARN][155] ([i915#2017]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-4/igt@kms_cursor_legacy@single-bo@all-pipes.html * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#9226] / [i915#9261]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-2/igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][157] ([i915#9227]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-rkl-7/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-1.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#9227]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-2/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2.html * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][159] ([i915#9226] / [i915#9261]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-rkl-7/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#3555] / [i915#8812]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-4/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-basic: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#3555] / [i915#3840]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-rkl-4/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#3555] / [i915#3840]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-6/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-mtlp: NOTRUN -> [SKIP][163] ([i915#3637]) +4 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg2: NOTRUN -> [SKIP][164] ([fdo#109274] / [fdo#111767]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-6/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-snb: NOTRUN -> [SKIP][165] ([fdo#109271] / [fdo#111767]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-snb6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#8381]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-1/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#8381]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-6/igt@kms_flip@2x-flip-vs-fences-interruptible.html - shard-dg1: NOTRUN -> [SKIP][168] ([i915#8381]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg1-18/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][169] ([fdo#109274]) +4 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-6/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][170] ([i915#2672]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#2672]) +3 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#2672] / [i915#3555]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#3555] / [i915#8810]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-dg2: NOTRUN -> [SKIP][174] ([fdo#109285]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-6/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt: - shard-dg2: [PASS][175] -> [FAIL][176] ([i915#6880]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#5354]) +33 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#1825]) +13 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#8708]) +27 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: - shard-dg1: NOTRUN -> [SKIP][180] ([fdo#111825]) +11 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt: - shard-tglu: NOTRUN -> [SKIP][181] ([fdo#109280]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][182] ([i915#8708]) +6 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][183] ([i915#8708]) +4 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#3458]) +16 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move: - shard-rkl: NOTRUN -> [SKIP][185] ([fdo#111825] / [i915#1825]) +11 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][186] ([i915#3023]) +8 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-suspend.html - shard-dg1: NOTRUN -> [SKIP][187] ([i915#3458]) +5 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_hdr@bpc-switch: - shard-dg1: NOTRUN -> [SKIP][188] ([i915#3555] / [i915#8228]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg1-17/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@invalid-metadata-sizes: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#8228]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-rkl-2/igt@kms_hdr@invalid-metadata-sizes.html - shard-tglu: NOTRUN -> [SKIP][190] ([i915#3555] / [i915#8228]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-tglu-2/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle-dpms: - shard-mtlp: NOTRUN -> [SKIP][191] ([i915#3555] / [i915#8228]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-3/igt@kms_hdr@static-toggle-dpms.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#8228]) +3 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-6/igt@kms_hdr@static-toggle-suspend.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#6301]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-2/igt@kms_panel_fitting@legacy.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#8821]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-11/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_lowres@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][195] ([i915#3555]) +2 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-rkl-4/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@tiling-yf: - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#3555] / [i915#8806]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-3/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-tglu: [PASS][197] -> [FAIL][198] ([i915#8292]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-tglu-5/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-tglu-2/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][199] ([i915#5176] / [i915#9423]) +1 other test skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-d-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][200] ([i915#5176] / [i915#9423]) +3 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg1-19/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-d-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][201] ([i915#5235]) +15 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-dp-4: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#5235]) +11 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-dp-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][203] ([i915#5235]) +7 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-rkl-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_prime@basic-modeset-hybrid: - shard-apl: NOTRUN -> [SKIP][204] ([fdo#109271]) +4 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-apl1/igt@kms_prime@basic-modeset-hybrid.html - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#6524]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-8/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@overlay-plane-move-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#658]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-2/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: - shard-apl: NOTRUN -> [SKIP][207] ([fdo#109271] / [i915#658]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-apl3/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb: - shard-rkl: NOTRUN -> [SKIP][208] ([i915#658]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-rkl-6/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html - shard-dg1: NOTRUN -> [SKIP][209] ([i915#658]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg1-17/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg1: NOTRUN -> [SKIP][210] ([fdo#111068] / [i915#658]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg1-12/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@cursor_mmap_cpu: - shard-rkl: NOTRUN -> [SKIP][211] ([i915#1072]) +1 other test skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-rkl-6/igt@kms_psr@cursor_mmap_cpu.html - shard-tglu: NOTRUN -> [SKIP][212] ([fdo#110189]) +1 other test skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-tglu-2/igt@kms_psr@cursor_mmap_cpu.html * igt@kms_psr@dpms: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#1072]) +5 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-1/igt@kms_psr@dpms.html * igt@kms_psr@psr2_sprite_plane_onoff: - shard-dg1: NOTRUN -> [SKIP][214] ([i915#1072] / [i915#4078]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg1-18/igt@kms_psr@psr2_sprite_plane_onoff.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#4235]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-1/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#4235] / [i915#5190]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-mtlp: NOTRUN -> [SKIP][217] ([i915#4235]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-3/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#8809]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@kms_sysfs_edid_timing: - shard-dg1: [PASS][219] -> [FAIL][220] ([IGT#2] / [i915#6493]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-dg1-16/igt@kms_sysfs_edid_timing.html [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg1-14/igt@kms_sysfs_edid_timing.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1: - shard-tglu: [PASS][221] -> [FAIL][222] ([i915#9196]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html * igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend: - shard-apl: [PASS][223] -> [INCOMPLETE][224] ([i915#180] / [i915#9392]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-apl1/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-apl3/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html * igt@kms_vblank@pipe-d-wait-busy: - shard-rkl: NOTRUN -> [SKIP][225] ([i915#4070] / [i915#533] / [i915#6768]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-rkl-7/igt@kms_vblank@pipe-d-wait-busy.html * igt@kms_vrr@flip-basic: - shard-dg1: NOTRUN -> [SKIP][226] ([i915#3555]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg1-18/igt@kms_vrr@flip-basic.html * igt@kms_writeback@writeback-invalid-parameters: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#2437]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-11/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#7387]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-6/igt@perf@global-sseu-config-invalid.html * igt@perf_pmu@busy-double-start@rcs0: - shard-mtlp: [PASS][229] -> [FAIL][230] ([i915#4349]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-mtlp-7/igt@perf_pmu@busy-double-start@rcs0.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-8/igt@perf_pmu@busy-double-start@rcs0.html * igt@perf_pmu@cpu-hotplug: - shard-mtlp: NOTRUN -> [SKIP][231] ([i915#8850]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-8/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@rc6-all-gts: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#5608] / [i915#8516]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-6/igt@perf_pmu@rc6-all-gts.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: NOTRUN -> [INCOMPLETE][233] ([i915#5493]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-11/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html * igt@prime_udl: - shard-mtlp: NOTRUN -> [SKIP][234] ([fdo#109291]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-1/igt@prime_udl.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#3291] / [i915#3708]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-6/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-flip-hang: - shard-dg1: NOTRUN -> [SKIP][236] ([i915#3708]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg1-17/igt@prime_vgem@fence-flip-hang.html * igt@v3d/v3d_create_bo@create-bo-4096: - shard-rkl: NOTRUN -> [SKIP][237] ([fdo#109315]) +2 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-rkl-4/igt@v3d/v3d_create_bo@create-bo-4096.html * igt@v3d/v3d_submit_cl@bad-flag: - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#2575]) +4 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-8/igt@v3d/v3d_submit_cl@bad-flag.html * igt@v3d/v3d_submit_csd@multi-and-single-sync: - shard-dg1: NOTRUN -> [SKIP][239] ([i915#2575]) +1 other test skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg1-12/igt@v3d/v3d_submit_csd@multi-and-single-sync.html * igt@v3d/v3d_submit_csd@multiple-job-submission: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#2575]) +10 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-1/igt@v3d/v3d_submit_csd@multiple-job-submission.html * igt@vc4/vc4_dmabuf_poll@poll-read-waits-until-write-done: - shard-dg1: NOTRUN -> [SKIP][241] ([i915#7711]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg1-13/igt@vc4/vc4_dmabuf_poll@poll-read-waits-until-write-done.html * igt@vc4/vc4_mmap@mmap-bo: - shard-rkl: NOTRUN -> [SKIP][242] ([i915#7711]) +1 other test skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-rkl-2/igt@vc4/vc4_mmap@mmap-bo.html * igt@vc4/vc4_perfmon@create-perfmon-exceed: - shard-mtlp: NOTRUN -> [SKIP][243] ([i915#7711]) +5 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-2/igt@vc4/vc4_perfmon@create-perfmon-exceed.html * igt@vc4/vc4_perfmon@destroy-valid-perfmon: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#7711]) +11 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-2/igt@vc4/vc4_perfmon@destroy-valid-perfmon.html #### Possible fixes #### * igt@gem_exec_capture@pi@vcs0: - shard-mtlp: [FAIL][245] ([i915#4475]) -> [PASS][246] [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-mtlp-7/igt@gem_exec_capture@pi@vcs0.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-4/igt@gem_exec_capture@pi@vcs0.html * igt@gem_exec_endless@dispatch@bcs0: - shard-dg2: [TIMEOUT][247] ([i915#3778] / [i915#7016]) -> [PASS][248] [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-dg2-11/igt@gem_exec_endless@dispatch@bcs0.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-3/igt@gem_exec_endless@dispatch@bcs0.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: [FAIL][249] ([i915#2842]) -> [PASS][250] +1 other test pass [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-rkl-7/igt@gem_exec_fair@basic-none@bcs0.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-rkl-1/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-tglu: [FAIL][251] ([i915#2842]) -> [PASS][252] [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-tglu-2/igt@gem_exec_fair@basic-throttle@rcs0.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-tglu-2/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_fence@nb-await@bcs0: - shard-mtlp: [ABORT][253] ([i915#9262]) -> [PASS][254] [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-mtlp-4/igt@gem_exec_fence@nb-await@bcs0.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-2/igt@gem_exec_fence@nb-await@bcs0.html * igt@gem_ppgtt@flink-and-close-vma-leak: - shard-glk: [FAIL][255] -> [PASS][256] [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-glk4/igt@gem_ppgtt@flink-and-close-vma-leak.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-glk8/igt@gem_ppgtt@flink-and-close-vma-leak.html * igt@gem_userptr_blits@nohangcheck: - shard-mtlp: [FAIL][257] ([i915#9353]) -> [PASS][258] [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-mtlp-6/igt@gem_userptr_blits@nohangcheck.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-8/igt@gem_userptr_blits@nohangcheck.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [INCOMPLETE][259] ([i915#5566]) -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-glk2/igt@gen9_exec_parse@allowed-single.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-glk4/igt@gen9_exec_parse@allowed-single.html * igt@i915_hangman@gt-engine-hang@vcs0: - shard-mtlp: [FAIL][261] ([i915#7069]) -> [PASS][262] +1 other test pass [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-mtlp-8/igt@i915_hangman@gt-engine-hang@vcs0.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-7/igt@i915_hangman@gt-engine-hang@vcs0.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: [INCOMPLETE][263] ([i915#9407]) -> [PASS][264] [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-dg2-1/igt@i915_pm_freq_api@freq-suspend@gt0.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-11/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_selftest@live@gt_heartbeat: - shard-apl: [DMESG-FAIL][265] ([i915#5334]) -> [PASS][266] [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-apl2/igt@i915_selftest@live@gt_heartbeat.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-apl7/igt@i915_selftest@live@gt_heartbeat.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [FAIL][267] ([i915#5138]) -> [PASS][268] +1 other test pass [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [FAIL][269] ([i915#3743]) -> [PASS][270] [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-tglu-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [FAIL][271] ([i915#2346]) -> [PASS][272] [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html - shard-glk: [FAIL][273] ([i915#2346]) -> [PASS][274] [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * {igt@kms_pm_rpm@modeset-non-lpsp}: - shard-rkl: [SKIP][275] ([i915#9519]) -> [PASS][276] [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@perf_pmu@busy-double-start@bcs0: - shard-mtlp: [FAIL][277] ([i915#4349]) -> [PASS][278] [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-mtlp-7/igt@perf_pmu@busy-double-start@bcs0.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-8/igt@perf_pmu@busy-double-start@bcs0.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [FAIL][279] ([i915#4349]) -> [PASS][280] +3 other tests pass [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-dg2-3/igt@perf_pmu@busy-double-start@vecs1.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@busy-idle-check-all@vecs0: - shard-dg1: [FAIL][281] ([i915#4349]) -> [PASS][282] +2 other tests pass [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-dg1-15/igt@perf_pmu@busy-idle-check-all@vecs0.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg1-18/igt@perf_pmu@busy-idle-check-all@vecs0.html #### Warnings #### * igt@device_reset@unbind-reset-rebind: - shard-dg1: [INCOMPLETE][283] ([i915#1982] / [i915#9408]) -> [INCOMPLETE][284] ([i915#9408]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-dg1-15/igt@device_reset@unbind-reset-rebind.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-dg1-18/igt@device_reset@unbind-reset-rebind.html * igt@gem_ctx_persistence@engines-hostile@vecs0: - shard-mtlp: [ABORT][285] ([i915#9414]) -> [FAIL][286] ([i915#2410]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-mtlp-4/igt@gem_ctx_persistence@engines-hostile@vecs0.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-7/igt@gem_ctx_persistence@engines-hostile@vecs0.html * igt@i915_hangman@engine-error-state-capture@vecs0: - shard-mtlp: [ABORT][287] ([i915#9414]) -> [DMESG-WARN][288] ([i915#9414]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-mtlp-4/igt@i915_hangman@engine-error-state-capture@vecs0.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-mtlp-8/igt@i915_hangman@engine-error-state-capture@vecs0.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-tglu: [FAIL][289] ([i915#2681] / [i915#3591]) -> [WARN][290] ([i915#2681]) +1 other test warn [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-tglu-7/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][291] ([i915#3955]) -> [SKIP][292] ([fdo#110189] / [i915#3955]) +1 other test skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][293] ([i915#4070] / [i915#4816]) -> [SKIP][294] ([i915#4816]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7536/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1339]: https://gitlab.freedesktop.org/drm/intel/issues/1339 [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#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3778]: https://gitlab.freedesktop.org/drm/intel/issues/3778 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [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#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [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#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#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#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#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [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#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5978]: https://gitlab.freedesktop.org/drm/intel/issues/5978 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6493]: https://gitlab.freedesktop.org/drm/intel/issues/6493 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#7016]: https://gitlab.freedesktop.org/drm/intel/issues/7016 [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7892]: https://gitlab.freedesktop.org/drm/intel/issues/7892 [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#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8456]: https://gitlab.freedesktop.org/drm/intel/issues/8456 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8617]: https://gitlab.freedesktop.org/drm/intel/issues/8617 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850 [i915#9010]: https://gitlab.freedesktop.org/drm/intel/issues/9010 [i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9226]: https://gitlab.freedesktop.org/drm/intel/issues/9226 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9261]: https://gitlab.freedesktop.org/drm/intel/issues/9261 [i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262 [i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275 [i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295 [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [i915#9353]: https://gitlab.freedesktop.org/drm/intel/issues/9353 [i915#9392]: https://gitlab.freedesktop.org/drm/intel/issues/9392 [i915#9407]: https://gitlab.freedesktop.org/drm/intel/issues/9407 [i915#9408]: https://gitlab.freedesktop.org/drm/intel/issues/9408 [i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412 [i915#9414]: https://gitlab.freedesktop.org/drm/intel/issues/9414 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7536 -> IGTPW_9996 CI-20190529: 20190529 CI_DRM_13752: 6e58c5478b3011e16f563b812da45ce47853bb6c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9996: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/index.html IGT_7536: fdd51d526a9a7cb875cfad2641e90a72af392d98 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9996/index.html [-- Attachment #2: Type: text/html, Size: 99649 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2023-10-14 14:01 UTC | newest] Thread overview: 11+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-10-13 9:29 [igt-dev] [PATCH i-g-t 0/3] Improve testlist parsing by test_list.py Mauro Carvalho Chehab 2023-10-13 9:29 ` [igt-dev] [PATCH i-g-t 1/3] scripts/test_list.py: allow ignoring uppercase on testlist read Mauro Carvalho Chehab 2023-10-13 14:42 ` Kamil Konieczny 2023-10-13 9:29 ` [igt-dev] [PATCH i-g-t 2/3] intel/kms_test_config.json: set testlist read parser to ignore case Mauro Carvalho Chehab 2023-10-13 14:43 ` Kamil Konieczny 2023-10-13 9:29 ` [igt-dev] [PATCH i-g-t 3/3] scripts/test_list.py: better name testlist include/exclude config fields Mauro Carvalho Chehab 2023-10-13 14:46 ` Kamil Konieczny 2023-10-13 15:10 ` Mauro Carvalho Chehab 2023-10-13 12:52 ` [igt-dev] ✓ Fi.CI.BAT: success for Improve testlist parsing by test_list.py Patchwork 2023-10-13 13:40 ` [igt-dev] ✓ CI.xeBAT: " Patchwork 2023-10-14 14:01 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox