* [igt-dev] [PATCH i-g-t] scripts/test_list.py: allow adding multiple testlist lines with same name
@ 2023-09-21 9:52 Mauro Carvalho Chehab
2023-09-21 10:03 ` Jani Nikula
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Mauro Carvalho Chehab @ 2023-09-21 9:52 UTC (permalink / raw)
To: igt-dev
From: Mauro Carvalho Chehab <mchehab@kernel.org>
Sometimes, multiple files may contain testlists and blocklists for
the same name.
Add support for it by placing such lists on an array, and storing one
testlist dictionary per line.
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
---
scripts/test_list.py | 13 ++++++++-----
tests/intel/kms_test_config.json | 22 +++++++++++-----------
tests/intel/xe_test_config.json | 12 ++++++------
3 files changed, 25 insertions(+), 22 deletions(-)
diff --git a/scripts/test_list.py b/scripts/test_list.py
index fdc3c1998d23..daca290a02bd 100644
--- a/scripts/test_list.py
+++ b/scripts/test_list.py
@@ -333,16 +333,18 @@ class TestList:
# Read testlist files if any
if "testlists" in item["_properties_"]:
testlist = {}
- for name in item["_properties_"]["testlists"].keys():
- self.read_testlist(testlist, name, cfg_path + item["_properties_"]["testlists"][name])
+ for value in item["_properties_"]["testlists"]:
+ for name in value.keys():
+ self.read_testlist(testlist, name, cfg_path + value[name])
item["_properties_"]["testlist"] = testlist
# Read blocklist files if any
if "blocklists" in item["_properties_"]:
blocklist = {}
- for name in item["_properties_"]["blocklists"].keys():
- self.read_testlist(blocklist, name, cfg_path + item["_properties_"]["blocklists"][name])
+ for value in item["_properties_"]["blocklists"]:
+ for name in value.keys():
+ self.read_testlist(testlist, name, cfg_path + value[name])
item["_properties_"]["blocklist"] = blocklist
@@ -450,7 +452,8 @@ class TestList:
base = r"^\s*({}[^\s\{}]+)(\S*)\s*(\#.*)?$"
regex = re.compile(base.format(self.main_name, self.subtest_separator))
- testlist[name] = []
+ if name not in testlist:
+ testlist[name] = []
with open(filename, 'r', newline = '', encoding = 'utf8') as fp:
for line in fp:
match = regex.match(line)
diff --git a/tests/intel/kms_test_config.json b/tests/intel/kms_test_config.json
index 5be264a79c6e..ad3a3aa7abb5 100644
--- a/tests/intel/kms_test_config.json
+++ b/tests/intel/kms_test_config.json
@@ -23,18 +23,18 @@
"_properties_": {
"description": "Defines what category of testlist it belongs",
"default-testlist": "FULL",
- "testlists": {
- "i915 BAT": "../intel-ci/fast-feedback.testlist",
- "i915 BAT chamelium": "../intel-ci/fast-feedback-chamelium-only.testlist",
- "i915 chamelium": "../intel-ci/chamelium-only.testlist",
+ "testlists": [
+ { "i915 BAT": "../intel-ci/fast-feedback.testlist" },
+ { "i915 BAT chamelium": "../intel-ci/fast-feedback-chamelium-only.testlist" },
+ { "i915 chamelium": "../intel-ci/chamelium-only.testlist" },
- "Xe BAT": "../intel-ci/xe-fast-feedback.testlist",
- "Xe BAT chamelium": "../intel-ci/xe-fast-feedback-chamelium-only.testlist"
- },
- "blocklists": {
- "i915 BAT, i915 BAT chamelium, i915 chamelium": "../intel-ci/blacklist.txt",
- "Xe BAT, Xe BAT chamelium": "../intel-ci/xe.blocklist.txt"
- }
+ { "Xe BAT": "../intel-ci/xe-fast-feedback.testlist" },
+ { "Xe BAT chamelium": "../intel-ci/xe-fast-feedback-chamelium-only.testlist" }
+ ],
+ "blocklists": [
+ { "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 9e582a43df56..89df8a1a3ad2 100644
--- a/tests/intel/xe_test_config.json
+++ b/tests/intel/xe_test_config.json
@@ -33,12 +33,12 @@
"mandatory": true,
"description": "Defines what category of testlist it belongs",
"default-testlist": "FULL",
- "testlists": {
- "Xe BAT": "../intel-ci/xe-fast-feedback.testlist"
- },
- "blocklists": {
- "Xe BAT": "../intel-ci/xe.blocklist.txt"
- },
+ "testlists": [
+ { "Xe BAT": "../intel-ci/xe-fast-feedback.testlist" }
+ ],
+ "blocklists": [
+ { "Xe BAT": "../intel-ci/xe.blocklist.txt" }
+ ],
"order": [
"boot",
"__all__",
--
2.41.0
^ permalink raw reply related [flat|nested] 7+ messages in thread* Re: [igt-dev] [PATCH i-g-t] scripts/test_list.py: allow adding multiple testlist lines with same name 2023-09-21 9:52 [igt-dev] [PATCH i-g-t] scripts/test_list.py: allow adding multiple testlist lines with same name Mauro Carvalho Chehab @ 2023-09-21 10:03 ` Jani Nikula 2023-09-25 8:08 ` Mauro Carvalho Chehab 2023-09-21 11:52 ` Kamil Konieczny ` (3 subsequent siblings) 4 siblings, 1 reply; 7+ messages in thread From: Jani Nikula @ 2023-09-21 10:03 UTC (permalink / raw) To: Mauro Carvalho Chehab, igt-dev On Thu, 21 Sep 2023, Mauro Carvalho Chehab <mauro.chehab@linux.intel.com> wrote: > From: Mauro Carvalho Chehab <mchehab@kernel.org> > > Sometimes, multiple files may contain testlists and blocklists for > the same name. > > Add support for it by placing such lists on an array, and storing one > testlist dictionary per line. > > Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> > --- > scripts/test_list.py | 13 ++++++++----- > tests/intel/kms_test_config.json | 22 +++++++++++----------- > tests/intel/xe_test_config.json | 12 ++++++------ > 3 files changed, 25 insertions(+), 22 deletions(-) > > diff --git a/scripts/test_list.py b/scripts/test_list.py > index fdc3c1998d23..daca290a02bd 100644 > --- a/scripts/test_list.py > +++ b/scripts/test_list.py > @@ -333,16 +333,18 @@ class TestList: > # Read testlist files if any > if "testlists" in item["_properties_"]: > testlist = {} > - for name in item["_properties_"]["testlists"].keys(): > - self.read_testlist(testlist, name, cfg_path + item["_properties_"]["testlists"][name]) > + for value in item["_properties_"]["testlists"]: > + for name in value.keys(): > + self.read_testlist(testlist, name, cfg_path + value[name]) > > item["_properties_"]["testlist"] = testlist > > # Read blocklist files if any > if "blocklists" in item["_properties_"]: > blocklist = {} > - for name in item["_properties_"]["blocklists"].keys(): > - self.read_testlist(blocklist, name, cfg_path + item["_properties_"]["blocklists"][name]) > + for value in item["_properties_"]["blocklists"]: > + for name in value.keys(): > + self.read_testlist(testlist, name, cfg_path + value[name]) > > item["_properties_"]["blocklist"] = blocklist > > @@ -450,7 +452,8 @@ class TestList: > base = r"^\s*({}[^\s\{}]+)(\S*)\s*(\#.*)?$" Just an unrelated thing that caught my eye. You can add names to groups with: (?P<groupname>...) and reference them by names instead of indices in the match object: mo.group('groupname') making the code ever so slightly easier to read. BR, Jani. > regex = re.compile(base.format(self.main_name, self.subtest_separator)) > > - testlist[name] = [] > + if name not in testlist: > + testlist[name] = [] > with open(filename, 'r', newline = '', encoding = 'utf8') as fp: > for line in fp: > match = regex.match(line) > diff --git a/tests/intel/kms_test_config.json b/tests/intel/kms_test_config.json > index 5be264a79c6e..ad3a3aa7abb5 100644 > --- a/tests/intel/kms_test_config.json > +++ b/tests/intel/kms_test_config.json > @@ -23,18 +23,18 @@ > "_properties_": { > "description": "Defines what category of testlist it belongs", > "default-testlist": "FULL", > - "testlists": { > - "i915 BAT": "../intel-ci/fast-feedback.testlist", > - "i915 BAT chamelium": "../intel-ci/fast-feedback-chamelium-only.testlist", > - "i915 chamelium": "../intel-ci/chamelium-only.testlist", > + "testlists": [ > + { "i915 BAT": "../intel-ci/fast-feedback.testlist" }, > + { "i915 BAT chamelium": "../intel-ci/fast-feedback-chamelium-only.testlist" }, > + { "i915 chamelium": "../intel-ci/chamelium-only.testlist" }, > > - "Xe BAT": "../intel-ci/xe-fast-feedback.testlist", > - "Xe BAT chamelium": "../intel-ci/xe-fast-feedback-chamelium-only.testlist" > - }, > - "blocklists": { > - "i915 BAT, i915 BAT chamelium, i915 chamelium": "../intel-ci/blacklist.txt", > - "Xe BAT, Xe BAT chamelium": "../intel-ci/xe.blocklist.txt" > - } > + { "Xe BAT": "../intel-ci/xe-fast-feedback.testlist" }, > + { "Xe BAT chamelium": "../intel-ci/xe-fast-feedback-chamelium-only.testlist" } > + ], > + "blocklists": [ > + { "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 9e582a43df56..89df8a1a3ad2 100644 > --- a/tests/intel/xe_test_config.json > +++ b/tests/intel/xe_test_config.json > @@ -33,12 +33,12 @@ > "mandatory": true, > "description": "Defines what category of testlist it belongs", > "default-testlist": "FULL", > - "testlists": { > - "Xe BAT": "../intel-ci/xe-fast-feedback.testlist" > - }, > - "blocklists": { > - "Xe BAT": "../intel-ci/xe.blocklist.txt" > - }, > + "testlists": [ > + { "Xe BAT": "../intel-ci/xe-fast-feedback.testlist" } > + ], > + "blocklists": [ > + { "Xe BAT": "../intel-ci/xe.blocklist.txt" } > + ], > "order": [ > "boot", > "__all__", -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] scripts/test_list.py: allow adding multiple testlist lines with same name 2023-09-21 10:03 ` Jani Nikula @ 2023-09-25 8:08 ` Mauro Carvalho Chehab 0 siblings, 0 replies; 7+ messages in thread From: Mauro Carvalho Chehab @ 2023-09-25 8:08 UTC (permalink / raw) To: Jani Nikula; +Cc: igt-dev On Thu, 21 Sep 2023 13:03:46 +0300 Jani Nikula <jani.nikula@linux.intel.com> wrote: > On Thu, 21 Sep 2023, Mauro Carvalho Chehab <mauro.chehab@linux.intel.com> wrote: > > From: Mauro Carvalho Chehab <mchehab@kernel.org> > > > > Sometimes, multiple files may contain testlists and blocklists for > > the same name. > > > > Add support for it by placing such lists on an array, and storing one > > testlist dictionary per line. > > > > Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> > > --- > > scripts/test_list.py | 13 ++++++++----- > > tests/intel/kms_test_config.json | 22 +++++++++++----------- > > tests/intel/xe_test_config.json | 12 ++++++------ > > 3 files changed, 25 insertions(+), 22 deletions(-) > > > > diff --git a/scripts/test_list.py b/scripts/test_list.py > > index fdc3c1998d23..daca290a02bd 100644 > > --- a/scripts/test_list.py > > +++ b/scripts/test_list.py > > @@ -333,16 +333,18 @@ class TestList: > > # Read testlist files if any > > if "testlists" in item["_properties_"]: > > testlist = {} > > - for name in item["_properties_"]["testlists"].keys(): > > - self.read_testlist(testlist, name, cfg_path + item["_properties_"]["testlists"][name]) > > + for value in item["_properties_"]["testlists"]: > > + for name in value.keys(): > > + self.read_testlist(testlist, name, cfg_path + value[name]) > > > > item["_properties_"]["testlist"] = testlist > > > > # Read blocklist files if any > > if "blocklists" in item["_properties_"]: > > blocklist = {} > > - for name in item["_properties_"]["blocklists"].keys(): > > - self.read_testlist(blocklist, name, cfg_path + item["_properties_"]["blocklists"][name]) > > + for value in item["_properties_"]["blocklists"]: > > + for name in value.keys(): > > + self.read_testlist(testlist, name, cfg_path + value[name]) > > > > item["_properties_"]["blocklist"] = blocklist > > > > @@ -450,7 +452,8 @@ class TestList: > > base = r"^\s*({}[^\s\{}]+)(\S*)\s*(\#.*)?$" > > Just an unrelated thing that caught my eye. You can add names to groups > with: > > (?P<groupname>...) > > and reference them by names instead of indices in the match object: > > mo.group('groupname') > > making the code ever so slightly easier to read. Thanks for the tip. I have mixed feelings about naming the groups at regex. I mean, it makes easier to identify the match group based on its name, at the expense of making the regular expression bigger (and, IMO harder) to read. I mean, looking at the regex and counting parenthesis blocks is enough to see what each block is seeking. On this specific case, the code is: base = r"^\s*({}[^\s\{}]+)(\S*)\s*(\#.*)?$" regex = re.compile(base.format(self.main_name, self.subtest_separator)) ... match = regex.match(line) if match: test = match.group(1) subtest = match.group(2) if not subtest.endswith("$"): subtest += r"(\@.*)?$" testlist[name].append(re.compile(f"{test}{subtest}")) Looking at the parenthesis, we have: group 1: ({}[^\s\{}]+) group 2: (\S*) group 3: (\#.*)? (not used by the match logic) But the actual regex appear only after base.format(name, separator). After that, group 1 actually becomes: group 1: (igt[^\s\@]+) IMO, adding "P<group>" to each of the above will make harder to read an already complex regex. Also, just two groups are actually used at the match, and, for both, a variable with the match name is used. IMO, in this specific example, adding P<group> won't improve code readability. - Other than that, debugging and fixing complex regular expressions is hard. What I do when they're very complex is to test them via regex101 (https://regex101.com/). Regards, Mauro ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] scripts/test_list.py: allow adding multiple testlist lines with same name 2023-09-21 9:52 [igt-dev] [PATCH i-g-t] scripts/test_list.py: allow adding multiple testlist lines with same name Mauro Carvalho Chehab 2023-09-21 10:03 ` Jani Nikula @ 2023-09-21 11:52 ` Kamil Konieczny 2023-09-21 12:08 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: Kamil Konieczny @ 2023-09-21 11:52 UTC (permalink / raw) To: igt-dev Hi Mauro, On 2023-09-21 at 11:52:48 +0200, Mauro Carvalho Chehab wrote: > From: Mauro Carvalho Chehab <mchehab@kernel.org> > > Sometimes, multiple files may contain testlists and blocklists for > the same name. > > Add support for it by placing such lists on an array, and storing one > testlist dictionary per line. > > Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > --- > scripts/test_list.py | 13 ++++++++----- > tests/intel/kms_test_config.json | 22 +++++++++++----------- > tests/intel/xe_test_config.json | 12 ++++++------ > 3 files changed, 25 insertions(+), 22 deletions(-) > > diff --git a/scripts/test_list.py b/scripts/test_list.py > index fdc3c1998d23..daca290a02bd 100644 > --- a/scripts/test_list.py > +++ b/scripts/test_list.py > @@ -333,16 +333,18 @@ class TestList: > # Read testlist files if any > if "testlists" in item["_properties_"]: > testlist = {} > - for name in item["_properties_"]["testlists"].keys(): > - self.read_testlist(testlist, name, cfg_path + item["_properties_"]["testlists"][name]) > + for value in item["_properties_"]["testlists"]: > + for name in value.keys(): > + self.read_testlist(testlist, name, cfg_path + value[name]) > > item["_properties_"]["testlist"] = testlist > > # Read blocklist files if any > if "blocklists" in item["_properties_"]: > blocklist = {} > - for name in item["_properties_"]["blocklists"].keys(): > - self.read_testlist(blocklist, name, cfg_path + item["_properties_"]["blocklists"][name]) > + for value in item["_properties_"]["blocklists"]: > + for name in value.keys(): > + self.read_testlist(testlist, name, cfg_path + value[name]) > > item["_properties_"]["blocklist"] = blocklist > > @@ -450,7 +452,8 @@ class TestList: > base = r"^\s*({}[^\s\{}]+)(\S*)\s*(\#.*)?$" > regex = re.compile(base.format(self.main_name, self.subtest_separator)) > > - testlist[name] = [] > + if name not in testlist: > + testlist[name] = [] > with open(filename, 'r', newline = '', encoding = 'utf8') as fp: > for line in fp: > match = regex.match(line) > diff --git a/tests/intel/kms_test_config.json b/tests/intel/kms_test_config.json > index 5be264a79c6e..ad3a3aa7abb5 100644 > --- a/tests/intel/kms_test_config.json > +++ b/tests/intel/kms_test_config.json > @@ -23,18 +23,18 @@ > "_properties_": { > "description": "Defines what category of testlist it belongs", > "default-testlist": "FULL", > - "testlists": { > - "i915 BAT": "../intel-ci/fast-feedback.testlist", > - "i915 BAT chamelium": "../intel-ci/fast-feedback-chamelium-only.testlist", > - "i915 chamelium": "../intel-ci/chamelium-only.testlist", > + "testlists": [ > + { "i915 BAT": "../intel-ci/fast-feedback.testlist" }, > + { "i915 BAT chamelium": "../intel-ci/fast-feedback-chamelium-only.testlist" }, > + { "i915 chamelium": "../intel-ci/chamelium-only.testlist" }, > > - "Xe BAT": "../intel-ci/xe-fast-feedback.testlist", > - "Xe BAT chamelium": "../intel-ci/xe-fast-feedback-chamelium-only.testlist" > - }, > - "blocklists": { > - "i915 BAT, i915 BAT chamelium, i915 chamelium": "../intel-ci/blacklist.txt", > - "Xe BAT, Xe BAT chamelium": "../intel-ci/xe.blocklist.txt" > - } > + { "Xe BAT": "../intel-ci/xe-fast-feedback.testlist" }, > + { "Xe BAT chamelium": "../intel-ci/xe-fast-feedback-chamelium-only.testlist" } > + ], > + "blocklists": [ > + { "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 9e582a43df56..89df8a1a3ad2 100644 > --- a/tests/intel/xe_test_config.json > +++ b/tests/intel/xe_test_config.json > @@ -33,12 +33,12 @@ > "mandatory": true, > "description": "Defines what category of testlist it belongs", > "default-testlist": "FULL", > - "testlists": { > - "Xe BAT": "../intel-ci/xe-fast-feedback.testlist" > - }, > - "blocklists": { > - "Xe BAT": "../intel-ci/xe.blocklist.txt" > - }, > + "testlists": [ > + { "Xe BAT": "../intel-ci/xe-fast-feedback.testlist" } > + ], > + "blocklists": [ > + { "Xe BAT": "../intel-ci/xe.blocklist.txt" } > + ], > "order": [ > "boot", > "__all__", > -- > 2.41.0 > ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for scripts/test_list.py: allow adding multiple testlist lines with same name 2023-09-21 9:52 [igt-dev] [PATCH i-g-t] scripts/test_list.py: allow adding multiple testlist lines with same name Mauro Carvalho Chehab 2023-09-21 10:03 ` Jani Nikula 2023-09-21 11:52 ` Kamil Konieczny @ 2023-09-21 12:08 ` Patchwork 2023-09-21 12:36 ` [igt-dev] ✗ CI.xeBAT: failure " Patchwork 2023-09-22 0:21 ` [igt-dev] ✗ Fi.CI.IGT: " Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-09-21 12:08 UTC (permalink / raw) To: Mauro Carvalho Chehab; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3568 bytes --] == Series Details == Series: scripts/test_list.py: allow adding multiple testlist lines with same name URL : https://patchwork.freedesktop.org/series/124036/ State : success == Summary == CI Bug Log - changes from CI_DRM_13662 -> IGTPW_9837 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/index.html Participating hosts (39 -> 38) ------------------------------ Additional (1): fi-kbl-soraka Missing (2): fi-hsw-4770 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_9837 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_huc_copy@huc-copy: - fi-kbl-soraka: NOTRUN -> [SKIP][1] ([fdo#109271] / [i915#2190]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-kbl-soraka: NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#4613]) +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html * igt@i915_selftest@live@gt_pm: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][3] ([i915#1886] / [i915#7913]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html * igt@kms_dsc@dsc-basic: - fi-kbl-soraka: NOTRUN -> [SKIP][4] ([fdo#109271]) +9 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/fi-kbl-soraka/igt@kms_dsc@dsc-basic.html #### Possible fixes #### * igt@i915_selftest@live@workarounds: - bat-dg2-11: [INCOMPLETE][5] ([i915#7913]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13662/bat-dg2-11/igt@i915_selftest@live@workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/bat-dg2-11/igt@i915_selftest@live@workarounds.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1: - bat-rplp-1: [ABORT][7] ([i915#8668]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13662/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#485]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/485 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7495 -> IGTPW_9837 CI-20190529: 20190529 CI_DRM_13662: 2bdb0f5953b2eb724156b9617c61a8ed6708500b @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9837: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/index.html IGT_7495: 7ed6190bc4f8a3ebc3f0b8b334e8ae6abae03031 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- -igt@xe_guc_pc@freq-power == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/index.html [-- Attachment #2: Type: text/html, Size: 4440 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✗ CI.xeBAT: failure for scripts/test_list.py: allow adding multiple testlist lines with same name 2023-09-21 9:52 [igt-dev] [PATCH i-g-t] scripts/test_list.py: allow adding multiple testlist lines with same name Mauro Carvalho Chehab ` (2 preceding siblings ...) 2023-09-21 12:08 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2023-09-21 12:36 ` Patchwork 2023-09-22 0:21 ` [igt-dev] ✗ Fi.CI.IGT: " Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-09-21 12:36 UTC (permalink / raw) To: Mauro Carvalho Chehab; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 11220 bytes --] == Series Details == Series: scripts/test_list.py: allow adding multiple testlist lines with same name URL : https://patchwork.freedesktop.org/series/124036/ State : failure == Summary == CI Bug Log - changes from XEIGT_7495_BAT -> XEIGTPW_9837_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_9837_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_9837_BAT, please notify your bug team (lgci.bug.filing@intel.com) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_9837_BAT: ### IGT changes ### #### Possible regressions #### * igt@xe_live_ktest@bo: - bat-pvc-2: [PASS][1] -> [SKIP][2] +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7495/bat-pvc-2/igt@xe_live_ktest@bo.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9837/bat-pvc-2/igt@xe_live_ktest@bo.html #### Warnings #### * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - bat-pvc-2: [SKIP][3] ([Intel XE#538]) -> [SKIP][4] +33 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7495/bat-pvc-2/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9837/bat-pvc-2/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_cursor_legacy@basic-flip-after-cursor-atomic: - bat-pvc-2: [SKIP][5] ([Intel XE#539]) -> [SKIP][6] +7 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7495/bat-pvc-2/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9837/bat-pvc-2/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html * igt@kms_dsc@dsc-basic: - bat-adlp-7: [SKIP][7] ([Intel XE#423]) -> [SKIP][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7495/bat-adlp-7/igt@kms_dsc@dsc-basic.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9837/bat-adlp-7/igt@kms_dsc@dsc-basic.html * igt@kms_flip@basic-flip-vs-dpms: - bat-pvc-2: [SKIP][9] ([Intel XE#275] / [Intel XE#541]) -> [SKIP][10] +3 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7495/bat-pvc-2/igt@kms_flip@basic-flip-vs-dpms.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9837/bat-pvc-2/igt@kms_flip@basic-flip-vs-dpms.html * igt@kms_force_connector_basic@force-connector-state: - bat-pvc-2: [SKIP][11] ([Intel XE#540]) -> [SKIP][12] +3 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7495/bat-pvc-2/igt@kms_force_connector_basic@force-connector-state.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9837/bat-pvc-2/igt@kms_force_connector_basic@force-connector-state.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-pvc-2: [SKIP][13] ([Intel XE#537]) -> [SKIP][14] +6 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7495/bat-pvc-2/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9837/bat-pvc-2/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html * igt@kms_prop_blob@basic: - bat-pvc-2: [SKIP][15] ([Intel XE#536]) -> [SKIP][16] [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7495/bat-pvc-2/igt@kms_prop_blob@basic.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9837/bat-pvc-2/igt@kms_prop_blob@basic.html * igt@kms_psr@primary_page_flip: - bat-pvc-2: [SKIP][17] ([Intel XE#535]) -> [SKIP][18] +2 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7495/bat-pvc-2/igt@kms_psr@primary_page_flip.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9837/bat-pvc-2/igt@kms_psr@primary_page_flip.html * igt@xe_live_ktest@dmabuf: - bat-pvc-2: [FAIL][19] ([Intel XE#722]) -> [SKIP][20] [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7495/bat-pvc-2/igt@xe_live_ktest@dmabuf.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9837/bat-pvc-2/igt@xe_live_ktest@dmabuf.html Known issues ------------ Here are the changes found in XEIGTPW_9837_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@xe_evict@evict-beng-mixed-threads-small-multi-vm: - bat-dg2-oem2: [PASS][21] -> [INCOMPLETE][22] ([Intel XE#685]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7495/bat-dg2-oem2/igt@xe_evict@evict-beng-mixed-threads-small-multi-vm.html [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9837/bat-dg2-oem2/igt@xe_evict@evict-beng-mixed-threads-small-multi-vm.html * igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch: - bat-pvc-2: [PASS][23] -> [SKIP][24] ([Intel XE#678]) +135 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7495/bat-pvc-2/igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9837/bat-pvc-2/igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch.html * igt@xe_module_load@load: - bat-pvc-2: [PASS][25] -> [SKIP][26] ([Intel XE#378]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7495/bat-pvc-2/igt@xe_module_load@load.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9837/bat-pvc-2/igt@xe_module_load@load.html #### Possible fixes #### * igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1: - bat-adlp-7: [FAIL][27] ([Intel XE#480]) -> [PASS][28] +2 other tests pass [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7495/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9837/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html * {igt@xe_create@create-execqueues-leak}: - bat-atsm-2: [FAIL][29] ([Intel XE#524]) -> [PASS][30] [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7495/bat-atsm-2/igt@xe_create@create-execqueues-leak.html [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9837/bat-atsm-2/igt@xe_create@create-execqueues-leak.html * igt@xe_live_ktest@dmabuf: - bat-atsm-2: [FAIL][31] ([Intel XE#722]) -> [PASS][32] +1 other test pass [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7495/bat-atsm-2/igt@xe_live_ktest@dmabuf.html [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9837/bat-atsm-2/igt@xe_live_ktest@dmabuf.html #### Warnings #### * igt@xe_evict@evict-beng-small-external: - bat-pvc-2: [FAIL][33] ([Intel XE#389]) -> [SKIP][34] ([Intel XE#678]) +3 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7495/bat-pvc-2/igt@xe_evict@evict-beng-small-external.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9837/bat-pvc-2/igt@xe_evict@evict-beng-small-external.html * igt@xe_evict@evict-small-cm: - bat-pvc-2: [DMESG-FAIL][35] ([Intel XE#482]) -> [SKIP][36] ([Intel XE#678]) +3 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7495/bat-pvc-2/igt@xe_evict@evict-small-cm.html [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9837/bat-pvc-2/igt@xe_evict@evict-small-cm.html * igt@xe_guc_pc@freq_range_idle: - bat-pvc-2: [SKIP][37] ([Intel XE#533]) -> [SKIP][38] ([Intel XE#678]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7495/bat-pvc-2/igt@xe_guc_pc@freq_range_idle.html [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9837/bat-pvc-2/igt@xe_guc_pc@freq_range_idle.html * igt@xe_huc_copy@huc_copy: - bat-pvc-2: [SKIP][39] ([Intel XE#255]) -> [SKIP][40] ([Intel XE#678]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7495/bat-pvc-2/igt@xe_huc_copy@huc_copy.html [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9837/bat-pvc-2/igt@xe_huc_copy@huc_copy.html * igt@xe_intel_bb@render: - bat-pvc-2: [SKIP][41] ([Intel XE#532]) -> [SKIP][42] ([Intel XE#678]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7495/bat-pvc-2/igt@xe_intel_bb@render.html [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9837/bat-pvc-2/igt@xe_intel_bb@render.html * igt@xe_pm_residency@gt-c6-on-idle: - bat-pvc-2: [SKIP][43] ([Intel XE#531]) -> [SKIP][44] ([Intel XE#678]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7495/bat-pvc-2/igt@xe_pm_residency@gt-c6-on-idle.html [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9837/bat-pvc-2/igt@xe_pm_residency@gt-c6-on-idle.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#275]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/275 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#389]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/389 [Intel XE#423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/423 [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480 [Intel XE#482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/482 [Intel XE#524]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/524 [Intel XE#531]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/531 [Intel XE#532]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/532 [Intel XE#533]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/533 [Intel XE#535]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/535 [Intel XE#536]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/536 [Intel XE#537]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/537 [Intel XE#538]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/538 [Intel XE#539]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/539 [Intel XE#540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/540 [Intel XE#541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/541 [Intel XE#678]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/678 [Intel XE#685]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/685 [Intel XE#722]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/722 Build changes ------------- * IGT: IGT_7495 -> IGTPW_9837 * Linux: xe-387-6e4a4aa0279d8de30726606ccf74de109af20e6c -> xe-388-57039c55bac31a639ce66355c26fe345f338c075 IGTPW_9837: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/index.html IGT_7495: 7ed6190bc4f8a3ebc3f0b8b334e8ae6abae03031 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-387-6e4a4aa0279d8de30726606ccf74de109af20e6c: 6e4a4aa0279d8de30726606ccf74de109af20e6c xe-388-57039c55bac31a639ce66355c26fe345f338c075: 57039c55bac31a639ce66355c26fe345f338c075 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9837/index.html [-- Attachment #2: Type: text/html, Size: 12800 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for scripts/test_list.py: allow adding multiple testlist lines with same name 2023-09-21 9:52 [igt-dev] [PATCH i-g-t] scripts/test_list.py: allow adding multiple testlist lines with same name Mauro Carvalho Chehab ` (3 preceding siblings ...) 2023-09-21 12:36 ` [igt-dev] ✗ CI.xeBAT: failure " Patchwork @ 2023-09-22 0:21 ` Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-09-22 0:21 UTC (permalink / raw) To: Mauro Carvalho Chehab; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 91166 bytes --] == Series Details == Series: scripts/test_list.py: allow adding multiple testlist lines with same name URL : https://patchwork.freedesktop.org/series/124036/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13662_full -> IGTPW_9837_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9837_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9837_full, please notify your bug team (lgci.bug.filing@intel.com) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9837_full: ### IGT changes ### #### Possible regressions #### * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-3/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][2] +14 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][3] +32 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html Known issues ------------ Here are the changes found in IGTPW_9837_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-mtlp: NOTRUN -> [SKIP][4] ([i915#8411]) +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-1/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][5] ([i915#8411]) +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-2/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@render-ccs: - shard-dg2: NOTRUN -> [FAIL][6] ([i915#6122]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-6/igt@api_intel_bb@render-ccs.html * igt@debugfs_test@basic-hwmon: - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#9318]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-7/igt@debugfs_test@basic-hwmon.html * igt@device_reset@cold-reset-bound: - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#7701]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-7/igt@device_reset@cold-reset-bound.html * igt@device_reset@unbind-cold-reset-rebind: - shard-dg2: NOTRUN -> [SKIP][9] ([i915#7701]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-2/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@all-busy-check-all: - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#8414]) +20 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-2/igt@drm_fdinfo@all-busy-check-all.html * igt@drm_fdinfo@busy-idle-check-all@vcs0: - shard-dg2: NOTRUN -> [SKIP][11] ([i915#8414]) +13 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-1/igt@drm_fdinfo@busy-idle-check-all@vcs0.html * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: - shard-rkl: [PASS][12] -> [FAIL][13] ([i915#7742]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13662/shard-rkl-7/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html * igt@gem_ccs@ctrl-surf-copy: - shard-mtlp: NOTRUN -> [SKIP][14] ([i915#3555]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-2/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0: - shard-dg2: [PASS][15] -> [INCOMPLETE][16] ([i915#7297]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13662/shard-dg2-1/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-6/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#7697]) +3 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-10/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-snb: NOTRUN -> [DMESG-WARN][18] ([i915#8841]) +12 other tests dmesg-warn [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-snb7/igt@gem_ctx_isolation@preservation-s3@rcs0.html * igt@gem_ctx_param@invalid-set-no-zeromap: - shard-mtlp: NOTRUN -> [DMESG-WARN][19] ([i915#9157]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-7/igt@gem_ctx_param@invalid-set-no-zeromap.html * igt@gem_ctx_persistence@engines-hang@vcs0: - shard-mtlp: [PASS][20] -> [FAIL][21] ([i915#2410]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13662/shard-mtlp-6/igt@gem_ctx_persistence@engines-hang@vcs0.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-2/igt@gem_ctx_persistence@engines-hang@vcs0.html * igt@gem_ctx_persistence@engines-hostile@vcs0: - shard-mtlp: NOTRUN -> [FAIL][22] ([i915#2410]) +2 other tests fail [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-3/igt@gem_ctx_persistence@engines-hostile@vcs0.html * igt@gem_ctx_persistence@hang: - shard-snb: NOTRUN -> [SKIP][23] ([fdo#109271] / [i915#1099]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-snb2/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#8555]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-3/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#8555]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-5/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_persistence@saturated-hostile@vecs0: - shard-mtlp: [PASS][26] -> [FAIL][27] ([i915#7816]) +2 other tests fail [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13662/shard-mtlp-6/igt@gem_ctx_persistence@saturated-hostile@vecs0.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-2/igt@gem_ctx_persistence@saturated-hostile@vecs0.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#280]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-11/igt@gem_ctx_sseu@invalid-sseu.html - shard-mtlp: NOTRUN -> [SKIP][29] ([i915#280]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-6/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@hibernate: - shard-dg2: NOTRUN -> [ABORT][30] ([i915#7975] / [i915#8213]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-5/igt@gem_eio@hibernate.html * igt@gem_eio@reset-stress: - shard-dg2: [PASS][31] -> [FAIL][32] ([i915#5784]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13662/shard-dg2-7/igt@gem_eio@reset-stress.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-1/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@bonded-false-hang: - shard-mtlp: NOTRUN -> [SKIP][33] ([i915#4812]) +2 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-2/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@bonded-pair: - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#4771]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-4/igt@gem_exec_balancer@bonded-pair.html - shard-dg2: NOTRUN -> [SKIP][35] ([i915#4771]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-10/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#4812]) +3 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-11/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_fair@basic-deadline: - shard-rkl: NOTRUN -> [FAIL][37] ([i915#2846]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-1/igt@gem_exec_fair@basic-deadline.html - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4473] / [i915#4771]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-8/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-flow@rcs0: - shard-tglu: [PASS][39] -> [FAIL][40] ([i915#2842]) +1 other test fail [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13662/shard-tglu-5/igt@gem_exec_fair@basic-flow@rcs0.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-tglu-7/igt@gem_exec_fair@basic-flow@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-rkl: [PASS][41] -> [FAIL][42] ([i915#2842]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13662/shard-rkl-2/igt@gem_exec_fair@basic-pace-share@rcs0.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-2/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-rkl: NOTRUN -> [FAIL][43] ([i915#2842]) +3 other tests fail [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-1/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#3539] / [i915#4852]) +8 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-1/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#3539]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-11/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_gttfill@multigpu-basic: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#7697]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-8/igt@gem_exec_gttfill@multigpu-basic.html * igt@gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#5107]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-3/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_params@secure-non-root: - shard-tglu: NOTRUN -> [SKIP][48] ([fdo#112283]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-tglu-3/igt@gem_exec_params@secure-non-root.html * igt@gem_exec_reloc@basic-gtt-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#3281]) +9 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-7/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html * igt@gem_exec_reloc@basic-softpin: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#3281]) +15 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-10/igt@gem_exec_reloc@basic-softpin.html * igt@gem_exec_reloc@basic-write-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][51] ([i915#3281]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-4/igt@gem_exec_reloc@basic-write-read-noreloc.html * igt@gem_exec_schedule@preemptive-hang@vcs0: - shard-mtlp: NOTRUN -> [FAIL][52] ([i915#9051]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-5/igt@gem_exec_schedule@preemptive-hang@vcs0.html * igt@gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4537] / [i915#4812]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-7/igt@gem_exec_schedule@reorder-wide.html * igt@gem_exec_schedule@semaphore-power: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4537] / [i915#4812]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-2/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_whisper@basic-fds-forked-all: - shard-tglu: [PASS][55] -> [INCOMPLETE][56] ([i915#6755] / [i915#7392]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13662/shard-tglu-8/igt@gem_exec_whisper@basic-fds-forked-all.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-tglu-3/igt@gem_exec_whisper@basic-fds-forked-all.html * igt@gem_fence_thrash@bo-write-verify-none: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4860]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-1/igt@gem_fence_thrash@bo-write-verify-none.html * igt@gem_fence_thrash@bo-write-verify-x: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4860]) +5 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-6/igt@gem_fence_thrash@bo-write-verify-x.html * igt@gem_lmem_swapping@heavy-random: - shard-rkl: NOTRUN -> [SKIP][59] ([i915#4613]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-4/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4613]) +5 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-3/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-apl: NOTRUN -> [SKIP][61] ([fdo#109271] / [i915#4613]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-apl2/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_madvise@dontneed-before-pwrite: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#3282]) +8 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-2/igt@gem_madvise@dontneed-before-pwrite.html * igt@gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#8289]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-2/igt@gem_media_fill@media-fill.html * igt@gem_mmap_gtt@big-bo-tiledy: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4077]) +15 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-3/igt@gem_mmap_gtt@big-bo-tiledy.html * igt@gem_mmap_gtt@zero-extend: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#4077]) +10 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-5/igt@gem_mmap_gtt@zero-extend.html * igt@gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4083]) +8 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-11/igt@gem_mmap_wc@copy.html * igt@gem_mmap_wc@write-read: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4083]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-4/igt@gem_mmap_wc@write-read.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#3282]) +9 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-7/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_pread@snoop: - shard-rkl: NOTRUN -> [SKIP][69] ([i915#3282]) +3 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-6/igt@gem_pread@snoop.html * igt@gem_pxp@create-regular-context-2: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4270]) +5 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-11/igt@gem_pxp@create-regular-context-2.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-rkl: NOTRUN -> [SKIP][71] ([i915#4270]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-4/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4270]) +3 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-4/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#8428]) +7 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-6/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#4885]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-1/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_spin_batch@spin-all-new: - shard-dg2: NOTRUN -> [FAIL][75] ([i915#5889]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-2/igt@gem_spin_batch@spin-all-new.html * igt@gem_tiled_pread_pwrite: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#4079]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-3/igt@gem_tiled_pread_pwrite.html * igt@gem_unfence_active_buffers: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#4879]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-2/igt@gem_unfence_active_buffers.html - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#4879]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-6/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#3297]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-1/igt@gem_userptr_blits@create-destroy-unsync.html - shard-rkl: NOTRUN -> [SKIP][80] ([i915#3297]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-1/igt@gem_userptr_blits@create-destroy-unsync.html - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#3297]) +6 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-2/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#3297] / [i915#4880]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-11/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#3297] / [i915#4958]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-1/igt@gem_userptr_blits@sd-probe.html * igt@gem_workarounds@suspend-resume: - shard-dg2: NOTRUN -> [INCOMPLETE][84] ([i915#9138]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-5/igt@gem_workarounds@suspend-resume.html * igt@gem_workarounds@suspend-resume-fd: - shard-mtlp: NOTRUN -> [ABORT][85] ([i915#9262]) +7 other tests abort [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-4/igt@gem_workarounds@suspend-resume-fd.html * igt@gen7_exec_parse@basic-allocation: - shard-mtlp: NOTRUN -> [SKIP][86] ([fdo#109289]) +4 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-2/igt@gen7_exec_parse@basic-allocation.html * igt@gen7_exec_parse@chained-batch: - shard-dg2: NOTRUN -> [SKIP][87] ([fdo#109289]) +4 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-2/igt@gen7_exec_parse@chained-batch.html * igt@gen7_exec_parse@load-register-reg: - shard-rkl: NOTRUN -> [SKIP][88] ([fdo#109289]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-2/igt@gen7_exec_parse@load-register-reg.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-mtlp: NOTRUN -> [SKIP][89] ([i915#2856]) +5 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-2/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@bb-chained: - shard-tglu: NOTRUN -> [SKIP][90] ([i915#2527] / [i915#2856]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-tglu-7/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#2856]) +4 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-7/igt@gen9_exec_parse@shadow-peek.html * igt@i915_hwmon@hwmon-write: - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#7707]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-6/igt@i915_hwmon@hwmon-write.html * igt@i915_pm_freq_api@freq-reset: - shard-rkl: NOTRUN -> [SKIP][93] ([i915#8399]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-7/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_rc6_residency@rc6-idle@vecs0: - shard-dg1: [PASS][94] -> [FAIL][95] ([i915#3591]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13662/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html * igt@i915_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#1397]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-3/igt@i915_pm_rpm@dpms-lpsp.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-dg1: [PASS][97] -> [SKIP][98] ([i915#1397]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13662/shard-dg1-15/igt@i915_pm_rpm@dpms-non-lpsp.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg1-19/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-tglu: NOTRUN -> [SKIP][99] ([fdo#109506]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-tglu-10/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_rpm@i2c: - shard-dg2: NOTRUN -> [FAIL][100] ([i915#8717]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-2/igt@i915_pm_rpm@i2c.html * igt@i915_pm_rpm@modeset-lpsp-stress: - shard-dg2: [PASS][101] -> [SKIP][102] ([i915#1397]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13662/shard-dg2-10/igt@i915_pm_rpm@modeset-lpsp-stress.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-1/igt@i915_pm_rpm@modeset-lpsp-stress.html * igt@i915_pm_rpm@modeset-pc8-residency-stress: - shard-dg2: NOTRUN -> [SKIP][103] ([fdo#109506]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-5/igt@i915_pm_rpm@modeset-pc8-residency-stress.html - shard-mtlp: NOTRUN -> [SKIP][104] ([fdo#109293]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-2/igt@i915_pm_rpm@modeset-pc8-residency-stress.html * igt@i915_pm_rps@min-max-config-idle: - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#6621]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-7/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@reset: - shard-snb: [PASS][106] -> [INCOMPLETE][107] ([i915#7790]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13662/shard-snb6/igt@i915_pm_rps@reset.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-snb2/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds-idle@gt1: - shard-mtlp: NOTRUN -> [SKIP][108] ([i915#8925]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-7/igt@i915_pm_rps@thresholds-idle@gt1.html * igt@i915_pm_rps@thresholds-park@gt0: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#8925]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-1/igt@i915_pm_rps@thresholds-park@gt0.html * igt@i915_pm_sseu@full-enable: - shard-mtlp: NOTRUN -> [SKIP][110] ([i915#8437]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-2/igt@i915_pm_sseu@full-enable.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-mtlp: NOTRUN -> [SKIP][111] ([i915#6188]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-2/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_query@query-topology-unsupported: - shard-dg2: NOTRUN -> [SKIP][112] ([fdo#109302]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-7/igt@i915_query@query-topology-unsupported.html * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: [PASS][113] -> [FAIL][114] ([fdo#103375]) +2 other tests fail [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13662/shard-rkl-2/igt@i915_suspend@basic-s3-without-i915.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html * igt@i915_suspend@debugfs-reader: - shard-mtlp: NOTRUN -> [ABORT][115] ([i915#7461] / [i915#9262]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-3/igt@i915_suspend@debugfs-reader.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-mtlp: NOTRUN -> [SKIP][116] ([i915#4212]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-2/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#4212]) +2 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-3/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs: - shard-rkl: NOTRUN -> [SKIP][118] ([i915#8502]) +3 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-4-rc_ccs-cc: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#8709]) +11 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-4-rc_ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-1-y-rc_ccs: - shard-dg1: NOTRUN -> [SKIP][120] ([i915#8502]) +7 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg1-19/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-1-y-rc_ccs.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][121] ([i915#8247]) +3 other tests fail [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-6/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html * igt@kms_async_flips@crc@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][122] ([i915#8247]) +3 other tests fail [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg1-13/igt@kms_async_flips@crc@pipe-b-hdmi-a-3.html * igt@kms_async_flips@test-cursor: - shard-mtlp: NOTRUN -> [SKIP][123] ([i915#6229]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-6/igt@kms_async_flips@test-cursor.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#1769] / [i915#3555]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][125] ([fdo#111614]) +9 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-6/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][126] ([i915#5286]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-1/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-addfb-size-overflow: - shard-tglu: NOTRUN -> [SKIP][127] ([i915#5286]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-tglu-6/igt@kms_big_fb@4-tiled-addfb-size-overflow.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][128] ([fdo#111614]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-tglu-9/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][129] ([fdo#111614]) +3 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-3/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][130] ([fdo#111614] / [i915#3638]) +2 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-6/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#5190]) +20 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-1/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#6187]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-1/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#4538] / [i915#5190]) +12 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][134] ([fdo#110723]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-7/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-tglu: NOTRUN -> [SKIP][135] ([fdo#111615]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-tglu-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-mtlp: NOTRUN -> [SKIP][136] ([fdo#111615]) +15 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_joiner@basic: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#2705]) +1 other test skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-7/igt@kms_big_joiner@basic.html * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: - shard-apl: NOTRUN -> [SKIP][138] ([fdo#109271] / [i915#3886]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-apl2/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_rc_ccs_cc: - shard-tglu: NOTRUN -> [SKIP][139] ([i915#5354] / [i915#6095]) +2 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-tglu-7/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][140] ([i915#3886] / [i915#5354] / [i915#6095]) +1 other test skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-7/igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc: - shard-mtlp: NOTRUN -> [SKIP][141] ([i915#3886] / [i915#5354] / [i915#6095]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-6/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#3734] / [i915#5354] / [i915#6095]) +1 other test skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-6/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_ccs.html * igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_mtl_rc_ccs: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#5354] / [i915#6095]) +8 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-4/igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][144] ([i915#3886] / [i915#6095]) +8 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-3/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#3689] / [i915#3886] / [i915#5354]) +15 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-2/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc: - shard-dg1: NOTRUN -> [SKIP][146] ([i915#5354] / [i915#6095]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg1-16/igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#3689] / [i915#5354]) +34 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-3/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs.html * igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_rc_ccs_cc: - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#6095]) +45 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-2/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-d-crc-primary-basic-yf_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#5354]) +14 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-1/igt@kms_ccs@pipe-d-crc-primary-basic-yf_tiled_ccs.html * igt@kms_cdclk@mode-transition@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#4087] / [i915#7213]) +3 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-11/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#4087]) +3 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-6/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-dg2: NOTRUN -> [SKIP][152] ([fdo#111827]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-1/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-rkl: NOTRUN -> [SKIP][153] ([fdo#111827]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-1/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-mtlp: NOTRUN -> [SKIP][154] ([fdo#111827]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-2/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_edid@hdmi-edid-read: - shard-rkl: NOTRUN -> [SKIP][155] ([i915#7828]) +4 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-2/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#7828]) +11 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-1/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#7828]) +15 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-3/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@hdmi-hpd-storm: - shard-apl: NOTRUN -> [SKIP][158] ([fdo#109271]) +50 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-apl6/igt@kms_chamelium_hpd@hdmi-hpd-storm.html * igt@kms_concurrent@pipe-d: - shard-rkl: NOTRUN -> [SKIP][159] ([i915#4070] / [i915#533] / [i915#6768]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-6/igt@kms_concurrent@pipe-d.html * igt@kms_content_protection@atomic-dpms@pipe-a-dp-1: - shard-apl: NOTRUN -> [TIMEOUT][160] ([i915#7173]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-apl1/igt@kms_content_protection@atomic-dpms@pipe-a-dp-1.html * igt@kms_content_protection@content_type_change: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#7118]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-6/igt@kms_content_protection@content_type_change.html * igt@kms_content_protection@legacy: - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#6944]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-8/igt@kms_content_protection@legacy.html * igt@kms_content_protection@legacy@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][163] ([i915#7173]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-11/igt@kms_content_protection@legacy@pipe-a-dp-4.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#7118]) +2 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-10/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][165] ([i915#1339]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-11/igt@kms_content_protection@uevent@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#3359]) +1 other test skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-5/igt@kms_cursor_crc@cursor-offscreen-512x170.html - shard-rkl: NOTRUN -> [SKIP][167] ([fdo#109279] / [i915#3359]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#3555] / [i915#8814]) +4 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#3555]) +7 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-1/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#3359]) +2 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-7/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-tglu: NOTRUN -> [SKIP][171] ([i915#3555]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-tglu-9/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-dg2: NOTRUN -> [SKIP][172] ([fdo#109274] / [i915#5354]) +5 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-10/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][173] ([fdo#109274] / [fdo#111767] / [i915#5354]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][174] ([fdo#111825]) +3 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#4103] / [i915#4213] / [i915#5608]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-mtlp: NOTRUN -> [SKIP][176] ([i915#3546]) +4 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [PASS][177] -> [FAIL][178] ([i915#2346]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13662/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#4103] / [i915#4213]) +1 other test skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#9227]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-10/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-1.html - shard-rkl: NOTRUN -> [SKIP][181] ([i915#9227]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-7/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-1.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][182] ([i915#9227]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg1-15/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4.html * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#9226] / [i915#9261]) +1 other test skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-10/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1.html - shard-rkl: NOTRUN -> [SKIP][184] ([i915#9226] / [i915#9261]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-7/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1.html * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][185] ([i915#9226] / [i915#9261]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg1-15/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#8588]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-7/igt@kms_display_modes@mst-extended-mode-negative.html - shard-rkl: NOTRUN -> [SKIP][187] ([i915#8588]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-2/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dsc@dsc-basic: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#3555] / [i915#3840]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-2/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-bpc: - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#3840]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-3/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-output-formats: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#3555] / [i915#3840]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-7/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#3469]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-2/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-snb: NOTRUN -> [SKIP][192] ([fdo#109271] / [fdo#111767]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-snb4/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-mtlp: NOTRUN -> [SKIP][193] ([fdo#111767] / [i915#3637]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html - shard-dg2: NOTRUN -> [SKIP][194] ([fdo#109274] / [fdo#111767]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#8381]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-1/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-rmfb: - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#3637]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-3/igt@kms_flip@2x-flip-vs-rmfb.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-dg2: NOTRUN -> [SKIP][197] ([fdo#109274]) +4 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-2/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip@flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][198] ([i915#8381]) +1 other test skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-2/igt@kms_flip@flip-vs-fences.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#2672]) +3 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][200] ([i915#8810]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][201] ([i915#3555] / [i915#8810]) +2 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][202] ([i915#2672]) +2 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][203] ([i915#2672] / [i915#3555]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#2672]) +8 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-dg2: NOTRUN -> [SKIP][205] ([fdo#109285]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-10/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt: - shard-dg2: [PASS][206] -> [FAIL][207] ([i915#6880]) +1 other test fail [206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13662/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#5354]) +80 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][209] ([i915#1825]) +47 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][210] ([fdo#111825] / [i915#1825]) +15 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render: - shard-dg2: NOTRUN -> [FAIL][211] ([i915#6880]) +1 other test fail [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-tglu: NOTRUN -> [SKIP][212] ([fdo#109280]) +2 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-tglu-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][213] ([i915#3023]) +11 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#5460]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html - shard-mtlp: NOTRUN -> [SKIP][215] ([i915#5460]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#3458]) +26 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_hdr@bpc-switch: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#8228]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-7/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@invalid-metadata-sizes: - shard-tglu: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#8228]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-tglu-7/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle: - shard-rkl: NOTRUN -> [SKIP][219] ([i915#3555] / [i915#8228]) +2 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-1/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-dpms: - shard-mtlp: NOTRUN -> [SKIP][220] ([i915#3555] / [i915#8228]) +1 other test skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-6/igt@kms_hdr@static-toggle-dpms.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#4816]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#3582]) +3 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-4/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#8821]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-11/igt@kms_plane_lowres@tiling-yf.html - shard-mtlp: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#8821]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-6/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@tiling-yf: - shard-mtlp: NOTRUN -> [SKIP][225] ([i915#3555] / [i915#8806]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-5/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][226] ([i915#5176]) +7 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-8/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-d-edp-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][227] ([i915#5176]) +23 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg1-19/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#5176]) +11 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][229] ([i915#5176]) +3 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][230] ([i915#5235]) +15 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][231] ([i915#5235]) +19 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-4/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b-edp-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-dp-4: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#5235]) +11 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-11/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-dp-4.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][233] ([i915#5235]) +5 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_prime@basic-crc-hybrid: - shard-mtlp: NOTRUN -> [SKIP][234] ([i915#6524]) +1 other test skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-8/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#6524] / [i915#6805]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-6/igt@kms_prime@basic-crc-vgem.html * igt@kms_psr2_su@page_flip-nv12: - shard-rkl: NOTRUN -> [SKIP][236] ([fdo#111068] / [i915#658]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-2/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#658]) +5 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-1/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#4348]) +2 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-5/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@dpms: - shard-dg2: NOTRUN -> [SKIP][239] ([i915#1072]) +9 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-2/igt@kms_psr@dpms.html * igt@kms_psr@sprite_mmap_gtt: - shard-rkl: NOTRUN -> [SKIP][240] ([i915#1072]) +2 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-1/igt@kms_psr@sprite_mmap_gtt.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#5461] / [i915#658]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@bad-pixel-format: - shard-mtlp: NOTRUN -> [SKIP][242] ([i915#4235]) +3 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-6/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#4235]) +3 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-1/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][244] ([fdo#111615] / [i915#5289]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][245] ([i915#4235] / [i915#5190]) +1 other test skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-d: - shard-mtlp: NOTRUN -> [SKIP][246] ([i915#5030]) +3 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-7/igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-d.html * igt@kms_setmode@basic-clone-single-crtc: - shard-mtlp: NOTRUN -> [SKIP][247] ([i915#3555] / [i915#8809]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-2/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@basic@pipe-a-vga-1: - shard-snb: NOTRUN -> [FAIL][248] ([i915#5465]) +1 other test fail [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-snb7/igt@kms_setmode@basic@pipe-a-vga-1.html * igt@kms_tiled_display@basic-test-pattern: - shard-mtlp: NOTRUN -> [SKIP][249] ([i915#8623]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-6/igt@kms_tiled_display@basic-test-pattern.html - shard-rkl: NOTRUN -> [SKIP][250] ([i915#8623]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_universal_plane@universal-plane-pipe-c-functional: - shard-rkl: NOTRUN -> [SKIP][251] ([i915#4070] / [i915#6768]) +3 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-2/igt@kms_universal_plane@universal-plane-pipe-c-functional.html * igt@kms_vblank@pipe-c-query-busy-hang: - shard-snb: NOTRUN -> [SKIP][252] ([fdo#109271]) +298 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-snb6/igt@kms_vblank@pipe-c-query-busy-hang.html * igt@kms_vblank@pipe-d-query-idle: - shard-snb: NOTRUN -> [ABORT][253] ([i915#8865]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-snb7/igt@kms_vblank@pipe-d-query-idle.html * igt@kms_vrr@negative-basic: - shard-rkl: NOTRUN -> [SKIP][254] ([i915#3555]) +3 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-7/igt@kms_vrr@negative-basic.html * igt@kms_writeback@writeback-fb-id: - shard-dg2: NOTRUN -> [SKIP][255] ([i915#2437]) +1 other test skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-7/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-pixel-formats: - shard-mtlp: NOTRUN -> [SKIP][256] ([i915#2437]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-8/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@global-sseu-config: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#7387]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-2/igt@perf@global-sseu-config.html * igt@perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][258] ([i915#2434]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-1/igt@perf@mi-rpc.html - shard-mtlp: NOTRUN -> [SKIP][259] ([i915#2434]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-2/igt@perf@mi-rpc.html * igt@perf@per-context-mode-unprivileged: - shard-rkl: NOTRUN -> [SKIP][260] ([i915#2435]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-6/igt@perf@per-context-mode-unprivileged.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: NOTRUN -> [FAIL][261] ([i915#4349]) +3 other tests fail [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-1/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@cpu-hotplug: - shard-dg2: NOTRUN -> [SKIP][262] ([i915#8850]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-10/igt@perf_pmu@cpu-hotplug.html - shard-rkl: NOTRUN -> [SKIP][263] ([i915#8850]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-1/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@module-unload: - shard-dg2: NOTRUN -> [FAIL][264] ([i915#5793]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-2/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6-all-gts: - shard-mtlp: NOTRUN -> [ABORT][265] ([i915#9268] / [i915#9335]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-6/igt@perf_pmu@rc6-all-gts.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: NOTRUN -> [INCOMPLETE][266] ([i915#5493]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-1/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html * igt@prime_udl: - shard-mtlp: NOTRUN -> [SKIP][267] ([fdo#109291]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-4/igt@prime_udl.html * igt@prime_vgem@basic-fence-mmap: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#3708] / [i915#4077]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-6/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][269] ([i915#3291] / [i915#3708]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-10/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-gtt: - shard-mtlp: NOTRUN -> [SKIP][270] ([i915#3708] / [i915#4077]) +1 other test skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-8/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][271] ([i915#3708]) +2 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-5/igt@prime_vgem@fence-read-hang.html * igt@prime_vgem@fence-write-hang: - shard-mtlp: NOTRUN -> [SKIP][272] ([i915#3708]) +1 other test skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-2/igt@prime_vgem@fence-write-hang.html * igt@runner@aborted: - shard-mtlp: NOTRUN -> [FAIL][273] ([i915#7812]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-8/igt@runner@aborted.html * igt@syncobj_timeline@single-wait-signaled: - shard-mtlp: NOTRUN -> [DMESG-WARN][274] ([i915#2017]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-7/igt@syncobj_timeline@single-wait-signaled.html * igt@v3d/v3d_get_param@base-params: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#2575]) +20 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-7/igt@v3d/v3d_get_param@base-params.html * igt@v3d/v3d_mmap@mmap-bo: - shard-mtlp: NOTRUN -> [SKIP][276] ([i915#2575]) +17 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-5/igt@v3d/v3d_mmap@mmap-bo.html * igt@v3d/v3d_perfmon@create-perfmon-invalid-counters: - shard-tglu: NOTRUN -> [SKIP][277] ([fdo#109315] / [i915#2575]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-tglu-5/igt@v3d/v3d_perfmon@create-perfmon-invalid-counters.html * igt@v3d/v3d_wait_bo@bad-bo: - shard-rkl: NOTRUN -> [SKIP][278] ([fdo#109315]) +5 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-2/igt@v3d/v3d_wait_bo@bad-bo.html * igt@vc4/vc4_mmap@mmap-bo: - shard-dg2: NOTRUN -> [SKIP][279] ([i915#7711]) +12 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-1/igt@vc4/vc4_mmap@mmap-bo.html * igt@vc4/vc4_perfmon@create-single-perfmon: - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#7711]) +9 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-2/igt@vc4/vc4_perfmon@create-single-perfmon.html * igt@vc4/vc4_wait_seqno@bad-seqno-1ns: - shard-rkl: NOTRUN -> [SKIP][281] ([i915#7711]) +3 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-2/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html #### Possible fixes #### * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [FAIL][282] ([i915#7742]) -> [PASS][283] [282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13662/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@gem_eio@unwedge-stress: - shard-dg1: [FAIL][284] ([i915#5784]) -> [PASS][285] [284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13662/shard-dg1-14/igt@gem_eio@unwedge-stress.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg1-19/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [FAIL][286] ([i915#2842]) -> [PASS][287] [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13662/shard-apl4/igt@gem_exec_fair@basic-none-solo@rcs0.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-apl2/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-rkl: [FAIL][288] ([i915#2842]) -> [PASS][289] +1 other test pass [288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13662/shard-rkl-1/igt@gem_exec_fair@basic-pace-solo@rcs0.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-6/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg2: [ABORT][290] ([i915#7975] / [i915#8213]) -> [PASS][291] [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13662/shard-dg2-3/igt@gem_exec_suspend@basic-s4-devices@lmem0.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_exec_whisper@basic-contexts-priority-all: - shard-tglu: [DMESG-WARN][292] -> [PASS][293] [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13662/shard-tglu-7/igt@gem_exec_whisper@basic-contexts-priority-all.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-tglu-2/igt@gem_exec_whisper@basic-contexts-priority-all.html * igt@gem_softpin@noreloc-s3: - shard-dg2: [INCOMPLETE][294] ([i915#7793]) -> [PASS][295] [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13662/shard-dg2-5/igt@gem_softpin@noreloc-s3.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-2/igt@gem_softpin@noreloc-s3.html * igt@i915_hangman@gt-error-state-capture@rcs0: - shard-snb: [ABORT][296] -> [PASS][297] [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13662/shard-snb6/igt@i915_hangman@gt-error-state-capture@rcs0.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-snb2/igt@i915_hangman@gt-error-state-capture@rcs0.html * igt@i915_pm_rpm@dpms-mode-unset-lpsp: - shard-rkl: [SKIP][298] ([i915#1397]) -> [PASS][299] [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13662/shard-rkl-1/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg1: [SKIP][300] ([i915#1397]) -> [PASS][301] [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13662/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg1-18/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_rpm@modeset-lpsp: - shard-dg2: [SKIP][302] ([i915#1397]) -> [PASS][303] [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13662/shard-dg2-11/igt@i915_pm_rpm@modeset-lpsp.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-10/igt@i915_pm_rpm@modeset-lpsp.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-2: - shard-glk: [FAIL][304] ([i915#2521]) -> [PASS][305] [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13662/shard-glk4/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-2.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-glk1/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-2.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [FAIL][306] ([i915#2346]) -> [PASS][307] [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13662/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a3: - shard-dg2: [FAIL][308] ([fdo#103375]) -> [PASS][309] +2 other tests pass [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13662/shard-dg2-5/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a3.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-7/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a3.html * igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3: - shard-dg2: [INCOMPLETE][310] -> [PASS][311] +1 other test pass [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13662/shard-dg2-5/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-7/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1: - shard-apl: [INCOMPLETE][312] ([i915#9392]) -> [PASS][313] [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13662/shard-apl6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-apl4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1.html * {igt@kms_pm_dc@dc6-dpms}: - shard-tglu: [FAIL][314] ([i915#9295]) -> [PASS][315] [314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13662/shard-tglu-5/igt@kms_pm_dc@dc6-dpms.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-tglu-10/igt@kms_pm_dc@dc6-dpms.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-rkl: [INCOMPLETE][316] ([i915#8875]) -> [PASS][317] +1 other test pass [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13662/shard-rkl-7/igt@kms_rotation_crc@sprite-rotation-90.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-2/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_universal_plane@cursor-fb-leak-pipe-a: - shard-rkl: [FAIL][318] ([i915#9196]) -> [PASS][319] [318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13662/shard-rkl-1/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-rkl-6/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html * igt@kms_universal_plane@cursor-fb-leak-pipe-b: - shard-tglu: [FAIL][320] ([i915#9196]) -> [PASS][321] +1 other test pass [320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13662/shard-tglu-4/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html * igt@kms_vblank@pipe-d-ts-continuation-suspend: - shard-mtlp: [ABORT][322] ([i915#9262]) -> [PASS][323] [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13662/shard-mtlp-4/igt@kms_vblank@pipe-d-ts-continuation-suspend.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-mtlp-3/igt@kms_vblank@pipe-d-ts-continuation-suspend.html * igt@perf_pmu@semaphore-busy@vcs1: - shard-dg1: [FAIL][324] ([i915#4349]) -> [PASS][325] +1 other test pass [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13662/shard-dg1-18/igt@perf_pmu@semaphore-busy@vcs1.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg1-18/igt@perf_pmu@semaphore-busy@vcs1.html * igt@perf_pmu@semaphore-busy@vecs0: - shard-dg2: [FAIL][326] ([i915#4349]) -> [PASS][327] +6 other tests pass [326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13662/shard-dg2-3/igt@perf_pmu@semaphore-busy@vecs0.html [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg2-7/igt@perf_pmu@semaphore-busy@vecs0.html #### Warnings #### * igt@device_reset@unbind-reset-rebind: - shard-dg1: [INCOMPLETE][328] ([i915#4983]) -> [ABORT][329] ([i915#4983] / [i915#7461]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13662/shard-dg1-19/igt@device_reset@unbind-reset-rebind.html [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg1-13/igt@device_reset@unbind-reset-rebind.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-tglu: [FAIL][330] ([i915#2681] / [i915#3591]) -> [WARN][331] ([i915#2681]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13662/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-tglu-8/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_pm_rc6_residency@rc6-idle@vecs0: - shard-tglu: [WARN][332] ([i915#2681]) -> [FAIL][333] ([i915#2681] / [i915#3591]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13662/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-tglu-8/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html * igt@kms_psr@primary_page_flip: - shard-dg1: [SKIP][334] ([i915#1072] / [i915#4078]) -> [SKIP][335] ([i915#1072]) +1 other test skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13662/shard-dg1-16/igt@kms_psr@primary_page_flip.html [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/shard-dg1-14/igt@kms_psr@primary_page_flip.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#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#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1339]: https://gitlab.freedesktop.org/drm/intel/issues/1339 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [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#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2435]: https://gitlab.freedesktop.org/drm/intel/issues/2435 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [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#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#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#4275]: https://gitlab.freedesktop.org/drm/intel/issues/4275 [i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#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#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854 [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#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5030]: https://gitlab.freedesktop.org/drm/intel/issues/5030 [i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5793]: https://gitlab.freedesktop.org/drm/intel/issues/5793 [i915#5889]: https://gitlab.freedesktop.org/drm/intel/issues/5889 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6122]: https://gitlab.freedesktop.org/drm/intel/issues/6122 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188 [i915#6229]: https://gitlab.freedesktop.org/drm/intel/issues/6229 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6755]: https://gitlab.freedesktop.org/drm/intel/issues/6755 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [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#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790 [i915#7793]: https://gitlab.freedesktop.org/drm/intel/issues/7793 [i915#7812]: https://gitlab.freedesktop.org/drm/intel/issues/7812 [i915#7816]: https://gitlab.freedesktop.org/drm/intel/issues/7816 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [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#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399 [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#8430]: https://gitlab.freedesktop.org/drm/intel/issues/8430 [i915#8437]: https://gitlab.freedesktop.org/drm/intel/issues/8437 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8717]: https://gitlab.freedesktop.org/drm/intel/issues/8717 [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#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#8865]: https://gitlab.freedesktop.org/drm/intel/issues/8865 [i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9051]: https://gitlab.freedesktop.org/drm/intel/issues/9051 [i915#9138]: https://gitlab.freedesktop.org/drm/intel/issues/9138 [i915#9157]: https://gitlab.freedesktop.org/drm/intel/issues/9157 [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#9268]: https://gitlab.freedesktop.org/drm/intel/issues/9268 [i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295 [i915#9298]: https://gitlab.freedesktop.org/drm/intel/issues/9298 [i915#9310]: https://gitlab.freedesktop.org/drm/intel/issues/9310 [i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318 [i915#9335]: https://gitlab.freedesktop.org/drm/intel/issues/9335 [i915#9392]: https://gitlab.freedesktop.org/drm/intel/issues/9392 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7495 -> IGTPW_9837 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13662: 2bdb0f5953b2eb724156b9617c61a8ed6708500b @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9837: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/index.html IGT_7495: 7ed6190bc4f8a3ebc3f0b8b334e8ae6abae03031 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9837/index.html [-- Attachment #2: Type: text/html, Size: 111037 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2023-09-25 8:08 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-09-21 9:52 [igt-dev] [PATCH i-g-t] scripts/test_list.py: allow adding multiple testlist lines with same name Mauro Carvalho Chehab 2023-09-21 10:03 ` Jani Nikula 2023-09-25 8:08 ` Mauro Carvalho Chehab 2023-09-21 11:52 ` Kamil Konieczny 2023-09-21 12:08 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2023-09-21 12:36 ` [igt-dev] ✗ CI.xeBAT: failure " Patchwork 2023-09-22 0:21 ` [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