* [PATCH i-g-t 1/3] lib/igt_facts: Remove NULL and bool comparisions
@ 2025-04-25 9:49 Peter Senna Tschudin
2025-04-25 9:49 ` [PATCH i-g-t 2/3] lib/igt_facts: Remove unnecessary extern from header Peter Senna Tschudin
` (5 more replies)
0 siblings, 6 replies; 10+ messages in thread
From: Peter Senna Tschudin @ 2025-04-25 9:49 UTC (permalink / raw)
To: igt-dev; +Cc: Peter Senna Tschudin
Remove comparisons to NULL, true, and false using ! when appropriate.
For example, from if (old_value == NULL && new_value != NULL)
to if (!old_value && new_value)
Signed-off-by: Peter Senna Tschudin <peter.senna@linux.intel.com>
---
lib/igt_facts.c | 32 ++++++++++++++++----------------
1 file changed, 16 insertions(+), 16 deletions(-)
diff --git a/lib/igt_facts.c b/lib/igt_facts.c
index 2e04a7c86..d38be0726 100644
--- a/lib/igt_facts.c
+++ b/lib/igt_facts.c
@@ -85,7 +85,7 @@ static void igt_facts_log(const char *last_test, const char *name,
char *uptime = NULL;
const char *before_tests = "before any test";
- if (old_value == NULL && new_value == NULL)
+ if (!old_value && !new_value)
return;
if (clock_gettime(CLOCK_BOOTTIME, &uptime_ts) != 0)
@@ -97,7 +97,7 @@ static void igt_facts_log(const char *last_test, const char *name,
uptime_ts.tv_nsec / 1000);
/* New fact */
- if (old_value == NULL && new_value != NULL) {
+ if (!old_value && new_value) {
igt_info("[%s] [FACT %s] new: %s: %s\n",
uptime,
last_test ? last_test : before_tests,
@@ -107,7 +107,7 @@ static void igt_facts_log(const char *last_test, const char *name,
}
/* Update fact */
- if (old_value != NULL && new_value != NULL) {
+ if (old_value && new_value) {
igt_info("[%s] [FACT %s] changed: %s: %s -> %s\n",
uptime,
last_test ? last_test : before_tests,
@@ -118,7 +118,7 @@ static void igt_facts_log(const char *last_test, const char *name,
}
/* Deleted fact */
- if (old_value != NULL && new_value == NULL) {
+ if (old_value && !new_value) {
igt_info("[%s] [FACT %s] deleted: %s: %s\n",
uptime,
last_test ? last_test : before_tests,
@@ -213,7 +213,7 @@ static bool igt_facts_list_add(const char *name,
igt_fact *new_fact = NULL, *old_fact = NULL;
bool logged = false;
- if (name == NULL || value == NULL)
+ if (!name || !value)
return false;
old_fact = igt_facts_list_get(name, head);
@@ -228,7 +228,7 @@ static bool igt_facts_list_add(const char *name,
}
new_fact = malloc(sizeof(igt_fact));
- if (new_fact == NULL)
+ if (!new_fact)
return false;
new_fact->name = strdup(name);
@@ -523,7 +523,7 @@ static void igt_facts_scan_pci_drm_cards(const char *last_test)
* If the device has '-' in the name, contine
*/
if (strncmp(drm_name, "card", 4) != 0 ||
- strchr(drm_name, '-') != NULL) {
+ strchr(drm_name, '-')) {
udev_device_unref(drm_dev);
continue;
}
@@ -586,7 +586,7 @@ static void igt_facts_scan_kernel_taints(const char *last_test)
igt_facts_list_mark(head);
- while ((reason = igt_explain_taints(&taints)) != NULL) {
+ while ((reason = igt_explain_taints(&taints))) {
/* Cut at the ':' to get only the taint name */
taint_name = strtok(strdup(reason), ":");
if (!taint_name)
@@ -677,18 +677,18 @@ static void igt_facts_test_add_get(struct igt_list_head *head)
const char *last_test = NULL;
ret = igt_facts_list_add(name, value, last_test, head);
- igt_assert(ret == true);
+ igt_assert(ret);
/* Assert that there is one element in the linked list */
igt_assert_eq(igt_list_length(head), 1);
/* Assert that the element in the linked list is the one we added */
fact = igt_facts_list_get(name, head);
- igt_assert(fact != NULL);
+ igt_assert(fact);
igt_assert_eq(strcmp(fact->name, name), 0);
igt_assert_eq(strcmp(fact->value, value), 0);
- igt_assert(fact->present == true);
- igt_assert(fact->last_test == NULL);
+ igt_assert(fact->present);
+ igt_assert(!fact->last_test);
}
/**
@@ -730,11 +730,11 @@ static void igt_facts_test_mark_and_sweep(struct igt_list_head *head)
/* Assert that the two updated elements are present */
fact = igt_facts_list_get(name1, head);
igt_assert(fact != NULL);
- igt_assert(fact->present == true);
+ igt_assert(fact->present);
fact = igt_facts_list_get(name2, head);
igt_assert(fact != NULL);
- igt_assert(fact->present == true);
+ igt_assert(fact->present);
/* Assert that the third element was deleted */
fact = igt_facts_list_get(name3, head);
@@ -764,9 +764,9 @@ void igt_facts_test(void)
igt_facts_test_add_get(&igt_facts_list_pci_gpu_head);
/* Assert that igt_facts_list_mark_and_sweep() cleans up the list */
- igt_assert(igt_list_empty(&igt_facts_list_pci_gpu_head) == false);
+ igt_assert(!igt_list_empty(&igt_facts_list_pci_gpu_head));
igt_facts_list_mark_and_sweep(&igt_facts_list_pci_gpu_head);
- igt_assert(igt_list_empty(&igt_facts_list_pci_gpu_head) == true);
+ igt_assert(igt_list_empty(&igt_facts_list_pci_gpu_head));
/* Test the mark and sweep pattern used to delete elements
* from the list
--
2.43.0
^ permalink raw reply related [flat|nested] 10+ messages in thread* [PATCH i-g-t 2/3] lib/igt_facts: Remove unnecessary extern from header 2025-04-25 9:49 [PATCH i-g-t 1/3] lib/igt_facts: Remove NULL and bool comparisions Peter Senna Tschudin @ 2025-04-25 9:49 ` Peter Senna Tschudin 2025-04-25 13:17 ` Kamil Konieczny 2025-04-25 9:49 ` [PATCH i-g-t 3/3] lib/igt_facts: Fix potential NULL pointer dereference Peter Senna Tschudin ` (4 subsequent siblings) 5 siblings, 1 reply; 10+ messages in thread From: Peter Senna Tschudin @ 2025-04-25 9:49 UTC (permalink / raw) To: igt-dev; +Cc: Peter Senna Tschudin There was an unnecessary extern on the header. Remove it. Signed-off-by: Peter Senna Tschudin <peter.senna@linux.intel.com> --- lib/igt_facts.h | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/igt_facts.h b/lib/igt_facts.h index e96f88083..109f0d3bd 100644 --- a/lib/igt_facts.h +++ b/lib/igt_facts.h @@ -37,7 +37,6 @@ struct igt_facts_config { bool enabled; bool disable_udev; }; -extern struct igt_facts_config igt_facts_config; void igt_facts_lists_init(void); void igt_facts(const char *last_test); -- 2.43.0 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t 2/3] lib/igt_facts: Remove unnecessary extern from header 2025-04-25 9:49 ` [PATCH i-g-t 2/3] lib/igt_facts: Remove unnecessary extern from header Peter Senna Tschudin @ 2025-04-25 13:17 ` Kamil Konieczny 0 siblings, 0 replies; 10+ messages in thread From: Kamil Konieczny @ 2025-04-25 13:17 UTC (permalink / raw) To: Peter Senna Tschudin; +Cc: igt-dev Hi Peter, On 2025-04-25 at 11:49:03 +0200, Peter Senna Tschudin wrote: > There was an unnecessary extern on the header. Remove it. > > Signed-off-by: Peter Senna Tschudin <peter.senna@linux.intel.com> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > --- > lib/igt_facts.h | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/lib/igt_facts.h b/lib/igt_facts.h > index e96f88083..109f0d3bd 100644 > --- a/lib/igt_facts.h > +++ b/lib/igt_facts.h > @@ -37,7 +37,6 @@ struct igt_facts_config { > bool enabled; > bool disable_udev; > }; > -extern struct igt_facts_config igt_facts_config; > > void igt_facts_lists_init(void); > void igt_facts(const char *last_test); > -- > 2.43.0 > ^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH i-g-t 3/3] lib/igt_facts: Fix potential NULL pointer dereference 2025-04-25 9:49 [PATCH i-g-t 1/3] lib/igt_facts: Remove NULL and bool comparisions Peter Senna Tschudin 2025-04-25 9:49 ` [PATCH i-g-t 2/3] lib/igt_facts: Remove unnecessary extern from header Peter Senna Tschudin @ 2025-04-25 9:49 ` Peter Senna Tschudin 2025-04-25 13:20 ` Kamil Konieczny 2025-04-25 12:08 ` ✓ Xe.CI.BAT: success for series starting with [i-g-t,1/3] lib/igt_facts: Remove NULL and bool comparisions Patchwork ` (3 subsequent siblings) 5 siblings, 1 reply; 10+ messages in thread From: Peter Senna Tschudin @ 2025-04-25 9:49 UTC (permalink / raw) To: igt-dev; +Cc: Peter Senna Tschudin If both udev_device_get_sysattr_value and udev_device_get_sysname fail, pci_addr will remain NULL, which could lead to issues when using it later in asprintf. Ignore cards when pci_addr cannot be extracted. Signed-off-by: Peter Senna Tschudin <peter.senna@linux.intel.com> --- lib/igt_facts.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/igt_facts.c b/lib/igt_facts.c index d38be0726..47a2c98a5 100644 --- a/lib/igt_facts.c +++ b/lib/igt_facts.c @@ -537,6 +537,10 @@ static void igt_facts_scan_pci_drm_cards(const char *last_test) "address"); if (!pci_addr) pci_addr = udev_device_get_sysname(pci_dev); + if (!pci_addr) { + udev_device_unref(drm_dev); + continue; + } } else { /* Some GPUs are platform devices. Ignore them. */ pci_addr = NULL; -- 2.43.0 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t 3/3] lib/igt_facts: Fix potential NULL pointer dereference 2025-04-25 9:49 ` [PATCH i-g-t 3/3] lib/igt_facts: Fix potential NULL pointer dereference Peter Senna Tschudin @ 2025-04-25 13:20 ` Kamil Konieczny 0 siblings, 0 replies; 10+ messages in thread From: Kamil Konieczny @ 2025-04-25 13:20 UTC (permalink / raw) To: Peter Senna Tschudin; +Cc: igt-dev Hi Peter, On 2025-04-25 at 11:49:04 +0200, Peter Senna Tschudin wrote: > If both udev_device_get_sysattr_value and udev_device_get_sysname fail, > pci_addr will remain NULL, which could lead to issues when using it > later in asprintf. Ignore cards when pci_addr cannot be extracted. > > Signed-off-by: Peter Senna Tschudin <peter.senna@linux.intel.com> LGTM Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > --- > lib/igt_facts.c | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/lib/igt_facts.c b/lib/igt_facts.c > index d38be0726..47a2c98a5 100644 > --- a/lib/igt_facts.c > +++ b/lib/igt_facts.c > @@ -537,6 +537,10 @@ static void igt_facts_scan_pci_drm_cards(const char *last_test) > "address"); > if (!pci_addr) > pci_addr = udev_device_get_sysname(pci_dev); > + if (!pci_addr) { > + udev_device_unref(drm_dev); > + continue; > + } > } else { > /* Some GPUs are platform devices. Ignore them. */ > pci_addr = NULL; > -- > 2.43.0 > ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Xe.CI.BAT: success for series starting with [i-g-t,1/3] lib/igt_facts: Remove NULL and bool comparisions 2025-04-25 9:49 [PATCH i-g-t 1/3] lib/igt_facts: Remove NULL and bool comparisions Peter Senna Tschudin 2025-04-25 9:49 ` [PATCH i-g-t 2/3] lib/igt_facts: Remove unnecessary extern from header Peter Senna Tschudin 2025-04-25 9:49 ` [PATCH i-g-t 3/3] lib/igt_facts: Fix potential NULL pointer dereference Peter Senna Tschudin @ 2025-04-25 12:08 ` Patchwork 2025-04-25 13:17 ` [PATCH i-g-t 1/3] " Kamil Konieczny ` (2 subsequent siblings) 5 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2025-04-25 12:08 UTC (permalink / raw) To: Peter Senna Tschudin; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1105 bytes --] == Series Details == Series: series starting with [i-g-t,1/3] lib/igt_facts: Remove NULL and bool comparisions URL : https://patchwork.freedesktop.org/series/148254/ State : success == Summary == CI Bug Log - changes from XEIGT_8337_BAT -> XEIGTPW_13043_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8337 -> IGTPW_13043 * Linux: xe-2997-22d29c516450a3931a8e0b1346ab9f334c19ab9c -> xe-2998-5c29806460a155cbfb176d48bd707cdf17bf259b IGTPW_13043: 13043 IGT_8337: a5f980e11a5540c1c079cc6fceb2b2d889b5a460 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2997-22d29c516450a3931a8e0b1346ab9f334c19ab9c: 22d29c516450a3931a8e0b1346ab9f334c19ab9c xe-2998-5c29806460a155cbfb176d48bd707cdf17bf259b: 5c29806460a155cbfb176d48bd707cdf17bf259b == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13043/index.html [-- Attachment #2: Type: text/html, Size: 1664 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t 1/3] lib/igt_facts: Remove NULL and bool comparisions 2025-04-25 9:49 [PATCH i-g-t 1/3] lib/igt_facts: Remove NULL and bool comparisions Peter Senna Tschudin ` (2 preceding siblings ...) 2025-04-25 12:08 ` ✓ Xe.CI.BAT: success for series starting with [i-g-t,1/3] lib/igt_facts: Remove NULL and bool comparisions Patchwork @ 2025-04-25 13:17 ` Kamil Konieczny 2025-04-25 18:43 ` ✓ i915.CI.BAT: success for series starting with [i-g-t,1/3] " Patchwork 2025-04-26 0:07 ` ✗ i915.CI.Full: failure " Patchwork 5 siblings, 0 replies; 10+ messages in thread From: Kamil Konieczny @ 2025-04-25 13:17 UTC (permalink / raw) To: Peter Senna Tschudin; +Cc: igt-dev Hi Peter, On 2025-04-25 at 11:49:02 +0200, Peter Senna Tschudin wrote: > Remove comparisons to NULL, true, and false using ! when appropriate. > For example, from if (old_value == NULL && new_value != NULL) > to if (!old_value && new_value) > > Signed-off-by: Peter Senna Tschudin <peter.senna@linux.intel.com> LGTM Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > --- > lib/igt_facts.c | 32 ++++++++++++++++---------------- > 1 file changed, 16 insertions(+), 16 deletions(-) > > diff --git a/lib/igt_facts.c b/lib/igt_facts.c > index 2e04a7c86..d38be0726 100644 > --- a/lib/igt_facts.c > +++ b/lib/igt_facts.c > @@ -85,7 +85,7 @@ static void igt_facts_log(const char *last_test, const char *name, > char *uptime = NULL; > const char *before_tests = "before any test"; > > - if (old_value == NULL && new_value == NULL) > + if (!old_value && !new_value) > return; > > if (clock_gettime(CLOCK_BOOTTIME, &uptime_ts) != 0) > @@ -97,7 +97,7 @@ static void igt_facts_log(const char *last_test, const char *name, > uptime_ts.tv_nsec / 1000); > > /* New fact */ > - if (old_value == NULL && new_value != NULL) { > + if (!old_value && new_value) { > igt_info("[%s] [FACT %s] new: %s: %s\n", > uptime, > last_test ? last_test : before_tests, > @@ -107,7 +107,7 @@ static void igt_facts_log(const char *last_test, const char *name, > } > > /* Update fact */ > - if (old_value != NULL && new_value != NULL) { > + if (old_value && new_value) { > igt_info("[%s] [FACT %s] changed: %s: %s -> %s\n", > uptime, > last_test ? last_test : before_tests, > @@ -118,7 +118,7 @@ static void igt_facts_log(const char *last_test, const char *name, > } > > /* Deleted fact */ > - if (old_value != NULL && new_value == NULL) { > + if (old_value && !new_value) { > igt_info("[%s] [FACT %s] deleted: %s: %s\n", > uptime, > last_test ? last_test : before_tests, > @@ -213,7 +213,7 @@ static bool igt_facts_list_add(const char *name, > igt_fact *new_fact = NULL, *old_fact = NULL; > bool logged = false; > > - if (name == NULL || value == NULL) > + if (!name || !value) > return false; > > old_fact = igt_facts_list_get(name, head); > @@ -228,7 +228,7 @@ static bool igt_facts_list_add(const char *name, > } > > new_fact = malloc(sizeof(igt_fact)); > - if (new_fact == NULL) > + if (!new_fact) > return false; > > new_fact->name = strdup(name); > @@ -523,7 +523,7 @@ static void igt_facts_scan_pci_drm_cards(const char *last_test) > * If the device has '-' in the name, contine > */ > if (strncmp(drm_name, "card", 4) != 0 || > - strchr(drm_name, '-') != NULL) { > + strchr(drm_name, '-')) { > udev_device_unref(drm_dev); > continue; > } > @@ -586,7 +586,7 @@ static void igt_facts_scan_kernel_taints(const char *last_test) > > igt_facts_list_mark(head); > > - while ((reason = igt_explain_taints(&taints)) != NULL) { > + while ((reason = igt_explain_taints(&taints))) { > /* Cut at the ':' to get only the taint name */ > taint_name = strtok(strdup(reason), ":"); > if (!taint_name) > @@ -677,18 +677,18 @@ static void igt_facts_test_add_get(struct igt_list_head *head) > const char *last_test = NULL; > > ret = igt_facts_list_add(name, value, last_test, head); > - igt_assert(ret == true); > + igt_assert(ret); > > /* Assert that there is one element in the linked list */ > igt_assert_eq(igt_list_length(head), 1); > > /* Assert that the element in the linked list is the one we added */ > fact = igt_facts_list_get(name, head); > - igt_assert(fact != NULL); > + igt_assert(fact); > igt_assert_eq(strcmp(fact->name, name), 0); > igt_assert_eq(strcmp(fact->value, value), 0); > - igt_assert(fact->present == true); > - igt_assert(fact->last_test == NULL); > + igt_assert(fact->present); > + igt_assert(!fact->last_test); > } > > /** > @@ -730,11 +730,11 @@ static void igt_facts_test_mark_and_sweep(struct igt_list_head *head) > /* Assert that the two updated elements are present */ > fact = igt_facts_list_get(name1, head); > igt_assert(fact != NULL); > - igt_assert(fact->present == true); > + igt_assert(fact->present); > > fact = igt_facts_list_get(name2, head); > igt_assert(fact != NULL); > - igt_assert(fact->present == true); > + igt_assert(fact->present); > > /* Assert that the third element was deleted */ > fact = igt_facts_list_get(name3, head); > @@ -764,9 +764,9 @@ void igt_facts_test(void) > igt_facts_test_add_get(&igt_facts_list_pci_gpu_head); > > /* Assert that igt_facts_list_mark_and_sweep() cleans up the list */ > - igt_assert(igt_list_empty(&igt_facts_list_pci_gpu_head) == false); > + igt_assert(!igt_list_empty(&igt_facts_list_pci_gpu_head)); > igt_facts_list_mark_and_sweep(&igt_facts_list_pci_gpu_head); > - igt_assert(igt_list_empty(&igt_facts_list_pci_gpu_head) == true); > + igt_assert(igt_list_empty(&igt_facts_list_pci_gpu_head)); > > /* Test the mark and sweep pattern used to delete elements > * from the list > -- > 2.43.0 > ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ i915.CI.BAT: success for series starting with [i-g-t,1/3] lib/igt_facts: Remove NULL and bool comparisions 2025-04-25 9:49 [PATCH i-g-t 1/3] lib/igt_facts: Remove NULL and bool comparisions Peter Senna Tschudin ` (3 preceding siblings ...) 2025-04-25 13:17 ` [PATCH i-g-t 1/3] " Kamil Konieczny @ 2025-04-25 18:43 ` Patchwork 2025-04-26 0:07 ` ✗ i915.CI.Full: failure " Patchwork 5 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2025-04-25 18:43 UTC (permalink / raw) To: Peter Senna Tschudin; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 11963 bytes --] == Series Details == Series: series starting with [i-g-t,1/3] lib/igt_facts: Remove NULL and bool comparisions URL : https://patchwork.freedesktop.org/series/148254/ State : success == Summary == CI Bug Log - changes from IGT_8337 -> IGTPW_13043 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/index.html Participating hosts (40 -> 43) ------------------------------ Additional (3): fi-hsw-4770 fi-glk-j4005 bat-arlh-2 Known issues ------------ Here are the changes found in IGTPW_13043 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@eof: - bat-arlh-2: NOTRUN -> [SKIP][1] ([i915#11345] / [i915#11346]) +3 other tests skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/bat-arlh-2/igt@fbdev@eof.html * igt@fbdev@info: - bat-arlh-2: NOTRUN -> [SKIP][2] ([i915#11346] / [i915#1849]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/bat-arlh-2/igt@fbdev@info.html * igt@gem_huc_copy@huc-copy: - fi-glk-j4005: NOTRUN -> [SKIP][3] ([i915#2190]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/fi-glk-j4005/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - bat-arlh-2: NOTRUN -> [SKIP][4] ([i915#10213] / [i915#11346] / [i915#11671]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/bat-arlh-2/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@parallel-random-engines: - fi-glk-j4005: NOTRUN -> [SKIP][5] ([i915#4613]) +3 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/fi-glk-j4005/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_mmap@basic: - bat-arlh-2: NOTRUN -> [SKIP][6] ([i915#11343] / [i915#11346]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/bat-arlh-2/igt@gem_mmap@basic.html * igt@gem_render_tiled_blits@basic: - bat-arlh-2: NOTRUN -> [SKIP][7] ([i915#10197] / [i915#10211] / [i915#11346] / [i915#11725]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/bat-arlh-2/igt@gem_render_tiled_blits@basic.html * igt@gem_softpin@allocator-basic-reserve: - fi-hsw-4770: NOTRUN -> [SKIP][8] +15 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/fi-hsw-4770/igt@gem_softpin@allocator-basic-reserve.html * igt@gem_tiled_blits@basic: - bat-arlh-2: NOTRUN -> [SKIP][9] ([i915#11346] / [i915#12637]) +4 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/bat-arlh-2/igt@gem_tiled_blits@basic.html * igt@gem_tiled_pread_basic: - bat-arlh-2: NOTRUN -> [SKIP][10] ([i915#10206] / [i915#11346] / [i915#11724]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/bat-arlh-2/igt@gem_tiled_pread_basic.html * igt@i915_pm_rps@basic-api: - bat-arlh-2: NOTRUN -> [SKIP][11] ([i915#10209] / [i915#11346] / [i915#11681]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/bat-arlh-2/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live: - bat-arlh-2: NOTRUN -> [INCOMPLETE][12] ([i915#14046]) +1 other test incomplete [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/bat-arlh-2/igt@i915_selftest@live.html * igt@i915_selftest@live@client: - fi-kbl-7567u: [PASS][13] -> [DMESG-WARN][14] ([i915#13735]) +13 other tests dmesg-warn [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8337/fi-kbl-7567u/igt@i915_selftest@live@client.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/fi-kbl-7567u/igt@i915_selftest@live@client.html * igt@i915_selftest@live@workarounds: - bat-arlh-3: [PASS][15] -> [DMESG-FAIL][16] ([i915#12061]) +1 other test dmesg-fail [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8337/bat-arlh-3/igt@i915_selftest@live@workarounds.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/bat-arlh-3/igt@i915_selftest@live@workarounds.html - bat-arls-5: [PASS][17] -> [DMESG-FAIL][18] ([i915#12061]) +1 other test dmesg-fail [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8337/bat-arls-5/igt@i915_selftest@live@workarounds.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/bat-arls-5/igt@i915_selftest@live@workarounds.html - bat-mtlp-9: [PASS][19] -> [DMESG-FAIL][20] ([i915#12061]) +1 other test dmesg-fail [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8337/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/bat-mtlp-9/igt@i915_selftest@live@workarounds.html * igt@intel_hwmon@hwmon-read: - bat-arlh-2: NOTRUN -> [SKIP][21] ([i915#11346] / [i915#11680] / [i915#7707]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/bat-arlh-2/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - fi-hsw-4770: NOTRUN -> [SKIP][22] ([i915#5190]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/fi-hsw-4770/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html - bat-arlh-2: NOTRUN -> [SKIP][23] ([i915#10200] / [i915#11346] / [i915#11666] / [i915#12203]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/bat-arlh-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - bat-arlh-2: NOTRUN -> [SKIP][24] ([i915#10200] / [i915#11346] / [i915#11666]) +8 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/bat-arlh-2/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_psr@psr-primary-page-flip: - fi-glk-j4005: NOTRUN -> [SKIP][25] +11 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/fi-glk-j4005/igt@kms_psr@psr-primary-page-flip.html - bat-arlh-2: NOTRUN -> [SKIP][26] ([i915#11346]) +32 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/bat-arlh-2/igt@kms_psr@psr-primary-page-flip.html * igt@kms_psr@psr-sprite-plane-onoff: - fi-hsw-4770: NOTRUN -> [SKIP][27] ([i915#1072]) +3 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/fi-hsw-4770/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_setmode@basic-clone-single-crtc: - bat-arlh-2: NOTRUN -> [SKIP][28] ([i915#10208] / [i915#11346] / [i915#8809]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/bat-arlh-2/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-read: - bat-arlh-2: NOTRUN -> [SKIP][29] ([i915#10212] / [i915#11346] / [i915#11726]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/bat-arlh-2/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-read: - bat-arlh-2: NOTRUN -> [SKIP][30] ([i915#10214] / [i915#11346] / [i915#11726]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/bat-arlh-2/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-write: - bat-arlh-2: NOTRUN -> [SKIP][31] ([i915#10216] / [i915#11346] / [i915#11723]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/bat-arlh-2/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@dmabuf@all-tests: - bat-apl-1: [INCOMPLETE][32] ([i915#12904]) -> [PASS][33] +1 other test pass [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8337/bat-apl-1/igt@dmabuf@all-tests.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/bat-apl-1/igt@dmabuf@all-tests.html * igt@dmabuf@all-tests@dma_fence_chain: - fi-bsw-nick: [INCOMPLETE][34] ([i915#12904]) -> [PASS][35] +1 other test pass [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8337/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html * igt@i915_selftest@live@workarounds: - bat-mtlp-6: [DMESG-FAIL][36] ([i915#12061]) -> [PASS][37] +1 other test pass [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8337/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/bat-mtlp-6/igt@i915_selftest@live@workarounds.html - bat-arls-6: [DMESG-FAIL][38] ([i915#12061]) -> [PASS][39] +1 other test pass [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8337/bat-arls-6/igt@i915_selftest@live@workarounds.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/bat-arls-6/igt@i915_selftest@live@workarounds.html [i915#10197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10197 [i915#10200]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10200 [i915#10206]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10206 [i915#10208]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10208 [i915#10209]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10209 [i915#10211]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10211 [i915#10212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10212 [i915#10213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10213 [i915#10214]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10214 [i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#11343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11343 [i915#11345]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11345 [i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346 [i915#11666]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11666 [i915#11671]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11671 [i915#11680]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11680 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11723 [i915#11724]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11724 [i915#11725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11725 [i915#11726]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11726 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12203]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12203 [i915#12637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12637 [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904 [i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735 [i915#14046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14046 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8337 -> IGTPW_13043 * Linux: CI_DRM_16463 -> CI_DRM_16464 CI-20190529: 20190529 CI_DRM_16463: 22d29c516450a3931a8e0b1346ab9f334c19ab9c @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_16464: 5c29806460a155cbfb176d48bd707cdf17bf259b @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_13043: 13043 IGT_8337: a5f980e11a5540c1c079cc6fceb2b2d889b5a460 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/index.html [-- Attachment #2: Type: text/html, Size: 14912 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ i915.CI.Full: failure for series starting with [i-g-t,1/3] lib/igt_facts: Remove NULL and bool comparisions 2025-04-25 9:49 [PATCH i-g-t 1/3] lib/igt_facts: Remove NULL and bool comparisions Peter Senna Tschudin ` (4 preceding siblings ...) 2025-04-25 18:43 ` ✓ i915.CI.BAT: success for series starting with [i-g-t,1/3] " Patchwork @ 2025-04-26 0:07 ` Patchwork 2025-04-26 8:05 ` Peter Senna Tschudin 5 siblings, 1 reply; 10+ messages in thread From: Patchwork @ 2025-04-26 0:07 UTC (permalink / raw) To: Peter Senna Tschudin; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 87250 bytes --] == Series Details == Series: series starting with [i-g-t,1/3] lib/igt_facts: Remove NULL and bool comparisions URL : https://patchwork.freedesktop.org/series/148254/ State : failure == Summary == CI Bug Log - changes from CI_DRM_16464_full -> IGTPW_13043_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_13043_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_13043_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) 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_13043/index.html Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_13043_full: ### IGT changes ### #### Possible regressions #### * igt@gem_render_copy@linear: - shard-dg1: [PASS][1] -> [ABORT][2] +1 other test abort [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16464/shard-dg1-16/igt@gem_render_copy@linear.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-12/igt@gem_render_copy@linear.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-rkl: NOTRUN -> [INCOMPLETE][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-rkl-3/igt@kms_pm_rpm@system-suspend-modeset.html New tests --------- New tests have been introduced between CI_DRM_16464_full and IGTPW_13043_full: ### New IGT tests (5) ### * igt@gem_render_copy@fbc-1p-shrfb-fliptrack-mmap-gtt: - Statuses : - Exec time: [None] s * igt@gem_render_copy@fbcpsr-1p-offscren-pri-indfb-draw-render: - Statuses : - Exec time: [None] s * igt@gem_render_copy@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc: - Statuses : - Exec time: [None] s * igt@gem_render_copy@syncobj-timeline-signal: - Statuses : - Exec time: [None] s * igt@gem_render_copy@system-suspend-modeset: - Statuses : - Exec time: [None] s Known issues ------------ Here are the changes found in IGTPW_13043_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][4] ([i915#8411]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-rkl-8/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@blit-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][5] ([i915#8411]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-3/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][6] ([i915#8411]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-4/igt@api_intel_bb@object-reloc-purge-cache.html * igt@device_reset@cold-reset-bound: - shard-dg2: NOTRUN -> [SKIP][7] ([i915#11078]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-1/igt@device_reset@cold-reset-bound.html * igt@gem_bad_reloc@negative-reloc-bltcopy: - shard-dg2-9: NOTRUN -> [SKIP][8] ([i915#3281]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@gem_bad_reloc@negative-reloc-bltcopy.html * igt@gem_ccs@ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][9] ([i915#3555] / [i915#9323]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-rkl-8/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#9323]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-6/igt@gem_ccs@ctrl-surf-copy-new-ctx.html - shard-dg1: NOTRUN -> [SKIP][11] ([i915#9323]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-12/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-lmem0-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][12] ([i915#12392] / [i915#13356]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-10/igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-lmem0-lmem0.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#8555]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#280]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-rkl-8/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][15] ([i915#280]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-2/igt@gem_ctx_sseu@invalid-sseu.html - shard-dg1: NOTRUN -> [SKIP][16] ([i915#280]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-15/igt@gem_ctx_sseu@invalid-sseu.html - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#280]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-2/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@reset-stress: - shard-dg1: [PASS][18] -> [FAIL][19] ([i915#12543] / [i915#5784]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16464/shard-dg1-13/igt@gem_eio@reset-stress.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-17/igt@gem_eio@reset-stress.html * igt@gem_eio@unwedge-stress: - shard-snb: NOTRUN -> [FAIL][20] ([i915#8898]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-snb6/igt@gem_eio@unwedge-stress.html - shard-dg1: NOTRUN -> [FAIL][21] ([i915#12714] / [i915#5784]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-12/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-dual: - shard-dg2-9: NOTRUN -> [SKIP][22] ([i915#4771]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#4771]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-6/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: NOTRUN -> [SKIP][24] ([i915#6344]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-rkl-3/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_fence@submit67: - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#4812]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-7/igt@gem_exec_fence@submit67.html * igt@gem_exec_fence@syncobj-backward-timeline-chain-engines: - shard-snb: NOTRUN -> [SKIP][26] +60 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-snb7/igt@gem_exec_fence@syncobj-backward-timeline-chain-engines.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#3539] / [i915#4852]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-11/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_reloc@basic-cpu-read: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#3281]) +6 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-7/igt@gem_exec_reloc@basic-cpu-read.html * igt@gem_exec_reloc@basic-gtt-wc: - shard-mtlp: NOTRUN -> [SKIP][29] ([i915#3281]) +5 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-1/igt@gem_exec_reloc@basic-gtt-wc.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: NOTRUN -> [SKIP][30] ([i915#3281]) +7 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-rkl-8/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_reloc@basic-wc-read-noreloc: - shard-dg1: NOTRUN -> [SKIP][31] ([i915#3281]) +3 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-14/igt@gem_exec_reloc@basic-wc-read-noreloc.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2-9: NOTRUN -> [SKIP][32] ([i915#4537] / [i915#4812]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_exec_suspend@basic-s4-devices: - shard-dg2: [PASS][33] -> [ABORT][34] ([i915#7975] / [i915#8213]) +1 other test abort [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16464/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-10/igt@gem_exec_suspend@basic-s4-devices.html * igt@gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#4860]) +2 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-11/igt@gem_fence_thrash@bo-copy.html * igt@gem_fence_thrash@bo-write-verify-x: - shard-dg2-9: NOTRUN -> [SKIP][36] ([i915#4860]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@gem_fence_thrash@bo-write-verify-x.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-mtlp: NOTRUN -> [SKIP][37] ([i915#4860]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-8/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy: - shard-dg1: NOTRUN -> [SKIP][38] ([i915#4860]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-17/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html * igt@gem_lmem_swapping@basic: - shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4613]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-6/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@verify-random: - shard-rkl: NOTRUN -> [SKIP][40] ([i915#4613]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-rkl-8/igt@gem_lmem_swapping@verify-random.html - shard-glk: NOTRUN -> [SKIP][41] ([i915#4613]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-glk1/igt@gem_lmem_swapping@verify-random.html * igt@gem_madvise@dontneed-before-exec: - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#3282]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-8/igt@gem_madvise@dontneed-before-exec.html * igt@gem_media_vme: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#284]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-8/igt@gem_media_vme.html * igt@gem_mmap@short-mmap: - shard-dg2-9: NOTRUN -> [SKIP][44] ([i915#4083]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@gem_mmap@short-mmap.html * igt@gem_mmap_gtt@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#4077]) +6 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-10/igt@gem_mmap_gtt@basic-small-bo.html * igt@gem_mmap_gtt@fault-concurrent-x: - shard-dg2-9: NOTRUN -> [SKIP][46] ([i915#4077]) +4 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@gem_mmap_gtt@fault-concurrent-x.html * igt@gem_mmap_gtt@ptrace: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4077]) +3 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-8/igt@gem_mmap_gtt@ptrace.html * igt@gem_mmap_wc@invalid-flags: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4083]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-4/igt@gem_mmap_wc@invalid-flags.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#4083]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-17/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_partial_pwrite_pread@write-uncached: - shard-dg2-9: NOTRUN -> [SKIP][50] ([i915#3282]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@gem_partial_pwrite_pread@write-uncached.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#3282]) +3 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-11/igt@gem_pread@snoop.html * igt@gem_pwrite@basic-exhaustion: - shard-rkl: NOTRUN -> [SKIP][52] ([i915#3282]) +9 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-rkl-3/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@create-regular-buffer: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#4270]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-18/igt@gem_pxp@create-regular-buffer.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#4270]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-3/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-dg2-9: NOTRUN -> [SKIP][55] ([i915#4270]) +2 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#8428]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-8/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html * igt@gem_render_copy@y-tiled-to-vebox-y-tiled: - shard-dg2-9: NOTRUN -> [SKIP][57] ([i915#5190] / [i915#8428]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#5190] / [i915#8428]) +3 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-3/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#4079]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-19/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_set_tiling_vs_pwrite: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4079]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-3/igt@gem_set_tiling_vs_pwrite.html * igt@gem_tiled_partial_pwrite_pread@writes-after-reads: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#4077]) +5 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-19/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html * igt@gem_unfence_active_buffers: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#4879]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-12/igt@gem_unfence_active_buffers.html - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4879]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-3/igt@gem_unfence_active_buffers.html - shard-dg2: NOTRUN -> [SKIP][64] ([i915#4879]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-11/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#3297]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-8/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#3297]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-11/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-dg2-9: NOTRUN -> [SKIP][67] ([i915#3297]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@relocations: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#3281] / [i915#3297]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-2/igt@gem_userptr_blits@relocations.html * igt@gen3_mixed_blits: - shard-dg2-9: NOTRUN -> [SKIP][69] +6 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@gen3_mixed_blits.html * igt@gen7_exec_parse@bitmasks: - shard-dg2: NOTRUN -> [SKIP][70] +7 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-5/igt@gen7_exec_parse@bitmasks.html * igt@gen9_exec_parse@allowed-all: - shard-dg2-9: NOTRUN -> [SKIP][71] ([i915#2856]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@basic-rejected: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#2856]) +3 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-5/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@batch-invalid-length: - shard-rkl: NOTRUN -> [SKIP][73] ([i915#2527]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-rkl-8/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@valid-registers: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#2856]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-7/igt@gen9_exec_parse@valid-registers.html * igt@i915_drm_fdinfo@busy@bcs0: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#14073]) +6 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-7/igt@i915_drm_fdinfo@busy@bcs0.html * igt@i915_drm_fdinfo@busy@rcs0: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#14073]) +5 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-16/igt@i915_drm_fdinfo@busy@rcs0.html * igt@i915_drm_fdinfo@busy@vecs1: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#14073]) +7 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-6/igt@i915_drm_fdinfo@busy@vecs1.html * igt@i915_drm_fdinfo@virtual-busy: - shard-dg1: NOTRUN -> [SKIP][78] ([i915#14118]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-17/igt@i915_drm_fdinfo@virtual-busy.html * igt@i915_drm_fdinfo@virtual-busy-hang-all: - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#14118]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-7/igt@i915_drm_fdinfo@virtual-busy-hang-all.html * igt@i915_drm_fdinfo@virtual-busy-idle: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#14118]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-6/igt@i915_drm_fdinfo@virtual-busy-idle.html * igt@i915_hangman@gt-error-state-capture@vcs0: - shard-mtlp: [PASS][81] -> [ABORT][82] ([i915#13193] / [i915#13723]) +2 other tests abort [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16464/shard-mtlp-5/igt@i915_hangman@gt-error-state-capture@vcs0.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-7/igt@i915_hangman@gt-error-state-capture@vcs0.html * igt@i915_module_load@reload-no-display: - shard-snb: [PASS][83] -> [ABORT][84] ([i915#11703]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16464/shard-snb5/igt@i915_module_load@reload-no-display.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-snb5/igt@i915_module_load@reload-no-display.html * igt@i915_pm_rps@thresholds: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#11681]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-6/igt@i915_pm_rps@thresholds.html * igt@i915_pm_rps@thresholds-idle: - shard-dg2-9: NOTRUN -> [SKIP][86] ([i915#11681]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@i915_pm_rps@thresholds-idle.html * igt@i915_selftest@live@workarounds: - shard-dg2: NOTRUN -> [DMESG-FAIL][87] ([i915#12061]) +1 other test dmesg-fail [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-3/igt@i915_selftest@live@workarounds.html * igt@i915_selftest@mock@memory_region: - shard-dg1: NOTRUN -> [DMESG-WARN][88] ([i915#9311]) +1 other test dmesg-warn [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-19/igt@i915_selftest@mock@memory_region.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-glk: NOTRUN -> [INCOMPLETE][89] ([i915#4817]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-glk1/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@intel_hwmon@hwmon-read: - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#7707]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-6/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2-9: NOTRUN -> [SKIP][91] ([i915#5190]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2-9: NOTRUN -> [SKIP][92] ([i915#4212]) +2 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-4-rc-ccs-cc: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#8709]) +7 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-4/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-4-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc: - shard-mtlp: NOTRUN -> [SKIP][94] ([i915#8709]) +7 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs: - shard-dg2-9: NOTRUN -> [SKIP][95] ([i915#8709]) +7 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2-9: NOTRUN -> [SKIP][96] ([i915#9531]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@4-tiled-32bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][97] ([i915#5286]) +2 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-rkl-3/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][98] ([i915#4538] / [i915#5286]) +2 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-19/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][99] +14 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-3/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@linear-8bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][100] ([i915#3638]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-13/igt@kms_big_fb@linear-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][101] ([i915#3638]) +3 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-rkl-3/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-180: - shard-dg2-9: NOTRUN -> [SKIP][102] ([i915#4538] / [i915#5190]) +4 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#5190]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-1/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#4538] / [i915#5190]) +7 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#4538]) +2 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-16/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][106] +8 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-rkl-8/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][107] ([i915#6095]) +14 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-rkl-3/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#14098] / [i915#6095]) +19 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-yf-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][109] ([i915#6095]) +24 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-8/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][110] +66 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-glk2/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-b-hdmi-a-2: - shard-dg2-9: NOTRUN -> [SKIP][111] ([i915#10307] / [i915#6095]) +19 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][112] ([i915#6095]) +128 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-13/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#6095]) +12 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-2/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-3.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg2-9: NOTRUN -> [SKIP][114] ([i915#12313]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][115] ([i915#12313]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-rkl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#10307] / [i915#6095]) +127 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#12313]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-2/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-mtlp: NOTRUN -> [SKIP][119] ([i915#13784]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-4/igt@kms_cdclk@mode-transition-all-outputs.html - shard-dg2-9: NOTRUN -> [SKIP][120] ([i915#13784]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#13781]) +3 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-8/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html * igt@kms_chamelium_edid@hdmi-edid-read: - shard-rkl: NOTRUN -> [SKIP][122] ([i915#11151] / [i915#7828]) +4 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-rkl-8/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_chamelium_frames@dp-crc-single: - shard-dg1: NOTRUN -> [SKIP][123] ([i915#11151] / [i915#7828]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-13/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#11151] / [i915#7828]) +4 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-8/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode: - shard-mtlp: NOTRUN -> [SKIP][125] ([i915#11151] / [i915#7828]) +4 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-1/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-dg2-9: NOTRUN -> [SKIP][126] ([i915#11151] / [i915#7828]) +4 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#3299]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-2/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-1: - shard-rkl: NOTRUN -> [SKIP][128] ([i915#3116]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-rkl-3/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-1: - shard-dg1: NOTRUN -> [SKIP][129] ([i915#9424]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-17/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@mei-interface: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#9424]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-rkl-8/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@uevent: - shard-dg2-9: NOTRUN -> [SKIP][131] ([i915#7118] / [i915#9424]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-32x10: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#3555]) +2 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-16/igt@kms_cursor_crc@cursor-offscreen-32x10.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-dg2-9: NOTRUN -> [SKIP][133] ([i915#3555]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_crc@cursor-rapid-movement-256x85: - shard-mtlp: NOTRUN -> [SKIP][134] ([i915#8814]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-6/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-mtlp: NOTRUN -> [SKIP][135] ([i915#13049]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-2/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#3555]) +6 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-5/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-mtlp: NOTRUN -> [SKIP][137] ([i915#3555] / [i915#8814]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-7/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-dg2-9: NOTRUN -> [SKIP][138] ([i915#13049]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-dg2-9: NOTRUN -> [SKIP][139] ([i915#13046] / [i915#5354]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2-9: NOTRUN -> [SKIP][140] ([i915#4103] / [i915#4213]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg1: NOTRUN -> [SKIP][141] ([i915#4103] / [i915#4213]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-12/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][142] ([i915#9809]) +2 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#13046] / [i915#5354]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-7/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#9067]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-10/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@single-bo: - shard-dg1: [PASS][145] -> [DMESG-WARN][146] ([i915#4423]) +2 other tests dmesg-warn [145]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16464/shard-dg1-16/igt@kms_cursor_legacy@single-bo.html [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-13/igt@kms_cursor_legacy@single-bo.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-dg2-9: NOTRUN -> [SKIP][147] ([i915#13749]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dp_link_training@uhbr-mst: - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#13749]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-8/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_dp_link_training@uhbr-sst: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#13748]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-11/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#8812]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-6/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#3840] / [i915#9688]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-4/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2-9: NOTRUN -> [SKIP][152] ([i915#3840]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-output-formats: - shard-rkl: NOTRUN -> [SKIP][153] ([i915#3555] / [i915#3840]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-rkl-8/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#3840] / [i915#9053]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-7/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats: - shard-dg1: NOTRUN -> [SKIP][155] ([i915#13798]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-13/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html * igt@kms_feature_discovery@display-4x: - shard-dg2-9: NOTRUN -> [SKIP][156] ([i915#1839]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr1: - shard-rkl: NOTRUN -> [SKIP][157] ([i915#658]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-rkl-3/igt@kms_feature_discovery@psr1.html * igt@kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#4881]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-11/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-flip-vs-dpms: - shard-dg1: NOTRUN -> [SKIP][159] ([i915#9934]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-15/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#3637] / [i915#9934]) +2 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html - shard-dg2-9: NOTRUN -> [SKIP][161] ([i915#9934]) +1 other test skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#9934]) +9 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-11/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-rkl: NOTRUN -> [SKIP][163] ([i915#9934]) +5 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-rkl-8/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@flip-vs-wf_vblank-interruptible: - shard-snb: [PASS][164] -> [FAIL][165] ([i915#13734]) +1 other test fail [164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16464/shard-snb5/igt@kms_flip@flip-vs-wf_vblank-interruptible.html [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-snb6/igt@kms_flip@flip-vs-wf_vblank-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#2672] / [i915#3555]) +1 other test skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html - shard-dg1: NOTRUN -> [SKIP][167] ([i915#2672] / [i915#3555]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#2672]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html - shard-dg1: NOTRUN -> [SKIP][169] ([i915#2587] / [i915#2672]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][170] ([i915#2672] / [i915#3555] / [i915#8813]) +3 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#2672] / [i915#8813]) +3 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][172] ([i915#2672]) +2 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - shard-dg2-9: NOTRUN -> [SKIP][173] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode: - shard-dg2-9: NOTRUN -> [SKIP][174] ([i915#2672]) +2 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling: - shard-dg1: NOTRUN -> [DMESG-WARN][175] ([i915#4423]) +1 other test dmesg-warn [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#2672] / [i915#3555]) +2 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-dg2-9: NOTRUN -> [SKIP][177] ([i915#2672] / [i915#3555]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#8708]) +9 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][179] ([i915#1825]) +21 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-dg2-9: NOTRUN -> [SKIP][180] ([i915#5354]) +9 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-snb: [PASS][181] -> [SKIP][182] +2 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16464/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][183] ([i915#3458]) +6 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-render: - shard-dg2-9: NOTRUN -> [SKIP][184] ([i915#3458]) +8 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2-9: NOTRUN -> [SKIP][185] ([i915#8708]) +9 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][186] +16 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#8708]) +7 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#1825]) +24 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#10055]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#9766]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-rkl-3/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][191] ([i915#8708]) +7 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#3458]) +9 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#10433] / [i915#3458]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#5354]) +17 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][195] ([i915#3023]) +12 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite.html * igt@kms_hdr@brightness-with-hdr: - shard-dg2-9: NOTRUN -> [SKIP][196] ([i915#12713]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@static-toggle: - shard-mtlp: NOTRUN -> [SKIP][197] ([i915#3555] / [i915#8228]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-2/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-dpms: - shard-dg2-9: NOTRUN -> [SKIP][198] ([i915#3555] / [i915#8228]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@kms_hdr@static-toggle-dpms.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#3555] / [i915#8228]) +1 other test skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-3/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-max-non-joiner: - shard-rkl: NOTRUN -> [SKIP][200] ([i915#13688]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-rkl-8/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][201] ([i915#12339]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-rkl-3/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-dg2: [PASS][202] -> [SKIP][203] ([i915#12388]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16464/shard-dg2-11/igt@kms_joiner@invalid-modeset-force-big-joiner.html [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-4/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_panel_fitting@legacy: - shard-rkl: NOTRUN -> [SKIP][204] ([i915#6301]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-rkl-8/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-glk: NOTRUN -> [INCOMPLETE][205] ([i915#12756] / [i915#13409] / [i915#13476]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-glk2/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][206] ([i915#12756]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-glk2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html * igt@kms_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#13705]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-2/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html * igt@kms_plane_lowres@tiling-4: - shard-mtlp: NOTRUN -> [SKIP][208] ([i915#10226] / [i915#11614] / [i915#3555] / [i915#8821]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-8/igt@kms_plane_lowres@tiling-4.html * igt@kms_plane_lowres@tiling-4@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][209] ([i915#11614] / [i915#3582]) +3 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-8/igt@kms_plane_lowres@tiling-4@pipe-b-edp-1.html * igt@kms_plane_multiple@2x-tiling-x: - shard-dg2: NOTRUN -> [SKIP][210] ([i915#13958]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-11/igt@kms_plane_multiple@2x-tiling-x.html - shard-rkl: NOTRUN -> [SKIP][211] ([i915#13958]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-rkl-3/igt@kms_plane_multiple@2x-tiling-x.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][212] ([i915#3555]) +4 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-rkl-8/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2-9: NOTRUN -> [SKIP][213] ([i915#12247] / [i915#9423]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d: - shard-dg2-9: NOTRUN -> [SKIP][214] ([i915#12247]) +7 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a: - shard-mtlp: NOTRUN -> [SKIP][215] ([i915#12247]) +13 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b: - shard-rkl: NOTRUN -> [SKIP][216] ([i915#12247]) +5 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-rkl-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-dg2-9: NOTRUN -> [SKIP][217] ([i915#12247] / [i915#6953] / [i915#9423]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#12247] / [i915#9423]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#12247] / [i915#6953] / [i915#9423]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-dg1: NOTRUN -> [SKIP][220] ([i915#12247] / [i915#6953]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-17/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-mtlp: NOTRUN -> [SKIP][221] ([i915#12247] / [i915#6953]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c: - shard-dg1: NOTRUN -> [SKIP][222] ([i915#12247]) +3 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-17/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#12247]) +11 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d.html * igt@kms_pm_backlight@bad-brightness: - shard-rkl: NOTRUN -> [SKIP][224] ([i915#5354]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-rkl-3/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg1: NOTRUN -> [SKIP][225] ([i915#3828]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-15/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2-9: NOTRUN -> [SKIP][226] ([i915#14104]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#9519]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-6/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html - shard-rkl: NOTRUN -> [SKIP][228] ([i915#9519]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-rkl-8/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html - shard-dg1: NOTRUN -> [SKIP][229] ([i915#9519]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-19/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-mtlp: NOTRUN -> [SKIP][230] ([i915#9519]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#6524]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-rkl-3/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_prime@d3hot: - shard-dg1: NOTRUN -> [SKIP][232] ([i915#6524]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-12/igt@kms_prime@d3hot.html - shard-mtlp: NOTRUN -> [SKIP][233] ([i915#6524]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-6/igt@kms_prime@d3hot.html - shard-dg2: NOTRUN -> [SKIP][234] ([i915#6524] / [i915#6805]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-7/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][235] ([i915#11520]) +3 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-glk1/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html - shard-rkl: NOTRUN -> [SKIP][236] ([i915#11520]) +2 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-rkl-8/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][237] ([i915#9808]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-a-edp-1.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf: - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#12316]) +4 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-4/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][239] ([i915#11520]) +3 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-3/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb: - shard-dg2-9: NOTRUN -> [SKIP][240] ([i915#11520]) +3 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html - shard-snb: NOTRUN -> [SKIP][241] ([i915#11520]) +2 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-snb4/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][242] ([i915#11520]) +1 other test skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-18/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-mtlp: NOTRUN -> [SKIP][243] ([i915#4348]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-nv12: - shard-rkl: NOTRUN -> [SKIP][244] ([i915#9683]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-rkl-8/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-rkl: NOTRUN -> [SKIP][245] ([i915#1072] / [i915#9732]) +11 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-rkl-8/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@pr-primary-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][246] ([i915#9688]) +9 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-2/igt@kms_psr@pr-primary-mmap-cpu.html * igt@kms_psr@psr-sprite-plane-onoff: - shard-dg1: NOTRUN -> [SKIP][247] ([i915#1072] / [i915#9732]) +5 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-18/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_psr@psr2-cursor-blt: - shard-dg2-9: NOTRUN -> [SKIP][248] ([i915#1072] / [i915#9732]) +10 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@kms_psr@psr2-cursor-blt.html * igt@kms_psr@psr2-primary-blt: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#1072] / [i915#9732]) +11 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-2/igt@kms_psr@psr2-primary-blt.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-dg1: NOTRUN -> [SKIP][250] ([i915#5289]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-12/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][251] ([i915#12755] / [i915#5190]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][252] ([i915#5289]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-rkl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-dg2-9: NOTRUN -> [SKIP][253] ([i915#12755]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-mtlp: NOTRUN -> [SKIP][254] ([i915#12755]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-6/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free: - shard-dg2: NOTRUN -> [ABORT][255] ([i915#13179]) +1 other test abort [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-6/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html * igt@kms_vrr@max-min: - shard-dg2-9: NOTRUN -> [SKIP][256] ([i915#9906]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@kms_vrr@max-min.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-rkl: NOTRUN -> [SKIP][257] ([i915#9906]) +1 other test skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-rkl-8/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_writeback@writeback-fb-id: - shard-rkl: NOTRUN -> [SKIP][258] ([i915#2437]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-rkl-8/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-pixel-formats: - shard-mtlp: NOTRUN -> [SKIP][259] ([i915#2437] / [i915#9412]) +1 other test skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-3/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@mi-rpc: - shard-rkl: NOTRUN -> [SKIP][260] ([i915#2434]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-rkl-8/igt@perf@mi-rpc.html * igt@perf_pmu@busy-double-start@vecs0: - shard-mtlp: [PASS][261] -> [FAIL][262] ([i915#4349]) +1 other test fail [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16464/shard-mtlp-2/igt@perf_pmu@busy-double-start@vecs0.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-6/igt@perf_pmu@busy-double-start@vecs0.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2-9: NOTRUN -> [FAIL][263] ([i915#4349]) +4 other tests fail [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-9/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@busy-idle-check-all@ccs0: - shard-mtlp: NOTRUN -> [FAIL][264] ([i915#4349]) +4 other tests fail [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-2/igt@perf_pmu@busy-idle-check-all@ccs0.html * igt@perf_pmu@rc6-all-gts: - shard-dg1: NOTRUN -> [SKIP][265] ([i915#8516]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-19/igt@perf_pmu@rc6-all-gts.html * igt@prime_vgem@basic-fence-mmap: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#3708] / [i915#4077]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-5/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-fence-read: - shard-rkl: NOTRUN -> [SKIP][267] ([i915#3291] / [i915#3708]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-rkl-8/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-read: - shard-dg1: NOTRUN -> [SKIP][268] ([i915#3708]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-19/igt@prime_vgem@basic-read.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg2: NOTRUN -> [SKIP][269] ([i915#9917]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-10/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-rkl: NOTRUN -> [SKIP][270] ([i915#9917]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-rkl-3/igt@sriov_basic@enable-vfs-bind-unbind-each.html #### Possible fixes #### * igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [INCOMPLETE][271] ([i915#12392] / [i915#13356]) -> [PASS][272] [271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16464/shard-dg2-4/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-10/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0.html * igt@gem_eio@context-create: - shard-mtlp: [ABORT][273] ([i915#13193] / [i915#13723]) -> [PASS][274] +1 other test pass [273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16464/shard-mtlp-7/igt@gem_eio@context-create.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-6/igt@gem_eio@context-create.html * igt@i915_selftest@perf: - shard-snb: [ABORT][275] ([i915#11703]) -> [PASS][276] +1 other test pass [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16464/shard-snb6/igt@i915_selftest@perf.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-snb5/igt@i915_selftest@perf.html * igt@kms_addfb_basic@invalid-set-prop: - shard-dg1: [DMESG-WARN][277] ([i915#4423]) -> [PASS][278] +2 other tests pass [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16464/shard-dg1-13/igt@kms_addfb_basic@invalid-set-prop.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-14/igt@kms_addfb_basic@invalid-set-prop.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-snb: [FAIL][279] ([i915#13734]) -> [PASS][280] +5 other tests pass [279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16464/shard-snb4/igt@kms_flip@2x-plain-flip-fb-recreate.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-snb7/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render: - shard-dg2: [FAIL][281] ([i915#6880]) -> [PASS][282] [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16464/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: [SKIP][283] ([i915#6953] / [i915#9423]) -> [PASS][284] [283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16464/shard-dg2-3/igt@kms_plane_scaling@intel-max-src-size.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-11/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: [SKIP][285] ([i915#9519]) -> [PASS][286] +2 other tests pass [285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16464/shard-dg2-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-11/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@perf_pmu@all-busy-idle-check-all: - shard-dg2: [FAIL][287] ([i915#11943]) -> [PASS][288] [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16464/shard-dg2-3/igt@perf_pmu@all-busy-idle-check-all.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-2/igt@perf_pmu@all-busy-idle-check-all.html * igt@perf_pmu@module-unload: - shard-snb: [ABORT][289] -> [PASS][290] [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16464/shard-snb5/igt@perf_pmu@module-unload.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-snb6/igt@perf_pmu@module-unload.html #### Warnings #### * igt@kms_big_fb@x-tiled-32bpp-rotate-90: - shard-dg1: [SKIP][291] ([i915#3638]) -> [SKIP][292] ([i915#3638] / [i915#4423]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16464/shard-dg1-14/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-17/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-4: - shard-dg1: [SKIP][293] ([i915#4423] / [i915#6095]) -> [SKIP][294] ([i915#6095]) +1 other test skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16464/shard-dg1-17/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-4.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-15/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-4.html * igt@kms_chamelium_frames@dp-crc-multiple: - shard-dg1: [SKIP][295] ([i915#11151] / [i915#7828]) -> [SKIP][296] ([i915#11151] / [i915#4423] / [i915#7828]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16464/shard-dg1-18/igt@kms_chamelium_frames@dp-crc-multiple.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-16/igt@kms_chamelium_frames@dp-crc-multiple.html * igt@kms_content_protection@atomic: - shard-dg2: [FAIL][297] ([i915#7173]) -> [SKIP][298] ([i915#7118] / [i915#9424]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16464/shard-dg2-10/igt@kms_content_protection@atomic.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-6/igt@kms_content_protection@atomic.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][299] ([i915#9424]) -> [SKIP][300] ([i915#9433]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16464/shard-dg1-16/igt@kms_content_protection@mei-interface.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-13/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][301] ([i915#7118] / [i915#7162] / [i915#9424]) -> [SKIP][302] ([i915#7118] / [i915#9424]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16464/shard-dg2-10/igt@kms_content_protection@type1.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-3/igt@kms_content_protection@type1.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-dg1: [SKIP][303] ([i915#4423]) -> [SKIP][304] [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16464/shard-dg1-19/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-17/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-dg2: [SKIP][305] ([i915#3458]) -> [SKIP][306] ([i915#10433] / [i915#3458]) +2 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16464/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render: - shard-dg1: [SKIP][307] ([i915#3458]) -> [SKIP][308] ([i915#3458] / [i915#4423]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16464/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_hdr@brightness-with-hdr: - shard-mtlp: [SKIP][309] ([i915#1187] / [i915#12713]) -> [SKIP][310] ([i915#12713]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16464/shard-mtlp-1/igt@kms_hdr@brightness-with-hdr.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-mtlp-4/igt@kms_hdr@brightness-with-hdr.html [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11703]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11703 [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#11943]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11943 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339 [i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388 [i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392 [i915#12543]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12543 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12714]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12714 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13193 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409 [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476 [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688 [i915#13705]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13705 [i915#13723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13723 [i915#13734]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13734 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781 [i915#13784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13784 [i915#13798]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13798 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14104 [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879 [i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7162 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709 [i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821 [i915#8898]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8898 [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433 [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8337 -> IGTPW_13043 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_16464: 5c29806460a155cbfb176d48bd707cdf17bf259b @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_13043: 13043 IGT_8337: a5f980e11a5540c1c079cc6fceb2b2d889b5a460 @ 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_13043/index.html [-- Attachment #2: Type: text/html, Size: 110857 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: ✗ i915.CI.Full: failure for series starting with [i-g-t,1/3] lib/igt_facts: Remove NULL and bool comparisions 2025-04-26 0:07 ` ✗ i915.CI.Full: failure " Patchwork @ 2025-04-26 8:05 ` Peter Senna Tschudin 0 siblings, 0 replies; 10+ messages in thread From: Peter Senna Tschudin @ 2025-04-26 8:05 UTC (permalink / raw) To: igt-dev, I915-ci-infra Dear I915, On 4/26/2025 2:07 AM, Patchwork wrote: > == Series Details == > > Series: series starting with [i-g-t,1/3] lib/igt_facts: Remove NULL and bool comparisions > URL : https://patchwork.freedesktop.org/series/148254/ > State : failure > > == Summary == > > CI Bug Log - changes from CI_DRM_16464_full -> IGTPW_13043_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_13043_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_13043_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) 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_13043/index.html > > Participating hosts (10 -> 10) > ------------------------------ > > No changes in participating hosts > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_13043_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@gem_render_copy@linear: > - shard-dg1: [PASS][1] -> [ABORT][2] +1 other test abort > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16464/shard-dg1-16/igt@gem_render_copy@linear.html > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-dg1-12/igt@gem_render_copy@linear.html > > * igt@kms_pm_rpm@system-suspend-modeset: > - shard-rkl: NOTRUN -> [INCOMPLETE][3] > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13043/shard-rkl-3/igt@kms_pm_rpm@system-suspend-modeset.html These are unrelated to my change. Thank you, Peter ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2025-04-26 8:05 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-04-25 9:49 [PATCH i-g-t 1/3] lib/igt_facts: Remove NULL and bool comparisions Peter Senna Tschudin 2025-04-25 9:49 ` [PATCH i-g-t 2/3] lib/igt_facts: Remove unnecessary extern from header Peter Senna Tschudin 2025-04-25 13:17 ` Kamil Konieczny 2025-04-25 9:49 ` [PATCH i-g-t 3/3] lib/igt_facts: Fix potential NULL pointer dereference Peter Senna Tschudin 2025-04-25 13:20 ` Kamil Konieczny 2025-04-25 12:08 ` ✓ Xe.CI.BAT: success for series starting with [i-g-t,1/3] lib/igt_facts: Remove NULL and bool comparisions Patchwork 2025-04-25 13:17 ` [PATCH i-g-t 1/3] " Kamil Konieczny 2025-04-25 18:43 ` ✓ i915.CI.BAT: success for series starting with [i-g-t,1/3] " Patchwork 2025-04-26 0:07 ` ✗ i915.CI.Full: failure " Patchwork 2025-04-26 8:05 ` Peter Senna Tschudin
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox