* [PATCH 1/1] tests/intel/xe_eu_stall: Add invalid input tests for EU stall sampling
@ 2025-03-27 9:35 Harish Chegondi
2025-03-27 14:19 ` ✓ Xe.CI.BAT: success for series starting with [1/1] " Patchwork
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Harish Chegondi @ 2025-03-27 9:35 UTC (permalink / raw)
To: igt-dev; +Cc: ashutosh.dixit, Harish Chegondi
Add tests to verify that invalid inputs fail the tests
Signed-off-by: Harish Chegondi <harish.chegondi@intel.com>
---
tests/intel/xe_eu_stall.c | 64 +++++++++++++++++++++++++++++++++++++++
1 file changed, 64 insertions(+)
diff --git a/tests/intel/xe_eu_stall.c b/tests/intel/xe_eu_stall.c
index 964bb7c91..8f892a9ae 100644
--- a/tests/intel/xe_eu_stall.c
+++ b/tests/intel/xe_eu_stall.c
@@ -19,6 +19,15 @@
*
* SUBTEST: unprivileged-access
* Description: Verify unprivileged open of a EU stall data stream fd
+ *
+ * SUBTEST: invalid-gt-id
+ * Description: Verify that invalid input GT ID fails the test
+ *
+ * SUBTEST: invalid-sampling-rate
+ * Description: Verify that invalid input sampling rate fails the test
+ *
+ * SUBTEST: invalid-event-report-count
+ * Description: Verify that invalid input event report count fails the test
*/
#include <fcntl.h>
@@ -33,6 +42,9 @@
#define OBSERVATION_PARANOID "/proc/sys/dev/xe/observation_paranoid"
+#define NUM_DATA_ROWS(SIZE) ((SIZE) >> 6)
+
+#define MAX_SUBSLICES 64
#define NUM_ITERS_GPGPU_FILL 100
#define DEFAULT_NUM_REPORTS 1
#define DEFAULT_SAMPLE_RATE (251 * 4)
@@ -283,6 +295,46 @@ static void set_fd_flags(int fd, int flags)
igt_assert_eq(0, fcntl(fd, F_SETFL, old | flags));
}
+/*
+ * Verify that tests with invalid arguments fail.
+ */
+static void test_invalid_arguments(int drm_fd, uint8_t gt_id, uint32_t rate, uint32_t num_reports)
+{
+ uint64_t properties[] = {
+ DRM_XE_EU_STALL_PROP_GT_ID, gt_id,
+ DRM_XE_EU_STALL_PROP_SAMPLE_RATE, rate,
+ DRM_XE_EU_STALL_PROP_WAIT_NUM_REPORTS, num_reports,
+ };
+
+ struct xe_eu_stall_open_prop props = {
+ .num_properties = ARRAY_SIZE(properties) / 2,
+ .properties_ptr = to_user_pointer(properties),
+ };
+
+ xe_eu_stall_ioctl_err(drm_fd, DRM_XE_OBSERVATION_OP_STREAM_OPEN, &props, EINVAL);
+}
+
+static void test_invalid_gt_id(int fd)
+{
+ test_invalid_arguments(fd, 255,
+ DEFAULT_SAMPLE_RATE,
+ DEFAULT_NUM_REPORTS);
+}
+
+static void test_invalid_sampling_rate(int fd)
+{
+ test_invalid_arguments(fd, p_gt_id,
+ (251 * 10),
+ DEFAULT_NUM_REPORTS);
+}
+
+static void test_invalid_event_report_count(int fd)
+{
+ test_invalid_arguments(fd, p_gt_id,
+ DEFAULT_SAMPLE_RATE,
+ (NUM_DATA_ROWS(512 * 1024) * MAX_SUBSLICES) + 1);
+}
+
static inline void enable_paranoid(void)
{
write_u64_file(OBSERVATION_PARANOID, 1);
@@ -615,6 +667,18 @@ igt_main_args("e:g:o:r:u:w:", long_options, help_str, opt_handler, NULL)
igt_subtest("unprivileged-access")
test_non_privileged_access(drm_fd);
+ igt_describe("Verify that invalid input GT ID fails the test");
+ igt_subtest("invalid-gt-id")
+ test_invalid_gt_id(drm_fd);
+
+ igt_describe("Verify that invalid input sampling rate fails the test");
+ igt_subtest("invalid-sampling-rate")
+ test_invalid_sampling_rate(drm_fd);
+
+ igt_describe("Verify that invalid input event report count fails the test");
+ igt_subtest("invalid-event-report-count")
+ test_invalid_event_report_count(drm_fd);
+
igt_fixture {
if (output)
fclose(output);
--
2.48.1
^ permalink raw reply related [flat|nested] 8+ messages in thread* ✓ Xe.CI.BAT: success for series starting with [1/1] tests/intel/xe_eu_stall: Add invalid input tests for EU stall sampling 2025-03-27 9:35 [PATCH 1/1] tests/intel/xe_eu_stall: Add invalid input tests for EU stall sampling Harish Chegondi @ 2025-03-27 14:19 ` Patchwork 2025-03-27 14:34 ` ✗ i915.CI.BAT: failure " Patchwork ` (3 subsequent siblings) 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2025-03-27 14:19 UTC (permalink / raw) To: Harish Chegondi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1577 bytes --] == Series Details == Series: series starting with [1/1] tests/intel/xe_eu_stall: Add invalid input tests for EU stall sampling URL : https://patchwork.freedesktop.org/series/146856/ State : success == Summary == CI Bug Log - changes from XEIGT_8289_BAT -> XEIGTPW_12856_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12856_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@xe_exec_balancer@twice-virtual-rebind: - bat-adlp-vf: [PASS][1] -> [ABORT][2] ([Intel XE#3970]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/bat-adlp-vf/igt@xe_exec_balancer@twice-virtual-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/bat-adlp-vf/igt@xe_exec_balancer@twice-virtual-rebind.html [Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970 Build changes ------------- * IGT: IGT_8289 -> IGTPW_12856 * Linux: xe-2854-14c330bc015ded4a1f1dd1f5aeb8617077aaa7e8 -> xe-2859-1e750490a76bbb8bcb8ea8d5fba2a68bf0845def IGTPW_12856: 12856 IGT_8289: 8289 xe-2854-14c330bc015ded4a1f1dd1f5aeb8617077aaa7e8: 14c330bc015ded4a1f1dd1f5aeb8617077aaa7e8 xe-2859-1e750490a76bbb8bcb8ea8d5fba2a68bf0845def: 1e750490a76bbb8bcb8ea8d5fba2a68bf0845def == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/index.html [-- Attachment #2: Type: text/html, Size: 2153 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ i915.CI.BAT: failure for series starting with [1/1] tests/intel/xe_eu_stall: Add invalid input tests for EU stall sampling 2025-03-27 9:35 [PATCH 1/1] tests/intel/xe_eu_stall: Add invalid input tests for EU stall sampling Harish Chegondi 2025-03-27 14:19 ` ✓ Xe.CI.BAT: success for series starting with [1/1] " Patchwork @ 2025-03-27 14:34 ` Patchwork 2025-03-27 17:35 ` [PATCH 1/1] " Dixit, Ashutosh ` (2 subsequent siblings) 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2025-03-27 14:34 UTC (permalink / raw) To: Harish Chegondi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4935 bytes --] == Series Details == Series: series starting with [1/1] tests/intel/xe_eu_stall: Add invalid input tests for EU stall sampling URL : https://patchwork.freedesktop.org/series/146856/ State : failure == Summary == CI Bug Log - changes from IGT_8289 -> IGTPW_12856 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12856 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12856, 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_12856/index.html Participating hosts (41 -> 39) ------------------------------ Missing (2): fi-snb-2520m fi-skl-6600u Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12856: ### IGT changes ### #### Possible regressions #### * igt@kms_pm_rpm@basic-pci-d3-state: - fi-kbl-7567u: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8289/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12856/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html Known issues ------------ Here are the changes found in IGTPW_12856 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@read_all_entries: - bat-adlp-6: [PASS][3] -> [DMESG-WARN][4] ([i915#13890]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8289/bat-adlp-6/igt@debugfs_test@read_all_entries.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12856/bat-adlp-6/igt@debugfs_test@read_all_entries.html * igt@i915_selftest@live: - bat-mtlp-8: [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8289/bat-mtlp-8/igt@i915_selftest@live.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12856/bat-mtlp-8/igt@i915_selftest@live.html - bat-dg2-11: [PASS][7] -> [DMESG-FAIL][8] ([i915#12061] / [i915#12435]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8289/bat-dg2-11/igt@i915_selftest@live.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12856/bat-dg2-11/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-dg2-11: [PASS][9] -> [DMESG-FAIL][10] ([i915#12061]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8289/bat-dg2-11/igt@i915_selftest@live@workarounds.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12856/bat-dg2-11/igt@i915_selftest@live@workarounds.html #### Possible fixes #### * igt@core_auth@basic-auth: - bat-adlp-6: [DMESG-WARN][11] ([i915#13890]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8289/bat-adlp-6/igt@core_auth@basic-auth.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12856/bat-adlp-6/igt@core_auth@basic-auth.html * igt@i915_selftest@live: - bat-adlp-6: [INCOMPLETE][13] ([i915#9413]) -> [PASS][14] +1 other test pass [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8289/bat-adlp-6/igt@i915_selftest@live.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12856/bat-adlp-6/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-arls-5: [DMESG-FAIL][15] ([i915#12061]) -> [PASS][16] +1 other test pass [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8289/bat-arls-5/igt@i915_selftest@live@workarounds.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12856/bat-arls-5/igt@i915_selftest@live@workarounds.html - bat-arlh-2: [DMESG-FAIL][17] ([i915#12061]) -> [PASS][18] +1 other test pass [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8289/bat-arlh-2/igt@i915_selftest@live@workarounds.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12856/bat-arlh-2/igt@i915_selftest@live@workarounds.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12435 [i915#13890]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13890 [i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8289 -> IGTPW_12856 * Linux: CI_DRM_16321 -> CI_DRM_16326 CI-20190529: 20190529 CI_DRM_16321: 14c330bc015ded4a1f1dd1f5aeb8617077aaa7e8 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_16326: 1e750490a76bbb8bcb8ea8d5fba2a68bf0845def @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12856: 12856 IGT_8289: 8289 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12856/index.html [-- Attachment #2: Type: text/html, Size: 6108 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 1/1] tests/intel/xe_eu_stall: Add invalid input tests for EU stall sampling 2025-03-27 9:35 [PATCH 1/1] tests/intel/xe_eu_stall: Add invalid input tests for EU stall sampling Harish Chegondi 2025-03-27 14:19 ` ✓ Xe.CI.BAT: success for series starting with [1/1] " Patchwork 2025-03-27 14:34 ` ✗ i915.CI.BAT: failure " Patchwork @ 2025-03-27 17:35 ` Dixit, Ashutosh 2025-03-27 17:42 ` Dixit, Ashutosh 2025-03-28 0:44 ` Harish Chegondi 2025-03-27 22:00 ` ✗ Xe.CI.Full: failure for series starting with [1/1] " Patchwork 2025-04-06 14:11 ` Patchwork 4 siblings, 2 replies; 8+ messages in thread From: Dixit, Ashutosh @ 2025-03-27 17:35 UTC (permalink / raw) To: Harish Chegondi; +Cc: igt-dev On Thu, 27 Mar 2025 02:35:10 -0700, Harish Chegondi wrote: > > Add tests to verify that invalid inputs fail the tests > > Signed-off-by: Harish Chegondi <harish.chegondi@intel.com> > --- > tests/intel/xe_eu_stall.c | 64 +++++++++++++++++++++++++++++++++++++++ > 1 file changed, 64 insertions(+) > > diff --git a/tests/intel/xe_eu_stall.c b/tests/intel/xe_eu_stall.c > index 964bb7c91..8f892a9ae 100644 > --- a/tests/intel/xe_eu_stall.c > +++ b/tests/intel/xe_eu_stall.c > @@ -19,6 +19,15 @@ > * > * SUBTEST: unprivileged-access > * Description: Verify unprivileged open of a EU stall data stream fd > + * > + * SUBTEST: invalid-gt-id > + * Description: Verify that invalid input GT ID fails the test > + * > + * SUBTEST: invalid-sampling-rate > + * Description: Verify that invalid input sampling rate fails the test > + * > + * SUBTEST: invalid-event-report-count > + * Description: Verify that invalid input event report count fails the test > */ > > #include <fcntl.h> > @@ -33,6 +42,9 @@ > > #define OBSERVATION_PARANOID "/proc/sys/dev/xe/observation_paranoid" > > +#define NUM_DATA_ROWS(SIZE) ((SIZE) >> 6) What is SIZE? > + > +#define MAX_SUBSLICES 64 What is a SUBSLICE? Is it a XeCore? > #define NUM_ITERS_GPGPU_FILL 100 > #define DEFAULT_NUM_REPORTS 1 > #define DEFAULT_SAMPLE_RATE (251 * 4) > @@ -283,6 +295,46 @@ static void set_fd_flags(int fd, int flags) > igt_assert_eq(0, fcntl(fd, F_SETFL, old | flags)); > } > > +/* > + * Verify that tests with invalid arguments fail. > + */ > +static void test_invalid_arguments(int drm_fd, uint8_t gt_id, uint32_t rate, uint32_t num_reports) > +{ > + uint64_t properties[] = { > + DRM_XE_EU_STALL_PROP_GT_ID, gt_id, > + DRM_XE_EU_STALL_PROP_SAMPLE_RATE, rate, > + DRM_XE_EU_STALL_PROP_WAIT_NUM_REPORTS, num_reports, > + }; > + > + struct xe_eu_stall_open_prop props = { > + .num_properties = ARRAY_SIZE(properties) / 2, > + .properties_ptr = to_user_pointer(properties), > + }; > + > + xe_eu_stall_ioctl_err(drm_fd, DRM_XE_OBSERVATION_OP_STREAM_OPEN, &props, EINVAL); > +} > + > +static void test_invalid_gt_id(int fd) > +{ > + test_invalid_arguments(fd, 255, > + DEFAULT_SAMPLE_RATE, > + DEFAULT_NUM_REPORTS); > +} > + > +static void test_invalid_sampling_rate(int fd) > +{ > + test_invalid_arguments(fd, p_gt_id, Instead of using p_gt_id, maybe just use 0 here. Sometime p_* are used, sometimes DEFAUL_* are used, it's annoying. For example, at the top of the file where the global's are defined, why is p_rate not assigned to DEFAULT_SAMPLE_RATE? > + (251 * 10), > + DEFAULT_NUM_REPORTS); > +} > + > +static void test_invalid_event_report_count(int fd) > +{ > + test_invalid_arguments(fd, p_gt_id, > + DEFAULT_SAMPLE_RATE, > + (NUM_DATA_ROWS(512 * 1024) * MAX_SUBSLICES) + 1); Also the indentation is off. Things should be aligned to the opening '('. > +} > + > static inline void enable_paranoid(void) > { > write_u64_file(OBSERVATION_PARANOID, 1); > @@ -615,6 +667,18 @@ igt_main_args("e:g:o:r:u:w:", long_options, help_str, opt_handler, NULL) > igt_subtest("unprivileged-access") > test_non_privileged_access(drm_fd); > > + igt_describe("Verify that invalid input GT ID fails the test"); > + igt_subtest("invalid-gt-id") > + test_invalid_gt_id(drm_fd); > + > + igt_describe("Verify that invalid input sampling rate fails the test"); > + igt_subtest("invalid-sampling-rate") > + test_invalid_sampling_rate(drm_fd); > + > + igt_describe("Verify that invalid input event report count fails the test"); > + igt_subtest("invalid-event-report-count") > + test_invalid_event_report_count(drm_fd); > + > igt_fixture { > if (output) > fclose(output); > -- > 2.48.1 > ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 1/1] tests/intel/xe_eu_stall: Add invalid input tests for EU stall sampling 2025-03-27 17:35 ` [PATCH 1/1] " Dixit, Ashutosh @ 2025-03-27 17:42 ` Dixit, Ashutosh 2025-03-28 0:44 ` Harish Chegondi 1 sibling, 0 replies; 8+ messages in thread From: Dixit, Ashutosh @ 2025-03-27 17:42 UTC (permalink / raw) To: Harish Chegondi; +Cc: igt-dev On Thu, 27 Mar 2025 10:35:52 -0700, Dixit, Ashutosh wrote: > > On Thu, 27 Mar 2025 02:35:10 -0700, Harish Chegondi wrote: > > > > Add tests to verify that invalid inputs fail the tests > > > > Signed-off-by: Harish Chegondi <harish.chegondi@intel.com> > > --- > > tests/intel/xe_eu_stall.c | 64 +++++++++++++++++++++++++++++++++++++++ > > 1 file changed, 64 insertions(+) > > > > diff --git a/tests/intel/xe_eu_stall.c b/tests/intel/xe_eu_stall.c > > index 964bb7c91..8f892a9ae 100644 > > --- a/tests/intel/xe_eu_stall.c > > +++ b/tests/intel/xe_eu_stall.c > > @@ -19,6 +19,15 @@ > > * > > * SUBTEST: unprivileged-access > > * Description: Verify unprivileged open of a EU stall data stream fd > > + * > > + * SUBTEST: invalid-gt-id > > + * Description: Verify that invalid input GT ID fails the test > > + * > > + * SUBTEST: invalid-sampling-rate > > + * Description: Verify that invalid input sampling rate fails the test > > + * > > + * SUBTEST: invalid-event-report-count > > + * Description: Verify that invalid input event report count fails the test > > */ > > > > #include <fcntl.h> > > @@ -33,6 +42,9 @@ > > > > #define OBSERVATION_PARANOID "/proc/sys/dev/xe/observation_paranoid" > > > > +#define NUM_DATA_ROWS(SIZE) ((SIZE) >> 6) > > What is SIZE? Sorry, don't use all caps for args. > > > + > > +#define MAX_SUBSLICES 64 > > What is a SUBSLICE? Is it a XeCore? > > > #define NUM_ITERS_GPGPU_FILL 100 > > #define DEFAULT_NUM_REPORTS 1 > > #define DEFAULT_SAMPLE_RATE (251 * 4) > > @@ -283,6 +295,46 @@ static void set_fd_flags(int fd, int flags) > > igt_assert_eq(0, fcntl(fd, F_SETFL, old | flags)); > > } > > > > +/* > > + * Verify that tests with invalid arguments fail. > > + */ > > +static void test_invalid_arguments(int drm_fd, uint8_t gt_id, uint32_t rate, uint32_t num_reports) > > +{ > > + uint64_t properties[] = { > > + DRM_XE_EU_STALL_PROP_GT_ID, gt_id, > > + DRM_XE_EU_STALL_PROP_SAMPLE_RATE, rate, > > + DRM_XE_EU_STALL_PROP_WAIT_NUM_REPORTS, num_reports, > > + }; > > + > > + struct xe_eu_stall_open_prop props = { > > + .num_properties = ARRAY_SIZE(properties) / 2, > > + .properties_ptr = to_user_pointer(properties), > > + }; > > + > > + xe_eu_stall_ioctl_err(drm_fd, DRM_XE_OBSERVATION_OP_STREAM_OPEN, &props, EINVAL); > > +} > > + > > +static void test_invalid_gt_id(int fd) > > +{ > > + test_invalid_arguments(fd, 255, > > + DEFAULT_SAMPLE_RATE, > > + DEFAULT_NUM_REPORTS); > > +} > > + > > +static void test_invalid_sampling_rate(int fd) > > +{ > > + test_invalid_arguments(fd, p_gt_id, > > Instead of using p_gt_id, maybe just use 0 here. Sometime p_* are used, > sometimes DEFAUL_* are used, it's annoying. > > For example, at the top of the file where the global's are defined, why is > p_rate not assigned to DEFAULT_SAMPLE_RATE? > > > + (251 * 10), Why brackets? > > + DEFAULT_NUM_REPORTS); > > +} > > + > > +static void test_invalid_event_report_count(int fd) > > +{ > > + test_invalid_arguments(fd, p_gt_id, > > + DEFAULT_SAMPLE_RATE, > > + (NUM_DATA_ROWS(512 * 1024) * MAX_SUBSLICES) + 1); > > Also the indentation is off. Things should be aligned to the opening '('. Also why brackets. > > > +} > > + > > static inline void enable_paranoid(void) > > { > > write_u64_file(OBSERVATION_PARANOID, 1); > > @@ -615,6 +667,18 @@ igt_main_args("e:g:o:r:u:w:", long_options, help_str, opt_handler, NULL) > > igt_subtest("unprivileged-access") > > test_non_privileged_access(drm_fd); > > > > + igt_describe("Verify that invalid input GT ID fails the test"); > > + igt_subtest("invalid-gt-id") > > + test_invalid_gt_id(drm_fd); > > + > > + igt_describe("Verify that invalid input sampling rate fails the test"); > > + igt_subtest("invalid-sampling-rate") > > + test_invalid_sampling_rate(drm_fd); > > + > > + igt_describe("Verify that invalid input event report count fails the test"); > > + igt_subtest("invalid-event-report-count") > > + test_invalid_event_report_count(drm_fd); > > + > > igt_fixture { > > if (output) > > fclose(output); > > -- > > 2.48.1 > > ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 1/1] tests/intel/xe_eu_stall: Add invalid input tests for EU stall sampling 2025-03-27 17:35 ` [PATCH 1/1] " Dixit, Ashutosh 2025-03-27 17:42 ` Dixit, Ashutosh @ 2025-03-28 0:44 ` Harish Chegondi 1 sibling, 0 replies; 8+ messages in thread From: Harish Chegondi @ 2025-03-28 0:44 UTC (permalink / raw) To: Dixit, Ashutosh; +Cc: igt-dev On Thu, Mar 27, 2025 at 10:35:52AM -0700, Dixit, Ashutosh wrote: > On Thu, 27 Mar 2025 02:35:10 -0700, Harish Chegondi wrote: > > > > Add tests to verify that invalid inputs fail the tests > > > > Signed-off-by: Harish Chegondi <harish.chegondi@intel.com> > > --- > > tests/intel/xe_eu_stall.c | 64 +++++++++++++++++++++++++++++++++++++++ > > 1 file changed, 64 insertions(+) > > > > diff --git a/tests/intel/xe_eu_stall.c b/tests/intel/xe_eu_stall.c > > index 964bb7c91..8f892a9ae 100644 > > --- a/tests/intel/xe_eu_stall.c > > +++ b/tests/intel/xe_eu_stall.c > > @@ -19,6 +19,15 @@ > > * > > * SUBTEST: unprivileged-access > > * Description: Verify unprivileged open of a EU stall data stream fd > > + * > > + * SUBTEST: invalid-gt-id > > + * Description: Verify that invalid input GT ID fails the test > > + * > > + * SUBTEST: invalid-sampling-rate > > + * Description: Verify that invalid input sampling rate fails the test > > + * > > + * SUBTEST: invalid-event-report-count > > + * Description: Verify that invalid input event report count fails the test > > */ > > > > #include <fcntl.h> > > @@ -33,6 +42,9 @@ > > > > #define OBSERVATION_PARANOID "/proc/sys/dev/xe/observation_paranoid" > > > > +#define NUM_DATA_ROWS(SIZE) ((SIZE) >> 6) > > What is SIZE? SIZE is buffer size. > > > + > > +#define MAX_SUBSLICES 64 > > What is a SUBSLICE? Is it a XeCore? Yes, I will change it to XECORE in the next version of the patch. > > > #define NUM_ITERS_GPGPU_FILL 100 > > #define DEFAULT_NUM_REPORTS 1 > > #define DEFAULT_SAMPLE_RATE (251 * 4) > > @@ -283,6 +295,46 @@ static void set_fd_flags(int fd, int flags) > > igt_assert_eq(0, fcntl(fd, F_SETFL, old | flags)); > > } > > > > +/* > > + * Verify that tests with invalid arguments fail. > > + */ > > +static void test_invalid_arguments(int drm_fd, uint8_t gt_id, uint32_t rate, uint32_t num_reports) > > +{ > > + uint64_t properties[] = { > > + DRM_XE_EU_STALL_PROP_GT_ID, gt_id, > > + DRM_XE_EU_STALL_PROP_SAMPLE_RATE, rate, > > + DRM_XE_EU_STALL_PROP_WAIT_NUM_REPORTS, num_reports, > > + }; > > + > > + struct xe_eu_stall_open_prop props = { > > + .num_properties = ARRAY_SIZE(properties) / 2, > > + .properties_ptr = to_user_pointer(properties), > > + }; > > + > > + xe_eu_stall_ioctl_err(drm_fd, DRM_XE_OBSERVATION_OP_STREAM_OPEN, &props, EINVAL); > > +} > > + > > +static void test_invalid_gt_id(int fd) > > +{ > > + test_invalid_arguments(fd, 255, > > + DEFAULT_SAMPLE_RATE, > > + DEFAULT_NUM_REPORTS); > > +} > > + > > +static void test_invalid_sampling_rate(int fd) > > +{ > > + test_invalid_arguments(fd, p_gt_id, > > Instead of using p_gt_id, maybe just use 0 here. Sometime p_* are used, > sometimes DEFAUL_* are used, it's annoying. Sure, I will change it to 0 in the next version. > > For example, at the top of the file where the global's are defined, why is > p_rate not assigned to DEFAULT_SAMPLE_RATE? I didn't assign DEFAULT_SAMPLE_RATE to p_rate in the definition as I wanted to know if the user passed any input sampling rate which will be set to p_rate. If p_rate is zero, it means the user didn't pass any input sampling rate. > > > + (251 * 10), > > + DEFAULT_NUM_REPORTS); > > +} > > + > > +static void test_invalid_event_report_count(int fd) > > +{ > > + test_invalid_arguments(fd, p_gt_id, > > + DEFAULT_SAMPLE_RATE, > > + (NUM_DATA_ROWS(512 * 1024) * MAX_SUBSLICES) + 1); > > Also the indentation is off. Things should be aligned to the opening '('. Will change it in the next version. I tried to align all the input properties. > > > +} > > + > > static inline void enable_paranoid(void) > > { > > write_u64_file(OBSERVATION_PARANOID, 1); > > @@ -615,6 +667,18 @@ igt_main_args("e:g:o:r:u:w:", long_options, help_str, opt_handler, NULL) > > igt_subtest("unprivileged-access") > > test_non_privileged_access(drm_fd); > > > > + igt_describe("Verify that invalid input GT ID fails the test"); > > + igt_subtest("invalid-gt-id") > > + test_invalid_gt_id(drm_fd); > > + > > + igt_describe("Verify that invalid input sampling rate fails the test"); > > + igt_subtest("invalid-sampling-rate") > > + test_invalid_sampling_rate(drm_fd); > > + > > + igt_describe("Verify that invalid input event report count fails the test"); > > + igt_subtest("invalid-event-report-count") > > + test_invalid_event_report_count(drm_fd); > > + > > igt_fixture { > > if (output) > > fclose(output); > > -- > > 2.48.1 > > Thank You Harish. ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Xe.CI.Full: failure for series starting with [1/1] tests/intel/xe_eu_stall: Add invalid input tests for EU stall sampling 2025-03-27 9:35 [PATCH 1/1] tests/intel/xe_eu_stall: Add invalid input tests for EU stall sampling Harish Chegondi ` (2 preceding siblings ...) 2025-03-27 17:35 ` [PATCH 1/1] " Dixit, Ashutosh @ 2025-03-27 22:00 ` Patchwork 2025-04-06 14:11 ` Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2025-03-27 22:00 UTC (permalink / raw) To: Harish Chegondi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 390 bytes --] == Series Details == Series: series starting with [1/1] tests/intel/xe_eu_stall: Add invalid input tests for EU stall sampling URL : https://patchwork.freedesktop.org/series/146856/ State : failure == Summary == ERROR: The runconfig 'XEIGTPW_12856_FULL' does not exist in the database == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/index.html [-- Attachment #2: Type: text/html, Size: 952 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Xe.CI.Full: failure for series starting with [1/1] tests/intel/xe_eu_stall: Add invalid input tests for EU stall sampling 2025-03-27 9:35 [PATCH 1/1] tests/intel/xe_eu_stall: Add invalid input tests for EU stall sampling Harish Chegondi ` (3 preceding siblings ...) 2025-03-27 22:00 ` ✗ Xe.CI.Full: failure for series starting with [1/1] " Patchwork @ 2025-04-06 14:11 ` Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2025-04-06 14:11 UTC (permalink / raw) To: Harish Chegondi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 82341 bytes --] == Series Details == Series: series starting with [1/1] tests/intel/xe_eu_stall: Add invalid input tests for EU stall sampling URL : https://patchwork.freedesktop.org/series/146856/ State : failure == Summary == CI Bug Log - changes from XEIGT_8289_FULL -> XEIGTPW_12856_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12856_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12856_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. Participating hosts (4 -> 3) ------------------------------ Missing (1): shard-adlp Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12856_FULL: ### IGT changes ### #### Possible regressions #### * igt@kms_flip@absolute-wf_vblank-interruptible@d-dp4: - shard-dg2-set2: [PASS][1] -> [DMESG-WARN][2] +7 other tests dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-dg2-463/igt@kms_flip@absolute-wf_vblank-interruptible@d-dp4.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-466/igt@kms_flip@absolute-wf_vblank-interruptible@d-dp4.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][3] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt@xe_exec_basic@many-execqueues-null: - shard-bmg: NOTRUN -> [INCOMPLETE][4] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-6/igt@xe_exec_basic@many-execqueues-null.html * igt@xe_exec_threads@threads-bal-mixed-fd-userptr-rebind: - shard-dg2-set2: [PASS][5] -> [INCOMPLETE][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-dg2-466/igt@xe_exec_threads@threads-bal-mixed-fd-userptr-rebind.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-432/igt@xe_exec_threads@threads-bal-mixed-fd-userptr-rebind.html #### Warnings #### * igt@kms_psr@fbc-psr2-cursor-render@edp-1: - shard-lnl: [FAIL][7] ([Intel XE#4568]) -> [INCOMPLETE][8] +1 other test incomplete [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-lnl-5/igt@kms_psr@fbc-psr2-cursor-render@edp-1.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-6/igt@kms_psr@fbc-psr2-cursor-render@edp-1.html Known issues ------------ Here are the changes found in XEIGTPW_12856_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-dp-4-4-rc-ccs-cc: - shard-dg2-set2: NOTRUN -> [SKIP][9] ([Intel XE#3767]) +7 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-436/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-dp-4-4-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear: - shard-lnl: [PASS][10] -> [FAIL][11] ([Intel XE#911]) +3 other tests fail [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html * igt@kms_async_flips@invalid-async-flip-atomic: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#3768]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-4/igt@kms_async_flips@invalid-async-flip-atomic.html * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#3279]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-6/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#1407]) +2 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-5/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#3658]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@linear-8bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2327]) +4 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-6/igt@kms_big_fb@linear-8bpp-rotate-90.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#316]) +3 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-435/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#610]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-8/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#1124]) +10 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#1124]) +11 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-433/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb: - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#619]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-463/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#1477]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-2/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#1124]) +7 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-dg2-set2: [PASS][24] -> [SKIP][25] ([Intel XE#2191]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-dg2-434/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-464/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html - shard-bmg: [PASS][26] -> [SKIP][27] ([Intel XE#2314] / [Intel XE#2894]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#2191]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-435/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#1512]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-5/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2314] / [Intel XE#2894]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-4/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html * igt@kms_bw@linear-tiling-1-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#367]) +2 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-6/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html * igt@kms_bw@linear-tiling-3-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#367]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-8/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html * igt@kms_bw@linear-tiling-4-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#367]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-433/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#2669]) +7 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-2/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1.html * igt@kms_ccs@crc-primary-basic-y-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2887]) +12 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-7/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2652] / [Intel XE#787]) +17 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#2887]) +6 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-5/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [PASS][38] -> [INCOMPLETE][39] ([Intel XE#3862]) +1 other test incomplete [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#3442]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#3432]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4: - shard-dg2-set2: [PASS][42] -> [INCOMPLETE][43] ([Intel XE#4212]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#455] / [Intel XE#787]) +44 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-433/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-c-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#787]) +190 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-432/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-c-dp-2.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2724]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-2/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2325]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-7/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#306]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-464/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_color@degamma: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#306]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-7/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_frames@hdmi-cmp-planes-random: - shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#373]) +6 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-432/igt@kms_chamelium_frames@hdmi-cmp-planes-random.html - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#373]) +5 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-1/igt@kms_chamelium_frames@hdmi-cmp-planes-random.html * igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2252]) +11 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-3/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html * igt@kms_content_protection@atomic-dpms: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2341]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-6/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@atomic@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][54] ([Intel XE#1178]) +2 other tests fail [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-8/igt@kms_content_protection@atomic@pipe-a-dp-2.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#307]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-432/igt@kms_content_protection@dp-mst-lic-type-0.html - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#307]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-3/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2390]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-3/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-0: - shard-dg2-set2: NOTRUN -> [FAIL][58] ([Intel XE#1178]) +1 other test fail [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-436/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][59] ([Intel XE#3304]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-436/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html * igt@kms_content_protection@uevent@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][60] ([Intel XE#1188]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-8/igt@kms_content_protection@uevent@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#308]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-433/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#1424]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-6/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2321]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-8/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2320]) +4 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-7/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2291]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-4/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2286]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#309]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-4/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [PASS][68] -> [SKIP][69] ([Intel XE#2291]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#309]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-464/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-dg2-set2: [PASS][71] -> [SKIP][72] ([Intel XE#309]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-dg2-435/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-464/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#4354]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-7/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dp_link_training@uhbr-sst: - shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#4356]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-432/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg2-set2: [PASS][75] -> [SKIP][76] ([Intel XE#4331]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-dg2-434/igt@kms_dp_linktrain_fallback@dp-fallback.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-464/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-bmg: [PASS][77] -> [SKIP][78] ([Intel XE#4294]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-bmg-2/igt@kms_dp_linktrain_fallback@dp-fallback.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-with-bpc: - shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#2244]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-1/igt@kms_dsc@dsc-with-bpc.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests: - shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#4422]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-464/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#4422]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-3/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html * igt@kms_fbcon_fbt@psr: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#776]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-8/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@psr1: - shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#1135]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-436/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4: - shard-dg2-set2: [PASS][84] -> [FAIL][85] ([Intel XE#301] / [Intel XE#3321]) +1 other test fail [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3: - shard-bmg: [PASS][86] -> [FAIL][87] ([Intel XE#3321]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-suspend: - shard-dg2-set2: [PASS][88] -> [DMESG-WARN][89] ([Intel XE#2955]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-dg2-463/igt@kms_flip@2x-flip-vs-suspend.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-466/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2-set2: [PASS][90] -> [SKIP][91] ([Intel XE#310]) +5 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-dg2-435/igt@kms_flip@2x-modeset-vs-vblank-race.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-464/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-nonexisting-fb: - shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2316]) +2 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-4/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#1421]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-3/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-bmg: [PASS][94] -> [SKIP][95] ([Intel XE#2316]) +8 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-bmg-8/igt@kms_flip@2x-wf_vblank-ts-check.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-4/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a6: - shard-dg2-set2: [PASS][96] -> [FAIL][97] ([Intel XE#301]) +7 other tests fail [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a6.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a6.html * igt@kms_flip@flip-vs-suspend: - shard-dg2-set2: [PASS][98] -> [INCOMPLETE][99] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-dg2-466/igt@kms_flip@flip-vs-suspend.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-436/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@plain-flip-ts-check-interruptible: - shard-lnl: [PASS][100] -> [FAIL][101] ([Intel XE#886]) +1 other test fail [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-lnl-6/igt@kms_flip@plain-flip-ts-check-interruptible.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-7/igt@kms_flip@plain-flip-ts-check-interruptible.html * igt@kms_flip@plain-flip-ts-check-interruptible@a-dp2: - shard-bmg: NOTRUN -> [FAIL][102] ([Intel XE#2882]) +2 other tests fail [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-7/igt@kms_flip@plain-flip-ts-check-interruptible@a-dp2.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#1401]) +4 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#1397]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: - shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2293] / [Intel XE#2380]) +3 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#1401] / [Intel XE#1745]) +4 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#455]) +15 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-464/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2293]) +3 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move: - shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2311]) +19 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-plflip-blt: - shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#656]) +22 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#4141]) +6 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: [PASS][113] -> [SKIP][114] ([Intel XE#656]) +7 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#2312]) +14 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#656]) +6 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcdrrs-modesetfrombusy: - shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#651]) +4 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-modesetfrombusy.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear: - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#651]) +17 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#653]) +23 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#2313]) +21 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_hdr@invalid-metadata-sizes: - shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#1503]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-3/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle-dpms: - shard-dg2-set2: [PASS][122] -> [FAIL][123] ([Intel XE#4426]) +1 other test fail [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-dg2-433/igt@kms_hdr@static-toggle-dpms.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-466/igt@kms_hdr@static-toggle-dpms.html * igt@kms_joiner@basic-force-big-joiner: - shard-dg2-set2: [PASS][124] -> [SKIP][125] ([Intel XE#4328]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-dg2-435/igt@kms_joiner@basic-force-big-joiner.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-464/igt@kms_joiner@basic-force-big-joiner.html - shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#3012]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-6/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-max-non-joiner: - shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#4298]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-6/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#346]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-432/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#2934]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-6/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_pipe_stress@stress-xrgb8888-ytiled: - shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#4329]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-2/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html * igt@kms_plane_lowres@tiling-yf: - shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#599]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-8/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@2x-tiling-4: - shard-bmg: [PASS][132] -> [SKIP][133] ([Intel XE#4596]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-bmg-1/igt@kms_plane_multiple@2x-tiling-4.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-4.html - shard-dg2-set2: [PASS][134] -> [SKIP][135] ([Intel XE#4596]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-dg2-463/igt@kms_plane_multiple@2x-tiling-4.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-464/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_plane_multiple@2x-tiling-y: - shard-bmg: NOTRUN -> [SKIP][136] ([Intel XE#2493]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: [PASS][137] -> [SKIP][138] ([Intel XE#2571]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-bmg-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-4/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a: - shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#2763]) +3 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-2/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c: - shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#2763]) +2 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-435/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-435/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d.html * igt@kms_pm_backlight@bad-brightness: - shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#870]) +2 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-4/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg2-set2: NOTRUN -> [SKIP][143] ([Intel XE#1122]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-435/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#3309]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-433/igt@kms_pm_dc@dc5-retention-flops.html - shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#3309]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-7/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-dpms: - shard-bmg: NOTRUN -> [FAIL][146] ([Intel XE#1430]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-1/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#1439] / [Intel XE#836]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-7/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#836]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-464/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg2-set2: [PASS][149] -> [SKIP][150] ([Intel XE#836]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-dg2-435/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-464/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#1489]) +7 other tests skip [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-433/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb: - shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#2893]) +2 other tests skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-2/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-bmg: NOTRUN -> [SKIP][153] ([Intel XE#1489]) +8 other tests skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-2/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr@fbc-psr2-cursor-plane-move@edp-1: - shard-lnl: NOTRUN -> [FAIL][154] ([Intel XE#4568]) +1 other test fail [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-5/igt@kms_psr@fbc-psr2-cursor-plane-move@edp-1.html * igt@kms_psr@fbc-psr2-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][155] ([Intel XE#2850] / [Intel XE#929]) +14 other tests skip [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-466/igt@kms_psr@fbc-psr2-suspend.html * igt@kms_psr@pr-basic: - shard-lnl: NOTRUN -> [SKIP][156] ([Intel XE#1406]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-8/igt@kms_psr@pr-basic.html * igt@kms_psr@psr-suspend: - shard-bmg: NOTRUN -> [SKIP][157] ([Intel XE#2234] / [Intel XE#2850]) +10 other tests skip [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-4/igt@kms_psr@psr-suspend.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2-set2: NOTRUN -> [SKIP][158] ([Intel XE#1127]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-433/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-bmg: NOTRUN -> [SKIP][159] ([Intel XE#2330]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-dg2-set2: NOTRUN -> [SKIP][160] ([Intel XE#3414]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-464/igt@kms_rotation_crc@sprite-rotation-270.html - shard-lnl: NOTRUN -> [SKIP][161] ([Intel XE#3414] / [Intel XE#3904]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-3/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-bmg: NOTRUN -> [SKIP][162] ([Intel XE#3414] / [Intel XE#3904]) +3 other tests skip [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-3/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-lnl: NOTRUN -> [SKIP][163] ([Intel XE#1435]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-3/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@kms_vrr@flip-suspend: - shard-bmg: NOTRUN -> [SKIP][164] ([Intel XE#1499]) +1 other test skip [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-6/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@lobf: - shard-dg2-set2: NOTRUN -> [SKIP][165] ([Intel XE#2168]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-436/igt@kms_vrr@lobf.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2-set2: NOTRUN -> [SKIP][166] ([Intel XE#756]) +1 other test skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-466/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@kms_writeback@writeback-pixel-formats: - shard-bmg: NOTRUN -> [SKIP][167] ([Intel XE#756]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-4/igt@kms_writeback@writeback-pixel-formats.html * igt@xe_create@multigpu-create-massive-size: - shard-lnl: NOTRUN -> [SKIP][168] ([Intel XE#944]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-5/igt@xe_create@multigpu-create-massive-size.html * igt@xe_eudebug@basic-close: - shard-dg2-set2: NOTRUN -> [SKIP][169] ([Intel XE#2905]) +12 other tests skip [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-433/igt@xe_eudebug@basic-close.html * igt@xe_eudebug@basic-connect: - shard-lnl: NOTRUN -> [SKIP][170] ([Intel XE#2905]) +4 other tests skip [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-4/igt@xe_eudebug@basic-connect.html * igt@xe_eudebug@basic-read-event: - shard-bmg: NOTRUN -> [SKIP][171] ([Intel XE#2905]) +11 other tests skip [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-7/igt@xe_eudebug@basic-read-event.html * igt@xe_eudebug@basic-vm-bind-ufence-sigint-client: - shard-bmg: NOTRUN -> [SKIP][172] ([Intel XE#2905] / [Intel XE#3889]) +1 other test skip [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-4/igt@xe_eudebug@basic-vm-bind-ufence-sigint-client.html * igt@xe_eudebug_sriov@deny-sriov: - shard-bmg: NOTRUN -> [SKIP][173] ([Intel XE#4518]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-1/igt@xe_eudebug_sriov@deny-sriov.html * igt@xe_evict@evict-small-multi-vm: - shard-lnl: NOTRUN -> [SKIP][174] ([Intel XE#688]) +2 other tests skip [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-7/igt@xe_evict@evict-small-multi-vm.html * igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap: - shard-dg2-set2: [PASS][175] -> [SKIP][176] ([Intel XE#1392]) +3 other tests skip [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-dg2-464/igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html * igt@xe_exec_basic@multigpu-no-exec-userptr: - shard-lnl: NOTRUN -> [SKIP][177] ([Intel XE#1392]) +3 other tests skip [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-3/igt@xe_exec_basic@multigpu-no-exec-userptr.html - shard-dg2-set2: NOTRUN -> [SKIP][178] ([Intel XE#1392]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-userptr.html * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][179] ([Intel XE#2322]) +8 other tests skip [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-1/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-imm: - shard-dg2-set2: NOTRUN -> [SKIP][180] ([Intel XE#288]) +27 other tests skip [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-466/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-imm.html * igt@xe_exec_mix_modes@exec-simple-batch-store-lr: - shard-dg2-set2: NOTRUN -> [SKIP][181] ([Intel XE#2360]) [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-433/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html * igt@xe_exec_threads@threads-hang-fd-userptr-invalidate: - shard-dg2-set2: [PASS][182] -> [DMESG-WARN][183] ([Intel XE#3876]) [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-dg2-433/igt@xe_exec_threads@threads-hang-fd-userptr-invalidate.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-436/igt@xe_exec_threads@threads-hang-fd-userptr-invalidate.html * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit: - shard-bmg: NOTRUN -> [SKIP][184] ([Intel XE#2229]) [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-3/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html * igt@xe_mmap@pci-membarrier: - shard-lnl: NOTRUN -> [SKIP][185] ([Intel XE#4045]) [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-3/igt@xe_mmap@pci-membarrier.html * igt@xe_mmap@small-bar: - shard-bmg: NOTRUN -> [SKIP][186] ([Intel XE#586]) [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-3/igt@xe_mmap@small-bar.html * igt@xe_mmap@vram: - shard-lnl: NOTRUN -> [SKIP][187] ([Intel XE#1416]) [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-6/igt@xe_mmap@vram.html * igt@xe_module_load@force-load: - shard-bmg: NOTRUN -> [SKIP][188] ([Intel XE#2457]) [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-2/igt@xe_module_load@force-load.html * igt@xe_oa@syncs-ufence-wait: - shard-dg2-set2: NOTRUN -> [SKIP][189] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-464/igt@xe_oa@syncs-ufence-wait.html * igt@xe_oa@whitelisted-registers-userspace-config: - shard-dg2-set2: NOTRUN -> [SKIP][190] ([Intel XE#2541] / [Intel XE#3573]) +5 other tests skip [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-435/igt@xe_oa@whitelisted-registers-userspace-config.html * igt@xe_pat@pat-index-xehpc: - shard-dg2-set2: NOTRUN -> [SKIP][191] ([Intel XE#2838] / [Intel XE#979]) [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-435/igt@xe_pat@pat-index-xehpc.html * igt@xe_pm@d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][192] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-435/igt@xe_pm@d3cold-basic-exec.html * igt@xe_pm@d3cold-mocs: - shard-bmg: NOTRUN -> [SKIP][193] ([Intel XE#2284]) [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-7/igt@xe_pm@d3cold-mocs.html * igt@xe_pm@d3cold-multiple-execs: - shard-lnl: NOTRUN -> [SKIP][194] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-8/igt@xe_pm@d3cold-multiple-execs.html * igt@xe_pm@vram-d3cold-threshold: - shard-dg2-set2: NOTRUN -> [SKIP][195] ([Intel XE#579]) [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-436/igt@xe_pm@vram-d3cold-threshold.html - shard-lnl: NOTRUN -> [SKIP][196] ([Intel XE#579]) [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-7/igt@xe_pm@vram-d3cold-threshold.html - shard-bmg: NOTRUN -> [SKIP][197] ([Intel XE#579]) [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-7/igt@xe_pm@vram-d3cold-threshold.html * igt@xe_query@multigpu-query-config: - shard-dg2-set2: NOTRUN -> [SKIP][198] ([Intel XE#944]) +2 other tests skip [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-433/igt@xe_query@multigpu-query-config.html * igt@xe_query@multigpu-query-engines: - shard-bmg: NOTRUN -> [SKIP][199] ([Intel XE#944]) +1 other test skip [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-4/igt@xe_query@multigpu-query-engines.html * igt@xe_sriov_auto_provisioning@exclusive-ranges: - shard-dg2-set2: NOTRUN -> [SKIP][200] ([Intel XE#4130]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-435/igt@xe_sriov_auto_provisioning@exclusive-ranges.html - shard-bmg: NOTRUN -> [SKIP][201] ([Intel XE#4130]) [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-3/igt@xe_sriov_auto_provisioning@exclusive-ranges.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: NOTRUN -> [SKIP][202] ([Intel XE#3342]) [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-466/igt@xe_sriov_flr@flr-vf1-clear.html * igt@xe_sriov_flr@flr-vfs-parallel: - shard-dg2-set2: NOTRUN -> [SKIP][203] ([Intel XE#4273]) [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-436/igt@xe_sriov_flr@flr-vfs-parallel.html #### Possible fixes #### * igt@kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-lnl: [FAIL][204] ([Intel XE#3719] / [Intel XE#911]) -> [PASS][205] +3 other tests pass [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-6/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-dg2-set2: [SKIP][206] ([Intel XE#2191]) -> [PASS][207] [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-dg2-464/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-433/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [INCOMPLETE][208] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][209] [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_color@deep-color@pipe-a-hdmi-a-6-ctm: - shard-dg2-set2: [INCOMPLETE][210] -> [PASS][211] +2 other tests pass [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-dg2-466/igt@kms_color@deep-color@pipe-a-hdmi-a-6-ctm.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-463/igt@kms_color@deep-color@pipe-a-hdmi-a-6-ctm.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-dg2-set2: [INCOMPLETE][212] ([Intel XE#3226]) -> [PASS][213] +1 other test pass [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-dg2-466/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-466/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-dg2-set2: [SKIP][214] ([Intel XE#309]) -> [PASS][215] [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-dg2-464/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-463/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions: - shard-bmg: [SKIP][216] ([Intel XE#2291]) -> [PASS][217] +3 other tests pass [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-7/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-bmg: [SKIP][218] ([Intel XE#1340]) -> [PASS][219] [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3: - shard-bmg: [FAIL][220] ([Intel XE#3321]) -> [PASS][221] +1 other test pass [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-modeset: - shard-dg2-set2: [SKIP][222] ([Intel XE#310]) -> [PASS][223] +4 other tests pass [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-dg2-464/igt@kms_flip@2x-flip-vs-modeset.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-433/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible: - shard-bmg: [SKIP][224] ([Intel XE#2316]) -> [PASS][225] +6 other tests pass [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-bmg-6/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-7/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-lnl: [FAIL][226] ([Intel XE#3149] / [Intel XE#886]) -> [PASS][227] [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-lnl-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-8/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: - shard-lnl: [FAIL][228] ([Intel XE#301]) -> [PASS][229] +1 other test pass [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a6: - shard-dg2-set2: [FAIL][230] ([Intel XE#301]) -> [PASS][231] [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a6.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a6.html * igt@kms_flip@flip-vs-expired-vblank@c-dp4: - shard-dg2-set2: [FAIL][232] ([Intel XE#301] / [Intel XE#3321]) -> [PASS][233] +1 other test pass [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1: - shard-lnl: [FAIL][234] ([Intel XE#886]) -> [PASS][235] +6 other tests pass [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-lnl-4/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-2/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt: - shard-dg2-set2: [SKIP][236] ([Intel XE#656]) -> [PASS][237] +4 other tests pass [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_hdr@static-swap@pipe-a-dp-4: - shard-dg2-set2: [FAIL][238] ([Intel XE#4426]) -> [PASS][239] +1 other test pass [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-dg2-435/igt@kms_hdr@static-swap@pipe-a-dp-4.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-433/igt@kms_hdr@static-swap@pipe-a-dp-4.html * igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64: - shard-dg2-set2: [FAIL][240] ([Intel XE#616]) -> [PASS][241] +1 other test pass [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-dg2-464/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-433/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-lnl: [FAIL][242] ([Intel XE#2883]) -> [PASS][243] +2 other tests pass [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-lnl-7/igt@kms_setmode@basic@pipe-b-edp-1.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-2/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-bmg: [SKIP][244] ([Intel XE#1435]) -> [PASS][245] [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-2/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-dg2-set2: [SKIP][246] ([Intel XE#455]) -> [PASS][247] +1 other test pass [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-dg2-464/igt@kms_setmode@invalid-clone-single-crtc-stealing.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-466/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1: - shard-lnl: [FAIL][248] ([Intel XE#771]) -> [PASS][249] [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-lnl-8/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-1/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html * igt@kms_vrr@negative-basic: - shard-bmg: [SKIP][250] ([Intel XE#1499]) -> [PASS][251] [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-bmg-6/igt@kms_vrr@negative-basic.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-4/igt@kms_vrr@negative-basic.html * igt@testdisplay: - shard-dg2-set2: [ABORT][252] ([Intel XE#2705] / [Intel XE#4540]) -> [PASS][253] [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-dg2-432/igt@testdisplay.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-432/igt@testdisplay.html * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr: - shard-dg2-set2: [SKIP][254] ([Intel XE#1392]) -> [PASS][255] +1 other test pass [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-435/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr.html * igt@xe_fault_injection@oa-add-config-fail-xe_oa_alloc_regs: - shard-dg2-set2: [FAIL][256] -> [PASS][257] [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-dg2-434/igt@xe_fault_injection@oa-add-config-fail-xe_oa_alloc_regs.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-466/igt@xe_fault_injection@oa-add-config-fail-xe_oa_alloc_regs.html - shard-lnl: [FAIL][258] ([Intel XE#3903]) -> [PASS][259] [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-lnl-6/igt@xe_fault_injection@oa-add-config-fail-xe_oa_alloc_regs.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-5/igt@xe_fault_injection@oa-add-config-fail-xe_oa_alloc_regs.html - shard-bmg: [FAIL][260] ([Intel XE#3903]) -> [PASS][261] [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-bmg-6/igt@xe_fault_injection@oa-add-config-fail-xe_oa_alloc_regs.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-2/igt@xe_fault_injection@oa-add-config-fail-xe_oa_alloc_regs.html * igt@xe_oa@buffer-size: - shard-lnl: [FAIL][262] ([Intel XE#4541]) -> [PASS][263] [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-lnl-6/igt@xe_oa@buffer-size.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-lnl-2/igt@xe_oa@buffer-size.html * igt@xe_wedged@wedged-mode-toggle: - shard-dg2-set2: [ABORT][264] ([Intel XE#3075] / [Intel XE#3084] / [Intel XE#4582]) -> [PASS][265] [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-dg2-435/igt@xe_wedged@wedged-mode-toggle.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-463/igt@xe_wedged@wedged-mode-toggle.html #### Warnings #### * igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][266] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][267] ([Intel XE#787]) +7 other tests skip [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-dg2-464/igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-d-hdmi-a-6.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-436/igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-d-hdmi-a-6.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][268] ([Intel XE#787]) -> [SKIP][269] ([Intel XE#455] / [Intel XE#787]) +9 other tests skip [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-dg2-433/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-464/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [INCOMPLETE][270] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) -> [INCOMPLETE][271] ([Intel XE#2705] / [Intel XE#4212]) [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt@kms_content_protection@atomic: - shard-bmg: [SKIP][272] ([Intel XE#2341]) -> [FAIL][273] ([Intel XE#1178]) [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-bmg-6/igt@kms_content_protection@atomic.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-8/igt@kms_content_protection@atomic.html * igt@kms_content_protection@atomic-dpms: - shard-dg2-set2: [FAIL][274] ([Intel XE#1178]) -> [SKIP][275] ([Intel XE#455]) [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-dg2-463/igt@kms_content_protection@atomic-dpms.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-464/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@uevent: - shard-bmg: [SKIP][276] ([Intel XE#2341]) -> [FAIL][277] ([Intel XE#1188]) [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-bmg-6/igt@kms_content_protection@uevent.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-8/igt@kms_content_protection@uevent.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-render: - shard-dg2-set2: [SKIP][278] ([Intel XE#651]) -> [SKIP][279] ([Intel XE#656]) +6 other tests skip [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-render.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][280] ([Intel XE#2311]) -> [SKIP][281] ([Intel XE#2312]) +14 other tests skip [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: [SKIP][282] ([Intel XE#656]) -> [SKIP][283] ([Intel XE#651]) +12 other tests skip [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][284] ([Intel XE#2312]) -> [SKIP][285] ([Intel XE#4141]) +5 other tests skip [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][286] ([Intel XE#4141]) -> [SKIP][287] ([Intel XE#2312]) +6 other tests skip [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render: - shard-bmg: [SKIP][288] ([Intel XE#2312]) -> [SKIP][289] ([Intel XE#2311]) +18 other tests skip [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][290] ([Intel XE#656]) -> [SKIP][291] ([Intel XE#653]) +10 other tests skip [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][292] ([Intel XE#2312]) -> [SKIP][293] ([Intel XE#2313]) +16 other tests skip [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt: - shard-dg2-set2: [SKIP][294] ([Intel XE#653]) -> [SKIP][295] ([Intel XE#656]) +6 other tests skip [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][296] ([Intel XE#2313]) -> [SKIP][297] ([Intel XE#2312]) +12 other tests skip [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-bmg: [SKIP][298] ([Intel XE#4596]) -> [SKIP][299] ([Intel XE#2493]) [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-yf.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-8/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [SKIP][300] ([Intel XE#362]) -> [FAIL][301] ([Intel XE#1729]) [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-dg2-464/igt@kms_tiled_display@basic-test-pattern.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-dg2-436/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][302] ([Intel XE#2426]) -> [SKIP][303] ([Intel XE#2509]) [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8289/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493 [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934 [Intel XE#2955]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2955 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#3075]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3075 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#3084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3084 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226 [Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#3719]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3719 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767 [Intel XE#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3903]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3903 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045 [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212 [Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273 [Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294 [Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298 [Intel XE#4328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4328 [Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329 [Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [Intel XE#4356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4356 [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422 [Intel XE#4426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4426 [Intel XE#4497]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4497 [Intel XE#4501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4501 [Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518 [Intel XE#4540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4540 [Intel XE#4541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4541 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#4568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4568 [Intel XE#4582]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4582 [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/771 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 Build changes ------------- * IGT: IGT_8289 -> IGTPW_12856 * Linux: xe-2854-14c330bc015ded4a1f1dd1f5aeb8617077aaa7e8 -> xe-2859-1e750490a76bbb8bcb8ea8d5fba2a68bf0845def IGTPW_12856: 12856 IGT_8289: 8289 xe-2854-14c330bc015ded4a1f1dd1f5aeb8617077aaa7e8: 14c330bc015ded4a1f1dd1f5aeb8617077aaa7e8 xe-2859-1e750490a76bbb8bcb8ea8d5fba2a68bf0845def: 1e750490a76bbb8bcb8ea8d5fba2a68bf0845def == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12856/index.html [-- Attachment #2: Type: text/html, Size: 95411 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2025-04-06 14:11 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-03-27 9:35 [PATCH 1/1] tests/intel/xe_eu_stall: Add invalid input tests for EU stall sampling Harish Chegondi 2025-03-27 14:19 ` ✓ Xe.CI.BAT: success for series starting with [1/1] " Patchwork 2025-03-27 14:34 ` ✗ i915.CI.BAT: failure " Patchwork 2025-03-27 17:35 ` [PATCH 1/1] " Dixit, Ashutosh 2025-03-27 17:42 ` Dixit, Ashutosh 2025-03-28 0:44 ` Harish Chegondi 2025-03-27 22:00 ` ✗ Xe.CI.Full: failure for series starting with [1/1] " Patchwork 2025-04-06 14:11 ` Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox