* [igt-dev] [PATCH] tests/amdgpu: add stable pstate tet
@ 2023-09-22 1:36 Jesse Zhang
2023-09-22 1:56 ` [igt-dev] ✗ GitLab.Pipeline: warning for " Patchwork
` (5 more replies)
0 siblings, 6 replies; 7+ messages in thread
From: Jesse Zhang @ 2023-09-22 1:36 UTC (permalink / raw)
To: igt-dev; +Cc: Tim Huang, Luben Tuikov, Alex Deucher, Christian Koenig
Signed-off-by: Jesse Zhang <Jesse.Zhang@amd.com>
Signed-off-by: Tim Huang <tim.huang@amd.com>
---
include/drm-uapi/amdgpu_drm.h | 10 +++++++++
tests/amdgpu/amd_basic.c | 38 +++++++++++++++++++++++++++++++++++
2 files changed, 48 insertions(+)
diff --git a/include/drm-uapi/amdgpu_drm.h b/include/drm-uapi/amdgpu_drm.h
index 0cbd1540a..f921cd021 100644
--- a/include/drm-uapi/amdgpu_drm.h
+++ b/include/drm-uapi/amdgpu_drm.h
@@ -206,6 +206,8 @@ union drm_amdgpu_bo_list {
#define AMDGPU_CTX_OP_FREE_CTX 2
#define AMDGPU_CTX_OP_QUERY_STATE 3
#define AMDGPU_CTX_OP_QUERY_STATE2 4
+#define AMDGPU_CTX_OP_GET_STABLE_PSTATE 5
+#define AMDGPU_CTX_OP_SET_STABLE_PSTATE 6
/* GPU reset status */
#define AMDGPU_CTX_NO_RESET 0
@@ -238,6 +240,14 @@ union drm_amdgpu_bo_list {
#define AMDGPU_CTX_PRIORITY_HIGH 512
#define AMDGPU_CTX_PRIORITY_VERY_HIGH 1023
+/* select a stable profiling pstate for perfmon tools */
+#define AMDGPU_CTX_STABLE_PSTATE_FLAGS_MASK 0xf
+#define AMDGPU_CTX_STABLE_PSTATE_NONE 0
+#define AMDGPU_CTX_STABLE_PSTATE_STANDARD 1
+#define AMDGPU_CTX_STABLE_PSTATE_MIN_SCLK 2
+#define AMDGPU_CTX_STABLE_PSTATE_MIN_MCLK 3
+#define AMDGPU_CTX_STABLE_PSTATE_PEAK 4
+
struct drm_amdgpu_ctx_in {
/** AMDGPU_CTX_OP_* */
__u32 op;
diff --git a/tests/amdgpu/amd_basic.c b/tests/amdgpu/amd_basic.c
index 24c70a9f7..b276c2107 100644
--- a/tests/amdgpu/amd_basic.c
+++ b/tests/amdgpu/amd_basic.c
@@ -612,6 +612,36 @@ amdgpu_sync_dependency_test(amdgpu_device_handle device_handle)
free_cmd_base(base);
}
+static void
+amdgpu_stable_pstate_test(amdgpu_device_handle device_handle)
+{
+ int r;
+ amdgpu_context_handle context_handle;
+ uint32_t current_pstate = 0, new_pstate = 0;
+
+ r = amdgpu_cs_ctx_create(device_handle, &context_handle);
+ igt_assert_eq(r, 0);
+
+ r = amdgpu_cs_ctx_stable_pstate(context_handle,
+ AMDGPU_CTX_OP_GET_STABLE_PSTATE,
+ 0, ¤t_pstate);
+ igt_assert_eq(r, 0);
+ igt_assert_eq(new_pstate, AMDGPU_CTX_STABLE_PSTATE_NONE);
+ r = amdgpu_cs_ctx_stable_pstate(context_handle,
+ AMDGPU_CTX_OP_SET_STABLE_PSTATE,
+ AMDGPU_CTX_STABLE_PSTATE_PEAK, NULL);
+ igt_assert_eq(r, 0);
+
+ r = amdgpu_cs_ctx_stable_pstate(context_handle,
+ AMDGPU_CTX_OP_GET_STABLE_PSTATE,
+ 0, &new_pstate);
+ igt_assert_eq(r, 0);
+ igt_assert_eq(new_pstate, AMDGPU_CTX_STABLE_PSTATE_PEAK);
+
+ r = amdgpu_cs_ctx_free(context_handle);
+ igt_assert_eq(r, 0);
+
+}
static void
amdgpu_gfx_dispatch_test_gfx(amdgpu_device_handle device_handle)
{
@@ -739,6 +769,14 @@ igt_main
}
}
+ igt_describe("Check-pstate-for-gfx-power-and-clock");
+ igt_subtest_with_dynamic("stable-pstate-test-with-IP-SMU") {
+ if (arr_cap[AMD_IP_GFX]) {
+ igt_dynamic_f("stable-pstate-test")
+ amdgpu_stable_pstate_test(device);
+ }
+ }
+
igt_fixture {
amdgpu_device_deinitialize(device);
drm_close_driver(fd);
--
2.25.1
^ permalink raw reply related [flat|nested] 7+ messages in thread* [igt-dev] ✗ GitLab.Pipeline: warning for tests/amdgpu: add stable pstate tet 2023-09-22 1:36 [igt-dev] [PATCH] tests/amdgpu: add stable pstate tet Jesse Zhang @ 2023-09-22 1:56 ` Patchwork 2023-09-22 2:26 ` [igt-dev] ✓ CI.xeBAT: success " Patchwork ` (4 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-09-22 1:56 UTC (permalink / raw) To: Jesse Zhang; +Cc: igt-dev == Series Details == Series: tests/amdgpu: add stable pstate tet URL : https://patchwork.freedesktop.org/series/124087/ State : warning == Summary == Pipeline status: FAILED. see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/991632 for the overview. build:tests-debian-meson has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/49309999): [1/940] Generating version.h with a custom command. [2/364] Generating kms_chamelium_color.testlist with a meson_exe.py custom command. [3/364] Generating kms_chamelium_frames.testlist with a meson_exe.py custom command. [4/364] Compiling C object 'tests/amdgpu/b9f2b1d@@amd_basic@exe/amd_basic.c.o'. FAILED: tests/amdgpu/b9f2b1d@@amd_basic@exe/amd_basic.c.o cc -Itests/amdgpu/b9f2b1d@@amd_basic@exe -Itests/amdgpu -I../tests/amdgpu -I../include -I../include/drm-uapi -I../include/linux-uapi -Ilib -I../lib -I../lib/stubs/syscalls -I. -I../ -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/uuid -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libdrm -I/usr/include/libdrm/nouveau -I/usr/include/x86_64-linux-gnu -I/usr/include/valgrind -I/usr/include/alsa -I/usr/include -fdiagnostics-color=always -pipe -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -Wextra -std=gnu11 -O2 -g -D_GNU_SOURCE -include config.h -D_FORTIFY_SOURCE=2 -Wbad-function-cast -Wdeclaration-after-statement -Wformat=2 -Wimplicit-fallthrough=0 -Wlogical-op -Wmissing-declarations -Wmissing-format-attribute -Wmissing-noreturn -Wmissing-prototypes -Wnested-externs -Wold-style-definition -Wpointer-arith -Wredundant-decls -Wshadow -Wstrict-prototypes -Wuninitialized -Wunused -Wno-clobbered -Wno-maybe-uninitialized -Wno-missing-field-initializers -Wno-pointer-arith -Wno-sign-compare -Wno-type-limits -Wno-unused-parameter -Wno-unused-result -Werror=address -Werror=array-bounds -Werror=implicit -Werror=init-self -Werror=int-to-pointer-cast -Werror=main -Werror=missing-braces -Werror=nonnull -Werror=pointer-to-int-cast -Werror=return-type -Werror=sequence-point -Werror=trigraphs -Werror=write-strings -fno-builtin-malloc -fno-builtin-calloc -pthread -MD -MQ 'tests/amdgpu/b9f2b1d@@amd_basic@exe/amd_basic.c.o' -MF 'tests/amdgpu/b9f2b1d@@amd_basic@exe/amd_basic.c.o.d' -o 'tests/amdgpu/b9f2b1d@@amd_basic@exe/amd_basic.c.o' -c ../tests/amdgpu/amd_basic.c ../tests/amdgpu/amd_basic.c: In function ‘amdgpu_stable_pstate_test’: ../tests/amdgpu/amd_basic.c:625:6: error: implicit declaration of function ‘amdgpu_cs_ctx_stable_pstate’; did you mean ‘amdgpu_cs_ctx_create’? [-Werror=implicit-function-declaration] r = amdgpu_cs_ctx_stable_pstate(context_handle, ^~~~~~~~~~~~~~~~~~~~~~~~~~~ amdgpu_cs_ctx_create ../tests/amdgpu/amd_basic.c:625:6: warning: nested extern declaration of ‘amdgpu_cs_ctx_stable_pstate’ [-Wnested-externs] cc1: some warnings being treated as errors ninja: build stopped: subcommand failed. section_end:1695347536:step_script section_start:1695347536:cleanup_file_variables Cleaning up project directory and file based variables section_end:1695347537:cleanup_file_variables ERROR: Job failed: exit code 1 build:tests-debian-meson-arm64 has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/49310002): [5/315] Linking target tests/gem_barrier_race. [6/315] Linking target tests/perf. [7/315] Linking target tests/kms_frontbuffer_tracking. [8/315] Compiling C object 'tests/amdgpu/b9f2b1d@@amd_basic@exe/amd_basic.c.o'. FAILED: tests/amdgpu/b9f2b1d@@amd_basic@exe/amd_basic.c.o /usr/bin/aarch64-linux-gnu-gcc -Itests/amdgpu/b9f2b1d@@amd_basic@exe -Itests/amdgpu -I../tests/amdgpu -I../include -I../include/drm-uapi -I../include/linux-uapi -Ilib -I../lib -I../lib/stubs/syscalls -I. -I../ -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/aarch64-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/uuid -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libdrm -I/usr/include/libdrm/nouveau -I/usr/include/aarch64-linux-gnu -I/usr/include/valgrind -I/usr/include/alsa -fdiagnostics-color=always -pipe -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -Wextra -std=gnu11 -O2 -g -D_GNU_SOURCE -include config.h -D_FORTIFY_SOURCE=2 -Wbad-function-cast -Wdeclaration-after-statement -Wformat=2 -Wimplicit-fallthrough=0 -Wlogical-op -Wmissing-declarations -Wmissing-format-attribute -Wmissing-noreturn -Wmissing-prototypes -Wnested-externs -Wold-style-definition -Wpointer-arith -Wredundant-decls -Wshadow -Wstrict-prototypes -Wuninitialized -Wunused -Wno-clobbered -Wno-maybe-uninitialized -Wno-missing-field-initializers -Wno-pointer-arith -Wno-sign-compare -Wno-type-limits -Wno-unused-parameter -Wno-unused-result -Werror=address -Werror=array-bounds -Werror=implicit -Werror=init-self -Werror=int-to-pointer-cast -Werror=main -Werror=missing-braces -Werror=nonnull -Werror=pointer-to-int-cast -Werror=return-type -Werror=sequence-point -Werror=trigraphs -Werror=write-strings -fno-builtin-malloc -fno-builtin-calloc -pthread -MD -MQ 'tests/amdgpu/b9f2b1d@@amd_basic@exe/amd_basic.c.o' -MF 'tests/amdgpu/b9f2b1d@@amd_basic@exe/amd_basic.c.o.d' -o 'tests/amdgpu/b9f2b1d@@amd_basic@exe/amd_basic.c.o' -c ../tests/amdgpu/amd_basic.c ../tests/amdgpu/amd_basic.c: In function ‘amdgpu_stable_pstate_test’: ../tests/amdgpu/amd_basic.c:625:6: error: implicit declaration of function ‘amdgpu_cs_ctx_stable_pstate’; did you mean ‘amdgpu_cs_ctx_create’? [-Werror=implicit-function-declaration] r = amdgpu_cs_ctx_stable_pstate(context_handle, ^~~~~~~~~~~~~~~~~~~~~~~~~~~ amdgpu_cs_ctx_create ../tests/amdgpu/amd_basic.c:625:6: warning: nested extern declaration of ‘amdgpu_cs_ctx_stable_pstate’ [-Wnested-externs] cc1: some warnings being treated as errors ninja: build stopped: subcommand failed. section_end:1695347534:step_script section_start:1695347534:cleanup_file_variables Cleaning up project directory and file based variables section_end:1695347534:cleanup_file_variables ERROR: Job failed: exit code 1 build:tests-debian-meson-armhf has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/49310001): ninja: Entering directory `build' [1/618] Generating version.h with a custom command. [2/310] Linking target tests/kms_frontbuffer_tracking. [3/310] Compiling C object 'tests/amdgpu/b9f2b1d@@amd_basic@exe/amd_basic.c.o'. FAILED: tests/amdgpu/b9f2b1d@@amd_basic@exe/amd_basic.c.o /usr/bin/arm-linux-gnueabihf-gcc -Itests/amdgpu/b9f2b1d@@amd_basic@exe -Itests/amdgpu -I../tests/amdgpu -I../include -I../include/drm-uapi -I../include/linux-uapi -Ilib -I../lib -I../lib/stubs/syscalls -I. -I../ -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/arm-linux-gnueabihf/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/uuid -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libdrm -I/usr/include/libdrm/nouveau -I/usr/include/arm-linux-gnueabihf -I/usr/include/valgrind -I/usr/include/alsa -fdiagnostics-color=always -pipe -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -Wextra -std=gnu11 -O2 -g -D_GNU_SOURCE -include config.h -D_FORTIFY_SOURCE=2 -Wbad-function-cast -Wdeclaration-after-statement -Wformat=2 -Wimplicit-fallthrough=0 -Wlogical-op -Wmissing-declarations -Wmissing-format-attribute -Wmissing-noreturn -Wmissing-prototypes -Wnested-externs -Wold-style-definition -Wpointer-arith -Wredundant-decls -Wshadow -Wstrict-prototypes -Wuninitialized -Wunused -Wno-clobbered -Wno-maybe-uninitialized -Wno-missing-field-initializers -Wno-pointer-arith -Wno-sign-compare -Wno-type-limits -Wno-unused-parameter -Wno-unused-result -Werror=address -Werror=array-bounds -Werror=implicit -Werror=init-self -Werror=int-to-pointer-cast -Werror=main -Werror=missing-braces -Werror=nonnull -Werror=pointer-to-int-cast -Werror=return-type -Werror=sequence-point -Werror=trigraphs -Werror=write-strings -fno-builtin-malloc -fno-builtin-calloc -pthread -MD -MQ 'tests/amdgpu/b9f2b1d@@amd_basic@exe/amd_basic.c.o' -MF 'tests/amdgpu/b9f2b1d@@amd_basic@exe/amd_basic.c.o.d' -o 'tests/amdgpu/b9f2b1d@@amd_basic@exe/amd_basic.c.o' -c ../tests/amdgpu/amd_basic.c ../tests/amdgpu/amd_basic.c: In function ‘amdgpu_stable_pstate_test’: ../tests/amdgpu/amd_basic.c:625:6: error: implicit declaration of function ‘amdgpu_cs_ctx_stable_pstate’; did you mean ‘amdgpu_cs_ctx_create’? [-Werror=implicit-function-declaration] r = amdgpu_cs_ctx_stable_pstate(context_handle, ^~~~~~~~~~~~~~~~~~~~~~~~~~~ amdgpu_cs_ctx_create ../tests/amdgpu/amd_basic.c:625:6: warning: nested extern declaration of ‘amdgpu_cs_ctx_stable_pstate’ [-Wnested-externs] cc1: some warnings being treated as errors ninja: build stopped: subcommand failed. section_end:1695347542:step_script section_start:1695347542:cleanup_file_variables Cleaning up project directory and file based variables section_end:1695347542:cleanup_file_variables ERROR: Job failed: exit code 1 build:tests-debian-meson-mips has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/49310003): [4/309] Linking target tests/core_hotunplug. [5/309] Linking target tests/gem_barrier_race. [6/309] Linking target tests/perf. [7/309] Compiling C object 'tests/amdgpu/b9f2b1d@@amd_basic@exe/amd_basic.c.o'. FAILED: tests/amdgpu/b9f2b1d@@amd_basic@exe/amd_basic.c.o /usr/bin/mips-linux-gnu-gcc -Itests/amdgpu/b9f2b1d@@amd_basic@exe -Itests/amdgpu -I../tests/amdgpu -I../include -I../include/drm-uapi -I../include/linux-uapi -Ilib -I../lib -I../lib/stubs/syscalls -I. -I../ -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/mips-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/uuid -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libdrm -I/usr/include/libdrm/nouveau -I/usr/include/mips-linux-gnu -I/usr/include/valgrind -I/usr/include/alsa -fdiagnostics-color=always -pipe -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -Wextra -std=gnu11 -O2 -g -D_GNU_SOURCE -include config.h -D_FORTIFY_SOURCE=2 -Wbad-function-cast -Wdeclaration-after-statement -Wformat=2 -Wimplicit-fallthrough=0 -Wlogical-op -Wmissing-declarations -Wmissing-format-attribute -Wmissing-noreturn -Wmissing-prototypes -Wnested-externs -Wold-style-definition -Wpointer-arith -Wredundant-decls -Wshadow -Wstrict-prototypes -Wuninitialized -Wunused -Wno-clobbered -Wno-maybe-uninitialized -Wno-missing-field-initializers -Wno-pointer-arith -Wno-sign-compare -Wno-type-limits -Wno-unused-parameter -Wno-unused-result -Werror=address -Werror=array-bounds -Werror=implicit -Werror=init-self -Werror=int-to-pointer-cast -Werror=main -Werror=missing-braces -Werror=nonnull -Werror=pointer-to-int-cast -Werror=return-type -Werror=sequence-point -Werror=trigraphs -Werror=write-strings -fno-builtin-malloc -fno-builtin-calloc -pthread -MD -MQ 'tests/amdgpu/b9f2b1d@@amd_basic@exe/amd_basic.c.o' -MF 'tests/amdgpu/b9f2b1d@@amd_basic@exe/amd_basic.c.o.d' -o 'tests/amdgpu/b9f2b1d@@amd_basic@exe/amd_basic.c.o' -c ../tests/amdgpu/amd_basic.c ../tests/amdgpu/amd_basic.c: In function ‘amdgpu_stable_pstate_test’: ../tests/amdgpu/amd_basic.c:625:6: error: implicit declaration of function ‘amdgpu_cs_ctx_stable_pstate’; did you mean ‘amdgpu_cs_ctx_create’? [-Werror=implicit-function-declaration] r = amdgpu_cs_ctx_stable_pstate(context_handle, ^~~~~~~~~~~~~~~~~~~~~~~~~~~ amdgpu_cs_ctx_create ../tests/amdgpu/amd_basic.c:625:6: warning: nested extern declaration of ‘amdgpu_cs_ctx_stable_pstate’ [-Wnested-externs] cc1: some warnings being treated as errors ninja: build stopped: subcommand failed. section_end:1695347548:step_script section_start:1695347548:cleanup_file_variables Cleaning up project directory and file based variables section_end:1695347549:cleanup_file_variables ERROR: Job failed: exit code 1 build:tests-fedora has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/49309994): [2/368] Linking target tests/kms_chamelium_frames. [3/368] Generating kms_chamelium_frames.testlist with a meson_exe.py custom command. [4/368] Generating kms_chamelium_hpd.testlist with a meson_exe.py custom command. [5/368] Compiling C object 'tests/amdgpu/b9f2b1d@@amd_basic@exe/amd_basic.c.o'. FAILED: tests/amdgpu/b9f2b1d@@amd_basic@exe/amd_basic.c.o cc -Itests/amdgpu/b9f2b1d@@amd_basic@exe -Itests/amdgpu -I../tests/amdgpu -I../include -I../include/drm-uapi -I../include/linux-uapi -Ilib -I../lib -I../lib/stubs/syscalls -I. -I../ -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libdrm -I/usr/include/libdrm/nouveau -I/usr/include/valgrind -fdiagnostics-color=always -pipe -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -Wextra -std=gnu11 -O2 -g -D_GNU_SOURCE -include config.h -D_FORTIFY_SOURCE=2 -Wbad-function-cast -Wdeclaration-after-statement -Wformat=2 -Wimplicit-fallthrough=0 -Wlogical-op -Wmissing-declarations -Wmissing-format-attribute -Wmissing-noreturn -Wmissing-prototypes -Wnested-externs -Wold-style-definition -Wpointer-arith -Wredundant-decls -Wshadow -Wstrict-prototypes -Wuninitialized -Wunused -Wno-clobbered -Wno-maybe-uninitialized -Wno-missing-field-initializers -Wno-pointer-arith -Wno-address-of-packed-member -Wno-sign-compare -Wno-type-limits -Wno-unused-parameter -Wno-unused-result -Werror=address -Werror=array-bounds -Werror=implicit -Werror=init-self -Werror=int-to-pointer-cast -Werror=main -Werror=missing-braces -Werror=nonnull -Werror=pointer-to-int-cast -Werror=return-type -Werror=sequence-point -Werror=trigraphs -Werror=write-strings -fno-builtin-malloc -fno-builtin-calloc -pthread -MD -MQ 'tests/amdgpu/b9f2b1d@@amd_basic@exe/amd_basic.c.o' -MF 'tests/amdgpu/b9f2b1d@@amd_basic@exe/amd_basic.c.o.d' -o 'tests/amdgpu/b9f2b1d@@amd_basic@exe/amd_basic.c.o' -c ../tests/amdgpu/amd_basic.c ../tests/amdgpu/amd_basic.c: In function ‘amdgpu_stable_pstate_test’: ../tests/amdgpu/amd_basic.c:625:6: error: implicit declaration of function ‘amdgpu_cs_ctx_stable_pstate’; did you mean ‘amdgpu_cs_ctx_create’? [-Werror=implicit-function-declaration] 625 | r = amdgpu_cs_ctx_stable_pstate(context_handle, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ | amdgpu_cs_ctx_create ../tests/amdgpu/amd_basic.c:625:6: warning: nested extern declaration of ‘amdgpu_cs_ctx_stable_pstate’ [-Wnested-externs] cc1: some warnings being treated as errors ninja: build stopped: subcommand failed. section_end:1695347532:step_script section_start:1695347532:cleanup_file_variables Cleaning up project directory and file based variables section_end:1695347533:cleanup_file_variables ERROR: Job failed: exit code 1 build:tests-fedora-clang has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/49309998): [4/367] Generating kms_chamelium_hpd.testlist with a meson_exe.py custom command. [5/367] Linking target tests/amdgpu/amd_abm. [6/367] Compiling C object 'tests/amdgpu/b9f2b1d@@amd_basic@exe/amd_basic.c.o'. FAILED: tests/amdgpu/b9f2b1d@@amd_basic@exe/amd_basic.c.o clang -Itests/amdgpu/b9f2b1d@@amd_basic@exe -Itests/amdgpu -I../tests/amdgpu -I../include -I../include/drm-uapi -I../include/linux-uapi -Ilib -I../lib -I../lib/stubs/syscalls -I. -I../ -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libdrm -I/usr/include/libdrm/nouveau -I/usr/include/valgrind -Xclang -fcolor-diagnostics -pipe -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -Wextra -std=gnu11 -O2 -g -D_GNU_SOURCE -include config.h -D_FORTIFY_SOURCE=2 -Wbad-function-cast -Wdeclaration-after-statement -Wformat=2 -Wmissing-declarations -Wmissing-format-attribute -Wmissing-noreturn -Wmissing-prototypes -Wnested-externs -Wold-style-definition -Wpointer-arith -Wredundant-decls -Wshadow -Wstrict-prototypes -Wuninitialized -Wunused -Wno-missing-field-initializers -Wno-pointer-arith -Wno-address-of-packed-member -Wno-sign-compare -Wno-type-limits -Wno-unused-parameter -Wno-unused-result -Werror=address -Werror=array-bounds -Werror=implicit -Werror=init-self -Werror=int-to-pointer-cast -Werror=main -Werror=missing-braces -Werror=nonnull -Werror=pointer-to-int-cast -Werror=return-type -Werror=sequence-point -Werror=trigraphs -Werror=write-strings -fno-builtin-malloc -fno-builtin-calloc -pthread -MD -MQ 'tests/amdgpu/b9f2b1d@@amd_basic@exe/amd_basic.c.o' -MF 'tests/amdgpu/b9f2b1d@@amd_basic@exe/amd_basic.c.o.d' -o 'tests/amdgpu/b9f2b1d@@amd_basic@exe/amd_basic.c.o' -c ../tests/amdgpu/amd_basic.c ../tests/amdgpu/amd_basic.c:625:6: error: implicit declaration of function 'amdgpu_cs_ctx_stable_pstate' is invalid in C99 [-Werror,-Wimplicit-function-declaration] r = amdgpu_cs_ctx_stable_pstate(context_handle, ^ ../tests/amdgpu/amd_basic.c:625:6: note: did you mean 'amdgpu_cs_ctx_create'? /usr/include/libdrm/amdgpu.h:897:5: note: 'amdgpu_cs_ctx_create' declared here int amdgpu_cs_ctx_create(amdgpu_device_handle dev, ^ 1 error generated. ninja: build stopped: subcommand failed. section_end:1695347549:step_script section_start:1695347549:cleanup_file_variables Cleaning up project directory and file based variables section_end:1695347549:cleanup_file_variables ERROR: Job failed: exit code 1 build:tests-fedora-no-libunwind has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/49309995): ninja: build stopped: subcommand failed. ninja: Entering directory `build' [1/942] Generating version.h with a custom command. [2/361] Compiling C object 'tests/amdgpu/b9f2b1d@@amd_basic@exe/amd_basic.c.o'. FAILED: tests/amdgpu/b9f2b1d@@amd_basic@exe/amd_basic.c.o cc -Itests/amdgpu/b9f2b1d@@amd_basic@exe -Itests/amdgpu -I../tests/amdgpu -I../include -I../include/drm-uapi -I../include/linux-uapi -Ilib -I../lib -I../lib/stubs/syscalls -I. -I../ -I../lib/stubs/libunwind -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libdrm -I/usr/include/libdrm/nouveau -I/usr/include/valgrind -fdiagnostics-color=always -pipe -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -Wextra -std=gnu11 -O2 -g -D_GNU_SOURCE -include config.h -D_FORTIFY_SOURCE=2 -Wbad-function-cast -Wdeclaration-after-statement -Wformat=2 -Wimplicit-fallthrough=0 -Wlogical-op -Wmissing-declarations -Wmissing-format-attribute -Wmissing-noreturn -Wmissing-prototypes -Wnested-externs -Wold-style-definition -Wpointer-arith -Wredundant-decls -Wshadow -Wstrict-prototypes -Wuninitialized -Wunused -Wno-clobbered -Wno-maybe-uninitialized -Wno-missing-field-initializers -Wno-pointer-arith -Wno-address-of-packed-member -Wno-sign-compare -Wno-type-limits -Wno-unused-parameter -Wno-unused-result -Werror=address -Werror=array-bounds -Werror=implicit -Werror=init-self -Werror=int-to-pointer-cast -Werror=main -Werror=missing-braces -Werror=nonnull -Werror=pointer-to-int-cast -Werror=return-type -Werror=sequence-point -Werror=trigraphs -Werror=write-strings -fno-builtin-malloc -fno-builtin-calloc -pthread -MD -MQ 'tests/amdgpu/b9f2b1d@@amd_basic@exe/amd_basic.c.o' -MF 'tests/amdgpu/b9f2b1d@@amd_basic@exe/amd_basic.c.o.d' -o 'tests/amdgpu/b9f2b1d@@amd_basic@exe/amd_basic.c.o' -c ../tests/amdgpu/amd_basic.c ../tests/amdgpu/amd_basic.c: In function ‘amdgpu_stable_pstate_test’: ../tests/amdgpu/amd_basic.c:625:6: error: implicit declaration of function ‘amdgpu_cs_ctx_stable_pstate’; did you mean ‘amdgpu_cs_ctx_create’? [-Werror=implicit-function-declaration] 625 | r = amdgpu_cs_ctx_stable_pstate(context_handle, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ | amdgpu_cs_ctx_create ../tests/amdgpu/amd_basic.c:625:6: warning: nested extern declaration of ‘amdgpu_cs_ctx_stable_pstate’ [-Wnested-externs] cc1: some warnings being treated as errors ninja: build stopped: subcommand failed. section_end:1695347539:step_script section_start:1695347539:cleanup_file_variables Cleaning up project directory and file based variables section_end:1695347540:cleanup_file_variables ERROR: Job failed: exit code 1 build:tests-fedora-oldest-meson has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/49309996): ninja: Entering directory `build' [1/939] Generating version.h with a custom command. [2/358] Generating kms_chamelium_frames.testlist with a meson_exe.py custom command. [3/358] Compiling C object 'tests/amdgpu/tests@amdgpu@@amd_basic@exe/amd_basic.c.o'. FAILED: tests/amdgpu/tests@amdgpu@@amd_basic@exe/amd_basic.c.o cc -Itests/amdgpu/tests@amdgpu@@amd_basic@exe -Itests/amdgpu -I../tests/amdgpu -I../include -I../include/drm-uapi -I../include/linux-uapi -Ilib -I../lib -I../lib/stubs/syscalls -I. -I../ -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libdrm -I/usr/include/libdrm/nouveau -I/usr/include/valgrind -fdiagnostics-color=always -pipe -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -Wextra -std=gnu11 -O2 -g -D_GNU_SOURCE -include config.h -D_FORTIFY_SOURCE=2 -Wbad-function-cast -Wdeclaration-after-statement -Wformat=2 -Wimplicit-fallthrough=0 -Wlogical-op -Wmissing-declarations -Wmissing-format-attribute -Wmissing-noreturn -Wmissing-prototypes -Wnested-externs -Wold-style-definition -Wpointer-arith -Wredundant-decls -Wshadow -Wstrict-prototypes -Wuninitialized -Wunused -Wno-clobbered -Wno-maybe-uninitialized -Wno-missing-field-initializers -Wno-pointer-arith -Wno-address-of-packed-member -Wno-sign-compare -Wno-type-limits -Wno-unused-parameter -Wno-unused-result -Werror=address -Werror=array-bounds -Werror=implicit -Werror=init-self -Werror=int-to-pointer-cast -Werror=main -Werror=missing-braces -Werror=nonnull -Werror=pointer-to-int-cast -Werror=return-type -Werror=sequence-point -Werror=trigraphs -Werror=write-strings -fno-builtin-malloc -fno-builtin-calloc -pthread -MD -MQ 'tests/amdgpu/tests@amdgpu@@amd_basic@exe/amd_basic.c.o' -MF 'tests/amdgpu/tests@amdgpu@@amd_basic@exe/amd_basic.c.o.d' -o 'tests/amdgpu/tests@amdgpu@@amd_basic@exe/amd_basic.c.o' -c ../tests/amdgpu/amd_basic.c ../tests/amdgpu/amd_basic.c: In function ‘amdgpu_stable_pstate_test’: ../tests/amdgpu/amd_basic.c:625:6: error: implicit declaration of function ‘amdgpu_cs_ctx_stable_pstate’; did you mean ‘amdgpu_cs_ctx_create’? [-Werror=implicit-function-declaration] 625 | r = amdgpu_cs_ctx_stable_pstate(context_handle, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ | amdgpu_cs_ctx_create ../tests/amdgpu/amd_basic.c:625:6: warning: nested extern declaration of ‘amdgpu_cs_ctx_stable_pstate’ [-Wnested-externs] cc1: some warnings being treated as errors ninja: build stopped: subcommand failed. section_end:1695347530:step_script section_start:1695347530:cleanup_file_variables Cleaning up project directory and file based variables section_end:1695347530:cleanup_file_variables ERROR: Job failed: exit code 1 == Logs == For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/991632 ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for tests/amdgpu: add stable pstate tet 2023-09-22 1:36 [igt-dev] [PATCH] tests/amdgpu: add stable pstate tet Jesse Zhang 2023-09-22 1:56 ` [igt-dev] ✗ GitLab.Pipeline: warning for " Patchwork @ 2023-09-22 2:26 ` Patchwork 2023-09-22 2:30 ` [igt-dev] [PATCH] " Zhang, Jesse(Jie) ` (3 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-09-22 2:26 UTC (permalink / raw) To: Jesse Zhang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1978 bytes --] == Series Details == Series: tests/amdgpu: add stable pstate tet URL : https://patchwork.freedesktop.org/series/124087/ State : success == Summary == CI Bug Log - changes from XEIGT_7496_BAT -> XEIGTPW_9843_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_9843_BAT that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1: - bat-adlp-7: [FAIL][1] ([Intel XE#480]) -> [PASS][2] +3 other tests pass [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7496/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9843/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1.html * {igt@xe_create@create-execqueues-leak}: - bat-atsm-2: [FAIL][3] ([Intel XE#524]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7496/bat-atsm-2/igt@xe_create@create-execqueues-leak.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9843/bat-atsm-2/igt@xe_create@create-execqueues-leak.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480 [Intel XE#524]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/524 Build changes ------------- * IGT: IGT_7496 -> IGTPW_9843 IGTPW_9843: 9843 IGT_7496: 6a96d3ad178e468b74a58cc10dead2f57bc1558d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-389-7e0d40e7aa56f19a9b3e9bc492003085f9be01c3: 7e0d40e7aa56f19a9b3e9bc492003085f9be01c3 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9843/index.html [-- Attachment #2: Type: text/html, Size: 2585 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [igt-dev] [PATCH] tests/amdgpu: add stable pstate tet 2023-09-22 1:36 [igt-dev] [PATCH] tests/amdgpu: add stable pstate tet Jesse Zhang 2023-09-22 1:56 ` [igt-dev] ✗ GitLab.Pipeline: warning for " Patchwork 2023-09-22 2:26 ` [igt-dev] ✓ CI.xeBAT: success " Patchwork @ 2023-09-22 2:30 ` Zhang, Jesse(Jie) 2023-09-22 2:34 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Zhang, Jesse(Jie) @ 2023-09-22 2:30 UTC (permalink / raw) To: Zhang, Jesse(Jie), igt-dev@lists.freedesktop.org Cc: Deucher, Alexander, Huang, Tim, Tuikov, Luben, Koenig, Christian [AMD Official Use Only - General] Please Ignore the patch, Since the pipeline build error because of the lower version libdrm. " https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/991632/failures" I will send another patch later. -----Original Message----- From: Jesse Zhang <jesse.zhang@amd.com> Sent: Friday, September 22, 2023 9:37 AM To: igt-dev@lists.freedesktop.org Cc: Prosyak, Vitaly <Vitaly.Prosyak@amd.com>; Deucher, Alexander <Alexander.Deucher@amd.com>; Tuikov, Luben <Luben.Tuikov@amd.com>; Koenig, Christian <Christian.Koenig@amd.com>; Zhang, Jesse(Jie) <Jesse.Zhang@amd.com>; Zhang, Jesse(Jie) <Jesse.Zhang@amd.com>; Huang, Tim <Tim.Huang@amd.com> Subject: [PATCH] tests/amdgpu: add stable pstate tet Signed-off-by: Jesse Zhang <Jesse.Zhang@amd.com> Signed-off-by: Tim Huang <tim.huang@amd.com> --- include/drm-uapi/amdgpu_drm.h | 10 +++++++++ tests/amdgpu/amd_basic.c | 38 +++++++++++++++++++++++++++++++++++ 2 files changed, 48 insertions(+) diff --git a/include/drm-uapi/amdgpu_drm.h b/include/drm-uapi/amdgpu_drm.h index 0cbd1540a..f921cd021 100644 --- a/include/drm-uapi/amdgpu_drm.h +++ b/include/drm-uapi/amdgpu_drm.h @@ -206,6 +206,8 @@ union drm_amdgpu_bo_list { #define AMDGPU_CTX_OP_FREE_CTX 2 #define AMDGPU_CTX_OP_QUERY_STATE 3 #define AMDGPU_CTX_OP_QUERY_STATE2 4 +#define AMDGPU_CTX_OP_GET_STABLE_PSTATE 5 +#define AMDGPU_CTX_OP_SET_STABLE_PSTATE 6 /* GPU reset status */ #define AMDGPU_CTX_NO_RESET 0 @@ -238,6 +240,14 @@ union drm_amdgpu_bo_list { #define AMDGPU_CTX_PRIORITY_HIGH 512 #define AMDGPU_CTX_PRIORITY_VERY_HIGH 1023 +/* select a stable profiling pstate for perfmon tools */ #define +AMDGPU_CTX_STABLE_PSTATE_FLAGS_MASK 0xf #define +AMDGPU_CTX_STABLE_PSTATE_NONE 0 #define +AMDGPU_CTX_STABLE_PSTATE_STANDARD 1 #define +AMDGPU_CTX_STABLE_PSTATE_MIN_SCLK 2 #define +AMDGPU_CTX_STABLE_PSTATE_MIN_MCLK 3 #define +AMDGPU_CTX_STABLE_PSTATE_PEAK 4 + struct drm_amdgpu_ctx_in { /** AMDGPU_CTX_OP_* */ __u32 op; diff --git a/tests/amdgpu/amd_basic.c b/tests/amdgpu/amd_basic.c index 24c70a9f7..b276c2107 100644 --- a/tests/amdgpu/amd_basic.c +++ b/tests/amdgpu/amd_basic.c @@ -612,6 +612,36 @@ amdgpu_sync_dependency_test(amdgpu_device_handle device_handle) free_cmd_base(base); } +static void +amdgpu_stable_pstate_test(amdgpu_device_handle device_handle) { + int r; + amdgpu_context_handle context_handle; + uint32_t current_pstate = 0, new_pstate = 0; + + r = amdgpu_cs_ctx_create(device_handle, &context_handle); + igt_assert_eq(r, 0); + + r = amdgpu_cs_ctx_stable_pstate(context_handle, + AMDGPU_CTX_OP_GET_STABLE_PSTATE, + 0, ¤t_pstate); + igt_assert_eq(r, 0); + igt_assert_eq(new_pstate, AMDGPU_CTX_STABLE_PSTATE_NONE); + r = amdgpu_cs_ctx_stable_pstate(context_handle, + AMDGPU_CTX_OP_SET_STABLE_PSTATE, + AMDGPU_CTX_STABLE_PSTATE_PEAK, NULL); + igt_assert_eq(r, 0); + + r = amdgpu_cs_ctx_stable_pstate(context_handle, + AMDGPU_CTX_OP_GET_STABLE_PSTATE, + 0, &new_pstate); + igt_assert_eq(r, 0); + igt_assert_eq(new_pstate, AMDGPU_CTX_STABLE_PSTATE_PEAK); + + r = amdgpu_cs_ctx_free(context_handle); + igt_assert_eq(r, 0); + +} static void amdgpu_gfx_dispatch_test_gfx(amdgpu_device_handle device_handle) { @@ -739,6 +769,14 @@ igt_main } } + igt_describe("Check-pstate-for-gfx-power-and-clock"); + igt_subtest_with_dynamic("stable-pstate-test-with-IP-SMU") { + if (arr_cap[AMD_IP_GFX]) { + igt_dynamic_f("stable-pstate-test") + amdgpu_stable_pstate_test(device); + } + } + igt_fixture { amdgpu_device_deinitialize(device); drm_close_driver(fd); -- 2.25.1 ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/amdgpu: add stable pstate tet 2023-09-22 1:36 [igt-dev] [PATCH] tests/amdgpu: add stable pstate tet Jesse Zhang ` (2 preceding siblings ...) 2023-09-22 2:30 ` [igt-dev] [PATCH] " Zhang, Jesse(Jie) @ 2023-09-22 2:34 ` Patchwork 2023-09-22 3:03 ` [igt-dev] ✗ Fi.CI.BUILD: failure for tests/amdgpu: add stable pstate tet (rev2) Patchwork 2023-09-22 22:07 ` [igt-dev] ✗ Fi.CI.IGT: failure for tests/amdgpu: add stable pstate tet Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-09-22 2:34 UTC (permalink / raw) To: Zhang, Jesse(Jie); +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2773 bytes --] == Series Details == Series: tests/amdgpu: add stable pstate tet URL : https://patchwork.freedesktop.org/series/124087/ State : success == Summary == CI Bug Log - changes from CI_DRM_13667 -> IGTPW_9843 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/index.html Participating hosts (37 -> 37) ------------------------------ Additional (1): fi-hsw-4770 Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_9843 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - fi-hsw-4770: NOTRUN -> [SKIP][1] ([fdo#109271]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/fi-hsw-4770/igt@debugfs_test@basic-hwmon.html * igt@i915_selftest@live@execlists: - fi-bsw-nick: [PASS][2] -> [ABORT][3] ([i915#7913]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/fi-bsw-nick/igt@i915_selftest@live@execlists.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/fi-bsw-nick/igt@i915_selftest@live@execlists.html #### Possible fixes #### * igt@i915_selftest@live@gt_heartbeat: - fi-apl-guc: [DMESG-FAIL][4] ([i915#5334]) -> [PASS][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html * igt@kms_chamelium_edid@hdmi-edid-read: - {bat-dg2-13}: [DMESG-WARN][6] ([i915#7952]) -> [PASS][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7952]: https://gitlab.freedesktop.org/drm/intel/issues/7952 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7496 -> IGTPW_9843 CI-20190529: 20190529 CI_DRM_13667: 5e02013de5896d3099b06de0d2d93c6788111409 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9843: 9843 IGT_7496: 6a96d3ad178e468b74a58cc10dead2f57bc1558d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/index.html [-- Attachment #2: Type: text/html, Size: 3475 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✗ Fi.CI.BUILD: failure for tests/amdgpu: add stable pstate tet (rev2) 2023-09-22 1:36 [igt-dev] [PATCH] tests/amdgpu: add stable pstate tet Jesse Zhang ` (3 preceding siblings ...) 2023-09-22 2:34 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2023-09-22 3:03 ` Patchwork 2023-09-22 22:07 ` [igt-dev] ✗ Fi.CI.IGT: failure for tests/amdgpu: add stable pstate tet Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-09-22 3:03 UTC (permalink / raw) To: Zhang, Jesse(Jie); +Cc: igt-dev == Series Details == Series: tests/amdgpu: add stable pstate tet (rev2) URL : https://patchwork.freedesktop.org/series/124087/ State : failure == Summary == Applying: tests/amdgpu: add stable pstate tet Patch failed at 0001 tests/amdgpu: add stable pstate tet When you have resolved this problem, run "git am --continue". If you prefer to skip this patch, run "git am --skip" instead. To restore the original branch and stop patching, run "git am --abort". ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/amdgpu: add stable pstate tet 2023-09-22 1:36 [igt-dev] [PATCH] tests/amdgpu: add stable pstate tet Jesse Zhang ` (4 preceding siblings ...) 2023-09-22 3:03 ` [igt-dev] ✗ Fi.CI.BUILD: failure for tests/amdgpu: add stable pstate tet (rev2) Patchwork @ 2023-09-22 22:07 ` Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-09-22 22:07 UTC (permalink / raw) To: Jesse Zhang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100254 bytes --] == Series Details == Series: tests/amdgpu: add stable pstate tet URL : https://patchwork.freedesktop.org/series/124087/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13667_full -> IGTPW_9843_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9843_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9843_full, please notify your bug team (lgci.bug.filing@intel.com) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9843_full: ### IGT changes ### #### Possible regressions #### * igt@gem_ctx_exec@basic-nohangcheck: - shard-mtlp: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-mtlp-3/igt@gem_ctx_exec@basic-nohangcheck.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-6/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_exec_schedule@wide@rcs0: - shard-apl: [PASS][3] -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-apl3/igt@gem_exec_schedule@wide@rcs0.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-apl1/igt@gem_exec_schedule@wide@rcs0.html * igt@kms_atomic_transition@plane-all-transition@pipe-a-vga-1: - shard-snb: [PASS][5] -> [ABORT][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-snb5/igt@kms_atomic_transition@plane-all-transition@pipe-a-vga-1.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-snb6/igt@kms_atomic_transition@plane-all-transition@pipe-a-vga-1.html * igt@prime_vgem@basic-fence-blt: - shard-mtlp: NOTRUN -> [FAIL][7] +1 other test fail [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-6/igt@prime_vgem@basic-fence-blt.html Known issues ------------ Here are the changes found in IGTPW_9843_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-dg1: NOTRUN -> [SKIP][8] ([i915#6230]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-13/igt@api_intel_bb@crc32.html * igt@api_intel_bb@object-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][9] ([i915#8411]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-5/igt@api_intel_bb@object-reloc-keep-cache.html * igt@device_reset@cold-reset-bound: - shard-rkl: NOTRUN -> [SKIP][10] ([i915#7701]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-7/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@busy-check-all@ccs0: - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#8414]) +17 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-6/igt@drm_fdinfo@busy-check-all@ccs0.html * igt@drm_fdinfo@busy-idle-check-all@vcs0: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#8414]) +19 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-5/igt@drm_fdinfo@busy-idle-check-all@vcs0.html * igt@drm_fdinfo@idle@rcs0: - shard-rkl: NOTRUN -> [FAIL][13] ([i915#7742]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-1/igt@drm_fdinfo@idle@rcs0.html * igt@gem_busy@semaphore: - shard-dg1: NOTRUN -> [SKIP][14] ([i915#3936]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-17/igt@gem_busy@semaphore.html * igt@gem_caching@reads: - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#4873]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-8/igt@gem_caching@reads.html * igt@gem_ccs@suspend-resume: - shard-dg1: NOTRUN -> [SKIP][16] ([i915#9323]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-16/igt@gem_ccs@suspend-resume.html * igt@gem_close_race@multigpu-basic-process: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#7697]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-10/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-cpu-access-big: - shard-mtlp: NOTRUN -> [SKIP][18] ([i915#6335]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-7/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_isolation@preservation-s3@bcs0: - shard-dg2: [PASS][19] -> [FAIL][20] ([fdo#103375]) +1 other test fail [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-dg2-5/igt@gem_ctx_isolation@preservation-s3@bcs0.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-5/igt@gem_ctx_isolation@preservation-s3@bcs0.html * igt@gem_ctx_param@set-priority-not-supported: - shard-mtlp: NOTRUN -> [SKIP][21] ([fdo#109314]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-3/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-dg1: NOTRUN -> [SKIP][22] ([i915#8555]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-16/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_persistence@heartbeat-many: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#8555]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-7/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_persistence@legacy-engines-cleanup: - shard-snb: NOTRUN -> [SKIP][24] ([fdo#109271] / [i915#1099]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-snb5/igt@gem_ctx_persistence@legacy-engines-cleanup.html * igt@gem_ctx_persistence@legacy-engines-hang@bsd1: - shard-mtlp: [PASS][25] -> [FAIL][26] ([i915#2410]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-mtlp-5/igt@gem_ctx_persistence@legacy-engines-hang@bsd1.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-7/igt@gem_ctx_persistence@legacy-engines-hang@bsd1.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#280]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-10/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_exec_balancer@bonded-dual: - shard-mtlp: NOTRUN -> [SKIP][28] ([i915#4771]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-2/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@bonded-true-hang: - shard-mtlp: NOTRUN -> [SKIP][29] ([i915#4812]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-5/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-mtlp: NOTRUN -> [SKIP][30] ([i915#6334]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-8/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_fair@basic-flow: - shard-dg1: NOTRUN -> [SKIP][31] ([i915#3539] / [i915#4852]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-14/igt@gem_exec_fair@basic-flow.html * igt@gem_exec_fair@basic-none-vip: - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#4473] / [i915#4771]) +2 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-1/igt@gem_exec_fair@basic-none-vip.html * igt@gem_exec_fair@basic-pace: - shard-dg1: NOTRUN -> [SKIP][33] ([i915#3539]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-13/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-pace@bcs0: - shard-rkl: [PASS][34] -> [FAIL][35] ([i915#2842]) +2 other tests fail [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-rkl-6/igt@gem_exec_fair@basic-pace@bcs0.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-4/igt@gem_exec_fair@basic-pace@bcs0.html * igt@gem_exec_fair@basic-sync: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#3539]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-5/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-glk: NOTRUN -> [FAIL][37] ([i915#2842]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-glk3/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_fence@concurrent: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#4812]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-11/igt@gem_exec_fence@concurrent.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#3539] / [i915#4852]) +2 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-3/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_gttfill@multigpu-basic: - shard-mtlp: NOTRUN -> [SKIP][40] ([i915#7697]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-1/igt@gem_exec_gttfill@multigpu-basic.html * igt@gem_exec_params@secure-non-master: - shard-mtlp: NOTRUN -> [SKIP][41] ([fdo#112283]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-7/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_reloc@basic-cpu-active: - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#3281]) +9 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-3/igt@gem_exec_reloc@basic-cpu-active.html * igt@gem_exec_reloc@basic-range-active: - shard-rkl: NOTRUN -> [SKIP][43] ([i915#3281]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-6/igt@gem_exec_reloc@basic-range-active.html * igt@gem_exec_reloc@basic-wc-cpu: - shard-dg1: NOTRUN -> [SKIP][44] ([i915#3281]) +4 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-18/igt@gem_exec_reloc@basic-wc-cpu.html * igt@gem_exec_reloc@basic-write-read-active: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#3281]) +12 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-6/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#4537] / [i915#4812]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-7/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_schedule@reorder-wide: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4537] / [i915#4812]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-7/igt@gem_exec_schedule@reorder-wide.html * igt@gem_exec_schedule@semaphore-power: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#4812]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-15/igt@gem_exec_schedule@semaphore-power.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4860]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-6/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#4860]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-19/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html * igt@gem_fenced_exec_thrash@too-many-fences: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4860]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-7/igt@gem_fenced_exec_thrash@too-many-fences.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][52] ([i915#4613] / [i915#7582]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-2/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@basic: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4613]) +4 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-1/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@heavy-random: - shard-rkl: NOTRUN -> [SKIP][54] ([i915#4613]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-1/igt@gem_lmem_swapping@heavy-random.html - shard-tglu: NOTRUN -> [SKIP][55] ([i915#4613]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-tglu-2/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@parallel-multi: - shard-glk: NOTRUN -> [SKIP][56] ([fdo#109271] / [i915#4613]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-glk9/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@smem-oom: - shard-apl: NOTRUN -> [SKIP][57] ([fdo#109271] / [i915#4613]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-apl4/igt@gem_lmem_swapping@smem-oom.html * igt@gem_mmap@bad-size: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4083]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-2/igt@gem_mmap@bad-size.html * igt@gem_mmap@basic: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#4083]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-16/igt@gem_mmap@basic.html * igt@gem_mmap_gtt@close-race: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#4077]) +4 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-19/igt@gem_mmap_gtt@close-race.html * igt@gem_mmap_gtt@cpuset-medium-copy-odd: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4077]) +13 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-4/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html * igt@gem_mmap_gtt@cpuset-medium-copy-xy: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#4077]) +14 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-3/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html * igt@gem_mmap_offset@clear@smem0: - shard-mtlp: [PASS][63] -> [INCOMPLETE][64] ([i915#5493]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-mtlp-1/igt@gem_mmap_offset@clear@smem0.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-1/igt@gem_mmap_offset@clear@smem0.html * igt@gem_mmap_wc@bad-object: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#4083]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-11/igt@gem_mmap_wc@bad-object.html * igt@gem_partial_pwrite_pread@reads-snoop: - shard-dg1: NOTRUN -> [SKIP][66] ([i915#3282]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-19/igt@gem_partial_pwrite_pread@reads-snoop.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#3282]) +6 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-6/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_pwrite@basic-random: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#3282]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-3/igt@gem_pwrite@basic-random.html - shard-rkl: NOTRUN -> [SKIP][69] ([i915#3282]) +3 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-1/igt@gem_pwrite@basic-random.html * igt@gem_pxp@create-protected-buffer: - shard-dg1: NOTRUN -> [SKIP][70] ([i915#4270]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-14/igt@gem_pxp@create-protected-buffer.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4270]) +4 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-6/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html - shard-rkl: NOTRUN -> [SKIP][72] ([i915#4270]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-7/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html - shard-tglu: NOTRUN -> [SKIP][73] ([i915#4270]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-tglu-7/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4270]) +4 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-4/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_render_copy@linear-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#8428]) +7 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-2/igt@gem_render_copy@linear-to-vebox-y-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#4079]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-19/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_tiled_pread_pwrite: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#4079]) +2 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-4/igt@gem_tiled_pread_pwrite.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#3297] / [i915#4880]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-6/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@mmap-offset-banned@gtt: - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#3297]) +6 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-3/igt@gem_userptr_blits@mmap-offset-banned@gtt.html * igt@gem_userptr_blits@readonly-unsync: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#3297]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-10/igt@gem_userptr_blits@readonly-unsync.html - shard-rkl: NOTRUN -> [SKIP][81] ([i915#3297]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-7/igt@gem_userptr_blits@readonly-unsync.html - shard-tglu: NOTRUN -> [SKIP][82] ([i915#3297]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-tglu-10/igt@gem_userptr_blits@readonly-unsync.html * igt@gen3_render_linear_blits: - shard-dg2: NOTRUN -> [SKIP][83] ([fdo#109289]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-11/igt@gen3_render_linear_blits.html * igt@gen7_exec_parse@basic-allocation: - shard-mtlp: NOTRUN -> [SKIP][84] ([fdo#109289]) +5 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-8/igt@gen7_exec_parse@basic-allocation.html * igt@gen7_exec_parse@basic-offset: - shard-rkl: NOTRUN -> [SKIP][85] ([fdo#109289]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-1/igt@gen7_exec_parse@basic-offset.html - shard-tglu: NOTRUN -> [SKIP][86] ([fdo#109289]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-tglu-2/igt@gen7_exec_parse@basic-offset.html * igt@gen9_exec_parse@basic-rejected: - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#2856]) +5 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-2/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][88] ([i915#2527]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-14/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@valid-registers: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#2856]) +4 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-10/igt@gen9_exec_parse@valid-registers.html * igt@i915_hwmon@hwmon-write: - shard-rkl: NOTRUN -> [SKIP][90] ([i915#7707]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-7/igt@i915_hwmon@hwmon-write.html - shard-mtlp: NOTRUN -> [SKIP][91] ([i915#7707]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-7/igt@i915_hwmon@hwmon-write.html * igt@i915_module_load@load: - shard-snb: NOTRUN -> [SKIP][92] ([fdo#109271] / [i915#6227]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-snb5/igt@i915_module_load@load.html - shard-glk: NOTRUN -> [SKIP][93] ([fdo#109271] / [i915#6227]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-glk1/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [PASS][94] -> [DMESG-WARN][95] ([i915#8617]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_module_load@resize-bar: - shard-mtlp: NOTRUN -> [SKIP][96] ([i915#6412]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-5/igt@i915_module_load@resize-bar.html * igt@i915_pipe_stress@stress-xrgb8888-ytiled: - shard-apl: NOTRUN -> [FAIL][97] ([i915#7036]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-apl4/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html * igt@i915_pm_freq_mult@media-freq@gt1: - shard-mtlp: NOTRUN -> [SKIP][98] ([i915#6590]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-4/igt@i915_pm_freq_mult@media-freq@gt1.html * igt@i915_pm_rpm@dpms-lpsp: - shard-dg2: [PASS][99] -> [SKIP][100] ([i915#1397]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-dg2-10/igt@i915_pm_rpm@dpms-lpsp.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-7/igt@i915_pm_rpm@dpms-lpsp.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][101] ([fdo#111644] / [i915#1397]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-tglu-3/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-glk: NOTRUN -> [SKIP][102] ([fdo#109271]) +46 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-glk6/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_rpm@modeset-lpsp: - shard-rkl: [PASS][103] -> [SKIP][104] ([i915#1397]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-rkl-7/igt@i915_pm_rpm@modeset-lpsp.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-1/igt@i915_pm_rpm@modeset-lpsp.html * igt@i915_pm_rpm@modeset-lpsp-stress: - shard-dg1: [PASS][105] -> [SKIP][106] ([i915#1397]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-dg1-19/igt@i915_pm_rpm@modeset-lpsp-stress.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-16/igt@i915_pm_rpm@modeset-lpsp-stress.html * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-mtlp: NOTRUN -> [SKIP][107] ([i915#1397]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-7/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#6621]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-10/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@reset: - shard-mtlp: NOTRUN -> [FAIL][109] ([i915#8346]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-3/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds-idle-park@gt0: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#8925]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-3/igt@i915_pm_rps@thresholds-idle-park@gt0.html * igt@i915_pm_rps@thresholds@gt1: - shard-mtlp: NOTRUN -> [SKIP][111] ([i915#8925]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-7/igt@i915_pm_rps@thresholds@gt1.html * igt@i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#4387]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-3/igt@i915_pm_sseu@full-enable.html * igt@i915_query@query-topology-unsupported: - shard-mtlp: NOTRUN -> [SKIP][113] ([fdo#109302]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-4/igt@i915_query@query-topology-unsupported.html * igt@i915_selftest@live@hangcheck: - shard-dg1: [PASS][114] -> [ABORT][115] ([i915#4983]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-dg1-19/igt@i915_selftest@live@hangcheck.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-17/igt@i915_selftest@live@hangcheck.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-mtlp: NOTRUN -> [SKIP][116] ([i915#4212]) +3 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-8/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][117] ([i915#8247]) +3 other tests fail [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-1/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#6228]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-6/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#1769] / [i915#3555]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-19/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-glk: NOTRUN -> [SKIP][120] ([fdo#109271] / [i915#1769]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-glk9/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-snb: NOTRUN -> [SKIP][121] ([fdo#109271] / [i915#1769]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-snb6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#4538] / [i915#5286]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-18/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][123] ([i915#5286]) +2 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html - shard-tglu: NOTRUN -> [SKIP][124] ([fdo#111615] / [i915#5286]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-tglu-9/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][125] ([fdo#111614]) +7 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-4/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html - shard-dg2: NOTRUN -> [SKIP][126] ([fdo#111614]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-1/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#3638]) +2 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-19/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [PASS][128] -> [FAIL][129] ([i915#3743]) +1 other test fail [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-tglu-4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-tglu-10/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][130] ([fdo#111614] / [i915#3638]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-4/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#5190]) +11 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-5/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#6187]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-1/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: NOTRUN -> [SKIP][133] ([fdo#111615]) +16 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][134] ([fdo#110723]) +2 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html - shard-tglu: NOTRUN -> [SKIP][135] ([fdo#111615]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-tglu-9/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#4538] / [i915#5190]) +8 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-1/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][137] ([i915#4538]) +1 other test skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_joiner@basic: - shard-dg1: NOTRUN -> [SKIP][138] ([i915#2705]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-19/igt@kms_big_joiner@basic.html - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#2705]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-7/igt@kms_big_joiner@basic.html * igt@kms_big_joiner@invalid-modeset: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#2705]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-6/igt@kms_big_joiner@invalid-modeset.html * igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_mtl_rc_ccs_cc: - shard-rkl: NOTRUN -> [SKIP][141] ([i915#5354] / [i915#6095]) +1 other test skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-2/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-a-crc-primary-basic-yf_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#3689] / [i915#5354]) +29 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-3/igt@kms_ccs@pipe-a-crc-primary-basic-yf_tiled_ccs.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc: - shard-glk: NOTRUN -> [SKIP][143] ([fdo#109271] / [i915#3886]) +5 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-glk9/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-4_tiled_mtl_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#5354]) +55 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-5/igt@kms_ccs@pipe-a-missing-ccs-buffer-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][145] ([i915#3734] / [i915#5354] / [i915#6095]) +2 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-4/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_ccs.html * igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#3886] / [i915#5354] / [i915#6095]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-4/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs_cc: - shard-mtlp: [PASS][147] -> [DMESG-WARN][148] ([i915#1982]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-mtlp-2/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs_cc.html [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-4/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#3886] / [i915#5354] / [i915#6095]) +12 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-1/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][150] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-tglu-10/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-ccs-on-another-bo-4_tiled_mtl_rc_ccs: - shard-dg1: NOTRUN -> [SKIP][151] ([i915#5354] / [i915#6095]) +7 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-13/igt@kms_ccs@pipe-c-ccs-on-another-bo-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_mtl_rc_ccs: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#5354]) +12 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-7/igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_rc_ccs_cc: - shard-apl: NOTRUN -> [SKIP][153] ([fdo#109271] / [i915#3886]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-apl4/igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_dg2_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][154] ([i915#5354] / [i915#6095]) +3 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-tglu-4/igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#3689] / [i915#3886] / [i915#5354]) +5 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-3/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html - shard-dg1: NOTRUN -> [SKIP][156] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) +4 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-18/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-yf_tiled_ccs: - shard-dg1: NOTRUN -> [SKIP][157] ([i915#3689] / [i915#5354] / [i915#6095]) +7 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-16/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-yf_tiled_ccs.html * igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][158] ([i915#3689] / [i915#5354] / [i915#6095]) +4 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-tglu-10/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs.html * igt@kms_ccs@pipe-d-random-ccs-data-y_tiled_ccs: - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#5354] / [i915#6095]) +45 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-7/igt@kms_ccs@pipe-d-random-ccs-data-y_tiled_ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg1: NOTRUN -> [SKIP][160] ([i915#3742]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-19/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#4087] / [i915#7213]) +2 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-10/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-1.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#7213]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-10/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html * igt@kms_chamelium_color@ctm-negative: - shard-dg2: NOTRUN -> [SKIP][163] ([fdo#111827]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-5/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_color@gamma: - shard-mtlp: NOTRUN -> [SKIP][164] ([fdo#111827]) +2 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-2/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg1: NOTRUN -> [SKIP][165] ([i915#7828]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-18/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_frames@dp-frame-dump: - shard-rkl: NOTRUN -> [SKIP][166] ([i915#7828]) +5 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-6/igt@kms_chamelium_frames@dp-frame-dump.html - shard-tglu: NOTRUN -> [SKIP][167] ([i915#7828]) +2 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-tglu-3/igt@kms_chamelium_frames@dp-frame-dump.html * igt@kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#7828]) +9 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-10/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode: - shard-mtlp: NOTRUN -> [SKIP][169] ([i915#7828]) +15 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-7/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html * igt@kms_color@deep-color: - shard-rkl: NOTRUN -> [SKIP][170] ([i915#3555]) +1 other test skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-7/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic-dpms: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#7118]) +2 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-2/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg1: NOTRUN -> [SKIP][172] ([i915#3299]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-19/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@legacy: - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#6944]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-4/igt@kms_content_protection@legacy.html * igt@kms_content_protection@uevent@pipe-a-dp-1: - shard-apl: NOTRUN -> [FAIL][174] ([i915#1339]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-apl4/igt@kms_content_protection@uevent@pipe-a-dp-1.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-rkl: NOTRUN -> [SKIP][175] ([fdo#109279] / [i915#3359]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-mtlp: NOTRUN -> [SKIP][176] ([i915#3359]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-1/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#3359]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-5/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#3555] / [i915#8814]) +3 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-5/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-dg1: NOTRUN -> [SKIP][179] ([i915#3359]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-15/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][180] ([fdo#103375]) +2 other tests fail [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-5/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-3.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][181] ([i915#4213]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-mtlp: NOTRUN -> [SKIP][182] ([i915#3546]) +8 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-8/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-rkl: NOTRUN -> [SKIP][183] ([fdo#111825]) +1 other test skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html - shard-tglu: NOTRUN -> [SKIP][184] ([fdo#109274]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-tglu-7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-dg2: NOTRUN -> [SKIP][185] ([fdo#109274] / [i915#5354]) +2 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-7/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [PASS][186] -> [FAIL][187] ([i915#2346]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html - shard-glk: [PASS][188] -> [FAIL][189] ([i915#2346]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#4103] / [i915#4213]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][191] ([i915#9227]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-16/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4.html * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][192] ([i915#9226] / [i915#9261]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-16/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4.html * igt@kms_display_modes@extended-mode-basic: - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#3555] / [i915#8827]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-2/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][194] ([i915#3804]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#3555]) +5 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-3/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_dp_aux_dev: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#1257]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-7/igt@kms_dp_aux_dev.html - shard-tglu: NOTRUN -> [SKIP][197] ([i915#1257]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-tglu-10/igt@kms_dp_aux_dev.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][198] ([i915#8812]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-1/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-with-output-formats: - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#3555] / [i915#3840]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-1/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@psr: - shard-rkl: NOTRUN -> [SKIP][200] ([i915#3955]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-7/igt@kms_fbcon_fbt@psr.html - shard-tglu: NOTRUN -> [SKIP][201] ([i915#3469]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-tglu-5/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#3469]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-5/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-apl: NOTRUN -> [SKIP][203] ([fdo#109271] / [fdo#111767]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-apl1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][204] ([i915#8381]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-4/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-suspend: - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#3637]) +9 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-8/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-dg2: NOTRUN -> [SKIP][206] ([fdo#109274]) +3 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-6/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][207] ([i915#2672]) +3 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][208] ([i915#2587] / [i915#2672]) +1 other test skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][209] ([i915#3555] / [i915#8810]) +1 other test skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][210] ([i915#2672] / [i915#3555]) +4 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][211] ([i915#2672]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html - shard-tglu: NOTRUN -> [SKIP][212] ([i915#2587] / [i915#2672]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][213] ([i915#8810]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#2672]) +6 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#5274]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-7/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [FAIL][216] ([i915#6880]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][217] ([i915#8708]) +6 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][218] ([fdo#111825]) +16 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: NOTRUN -> [SKIP][219] ([i915#5439]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-tiling-4.html - shard-tglu: NOTRUN -> [SKIP][220] ([i915#5439]) +1 other test skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-tglu-9/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][221] ([i915#5460]) +1 other test skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#3458]) +21 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-mtlp: NOTRUN -> [SKIP][223] ([i915#1825]) +31 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][224] ([fdo#109280]) +5 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt: - shard-dg1: NOTRUN -> [SKIP][225] ([i915#3458]) +6 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-suspend: - shard-rkl: NOTRUN -> [SKIP][226] ([i915#3023]) +6 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][227] ([i915#8708]) +11 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#8708]) +15 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][229] ([fdo#111825] / [i915#1825]) +10 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt.html * igt@kms_hdr@bpc-switch: - shard-dg1: NOTRUN -> [SKIP][230] ([i915#3555] / [i915#8228]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-16/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@invalid-hdr: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#3555] / [i915#8228]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-6/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@static-toggle-dpms: - shard-mtlp: NOTRUN -> [SKIP][232] ([i915#3555] / [i915#8228]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-2/igt@kms_hdr@static-toggle-dpms.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#3555] / [i915#8228]) +2 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-2/igt@kms_hdr@static-toggle-suspend.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1: - shard-snb: NOTRUN -> [DMESG-WARN][234] ([i915#8841]) +4 other tests dmesg-warn [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-snb1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html * igt@kms_plane_lowres@tiling-x@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#3582]) +7 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-1/igt@kms_plane_lowres@tiling-x@pipe-c-edp-1.html * igt@kms_plane_scaling@intel-max-src-size: - shard-mtlp: NOTRUN -> [SKIP][236] ([i915#6953]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-4/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][237] ([i915#8292]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-13/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][238] ([i915#5176]) +19 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-13/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][239] ([i915#5176]) +7 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-dp-4.html * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][240] ([i915#5176]) +9 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-2/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-d-edp-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][241] ([i915#5176]) +7 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-1/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][242] ([i915#5235]) +5 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][243] ([i915#5235]) +3 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-tglu-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1: - shard-snb: NOTRUN -> [SKIP][244] ([fdo#109271]) +95 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-snb5/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][245] ([i915#5235]) +15 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-16/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-4.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#5235]) +19 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][247] ([i915#5235]) +11 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#6524] / [i915#6805]) +1 other test skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-3/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][249] ([i915#6524]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-4/igt@kms_prime@basic-modeset-hybrid.html - shard-tglu: NOTRUN -> [SKIP][250] ([i915#6524]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-tglu-8/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_prime@d3hot: - shard-dg1: NOTRUN -> [SKIP][251] ([i915#6524]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-13/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf: - shard-glk: NOTRUN -> [SKIP][252] ([fdo#109271] / [i915#658]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-glk8/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-dg1: NOTRUN -> [SKIP][253] ([i915#658]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-16/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: - shard-apl: NOTRUN -> [SKIP][254] ([fdo#109271] / [i915#658]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-apl4/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb: - shard-dg2: NOTRUN -> [SKIP][255] ([i915#658]) +3 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-6/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@page_flip-nv12: - shard-mtlp: NOTRUN -> [SKIP][256] ([i915#4348]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-3/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-p010: - shard-dg1: NOTRUN -> [SKIP][257] ([fdo#111068] / [i915#658]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-19/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][258] ([fdo#111068] / [i915#658]) +1 other test skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-7/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-tglu: NOTRUN -> [SKIP][259] ([fdo#109642] / [fdo#111068] / [i915#658]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-tglu-5/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@cursor_mmap_gtt: - shard-rkl: NOTRUN -> [SKIP][260] ([i915#1072]) +2 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-6/igt@kms_psr@cursor_mmap_gtt.html - shard-tglu: NOTRUN -> [SKIP][261] ([fdo#110189]) +5 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-tglu-10/igt@kms_psr@cursor_mmap_gtt.html * igt@kms_psr@primary_page_flip: - shard-apl: NOTRUN -> [SKIP][262] ([fdo#109271]) +95 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-apl6/igt@kms_psr@primary_page_flip.html * igt@kms_psr@psr2_cursor_plane_move: - shard-dg2: NOTRUN -> [SKIP][263] ([i915#1072]) +6 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-3/igt@kms_psr@psr2_cursor_plane_move.html * igt@kms_psr@sprite_plane_move: - shard-dg1: NOTRUN -> [SKIP][264] ([i915#1072]) +1 other test skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-19/igt@kms_psr@sprite_plane_move.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#5461] / [i915#658]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-dg1: NOTRUN -> [SKIP][266] ([i915#5289]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-16/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-rotation-270: - shard-mtlp: NOTRUN -> [SKIP][267] ([i915#4235]) +2 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-4/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-mtlp: NOTRUN -> [SKIP][268] ([i915#5289]) +1 other test skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][269] ([i915#4235] / [i915#5190]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-rkl: NOTRUN -> [SKIP][270] ([fdo#111615] / [i915#5289]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_setmode@basic@pipe-a-vga-1: - shard-snb: NOTRUN -> [FAIL][271] ([i915#5465]) +1 other test fail [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-snb5/igt@kms_setmode@basic@pipe-a-vga-1.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][272] ([i915#3555] / [i915#8823]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-1/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_tv_load_detect@load-detect: - shard-mtlp: NOTRUN -> [SKIP][273] ([fdo#109309]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-4/igt@kms_tv_load_detect@load-detect.html * igt@kms_universal_plane@cursor-fb-leak-pipe-a: - shard-tglu: [PASS][274] -> [FAIL][275] ([i915#9196]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-tglu-4/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-tglu-2/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html * igt@kms_universal_plane@cursor-fb-leak-pipe-b: - shard-rkl: [PASS][276] -> [FAIL][277] ([i915#9196]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-rkl-2/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-7/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html * igt@kms_vblank@pipe-c-ts-continuation-idle: - shard-rkl: NOTRUN -> [SKIP][278] ([i915#4070] / [i915#6768]) +2 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-6/igt@kms_vblank@pipe-c-ts-continuation-idle.html * igt@kms_vblank@pipe-c-ts-continuation-suspend: - shard-mtlp: NOTRUN -> [ABORT][279] ([i915#9262]) +7 other tests abort [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-7/igt@kms_vblank@pipe-c-ts-continuation-suspend.html * igt@kms_vblank@pipe-d-query-busy-hang: - shard-rkl: NOTRUN -> [SKIP][280] ([i915#4070] / [i915#533] / [i915#6768]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-7/igt@kms_vblank@pipe-d-query-busy-hang.html * igt@kms_vrr@flip-basic: - shard-dg1: NOTRUN -> [SKIP][281] ([i915#3555]) +1 other test skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-13/igt@kms_vrr@flip-basic.html - shard-mtlp: NOTRUN -> [SKIP][282] ([i915#3555] / [i915#8808]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-8/igt@kms_vrr@flip-basic.html * igt@kms_vrr@negative-basic: - shard-tglu: NOTRUN -> [SKIP][283] ([i915#3555]) +1 other test skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-tglu-10/igt@kms_vrr@negative-basic.html * igt@kms_writeback@writeback-invalid-parameters: - shard-mtlp: NOTRUN -> [SKIP][284] ([i915#2437]) +1 other test skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-6/igt@kms_writeback@writeback-invalid-parameters.html - shard-dg2: NOTRUN -> [SKIP][285] ([i915#2437]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-10/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@global-sseu-config: - shard-mtlp: NOTRUN -> [SKIP][286] ([i915#7387]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-8/igt@perf@global-sseu-config.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][287] ([i915#7387]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-6/igt@perf@global-sseu-config-invalid.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: NOTRUN -> [FAIL][288] ([i915#4349]) +3 other tests fail [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-5/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@event-wait@rcs0: - shard-dg1: NOTRUN -> [SKIP][289] ([fdo#112283]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-17/igt@perf_pmu@event-wait@rcs0.html * igt@perf_pmu@faulting-read@gtt: - shard-mtlp: NOTRUN -> [SKIP][290] ([i915#8440]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-5/igt@perf_pmu@faulting-read@gtt.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg1: NOTRUN -> [SKIP][291] ([i915#8516]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-18/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_udl: - shard-mtlp: NOTRUN -> [SKIP][292] ([fdo#109291]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-8/igt@prime_udl.html * igt@prime_vgem@basic-gtt: - shard-mtlp: NOTRUN -> [SKIP][293] ([i915#3708] / [i915#4077]) +1 other test skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-1/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-read: - shard-rkl: NOTRUN -> [SKIP][294] ([fdo#109295] / [i915#3291] / [i915#3708]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-2/igt@prime_vgem@basic-read.html * igt@prime_vgem@coherency-gtt: - shard-rkl: NOTRUN -> [SKIP][295] ([fdo#109295] / [fdo#111656] / [i915#3708]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-7/igt@prime_vgem@coherency-gtt.html - shard-tglu: NOTRUN -> [SKIP][296] ([fdo#109295] / [fdo#111656]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-tglu-5/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-write-hang: - shard-mtlp: NOTRUN -> [SKIP][297] ([i915#3708]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-6/igt@prime_vgem@fence-write-hang.html * igt@sysfs_timeslice_duration@timeout@vecs0: - shard-mtlp: NOTRUN -> [TIMEOUT][298] ([i915#6950]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-4/igt@sysfs_timeslice_duration@timeout@vecs0.html * igt@v3d/v3d_get_bo_offset@create-get-offsets: - shard-dg1: NOTRUN -> [SKIP][299] ([i915#2575]) +4 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-16/igt@v3d/v3d_get_bo_offset@create-get-offsets.html * igt@v3d/v3d_get_param@get-bad-param: - shard-tglu: NOTRUN -> [SKIP][300] ([fdo#109315] / [i915#2575]) +2 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-tglu-8/igt@v3d/v3d_get_param@get-bad-param.html * igt@v3d/v3d_submit_cl@bad-multisync-in-sync: - shard-rkl: NOTRUN -> [SKIP][301] ([fdo#109315]) +6 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-7/igt@v3d/v3d_submit_cl@bad-multisync-in-sync.html * igt@v3d/v3d_submit_cl@valid-submission: - shard-mtlp: NOTRUN -> [SKIP][302] ([i915#2575]) +14 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-4/igt@v3d/v3d_submit_cl@valid-submission.html * igt@v3d/v3d_submit_csd@single-out-sync: - shard-dg2: NOTRUN -> [SKIP][303] ([i915#2575]) +12 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-10/igt@v3d/v3d_submit_csd@single-out-sync.html * igt@vc4/vc4_label_bo@set-kernel-name: - shard-dg2: NOTRUN -> [SKIP][304] ([i915#7711]) +6 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-5/igt@vc4/vc4_label_bo@set-kernel-name.html * igt@vc4/vc4_perfmon@create-perfmon-exceed: - shard-tglu: NOTRUN -> [SKIP][305] ([i915#2575]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-tglu-7/igt@vc4/vc4_perfmon@create-perfmon-exceed.html * igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained: - shard-dg1: NOTRUN -> [SKIP][306] ([i915#7711]) +1 other test skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-13/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained.html * igt@vc4/vc4_wait_bo@used-bo: - shard-mtlp: NOTRUN -> [SKIP][307] ([i915#7711]) +10 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-6/igt@vc4/vc4_wait_bo@used-bo.html * igt@vc4/vc4_wait_seqno@bad-seqno-1ns: - shard-rkl: NOTRUN -> [SKIP][308] ([i915#7711]) +1 other test skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-6/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html #### Possible fixes #### * igt@gem_busy@close-race: - shard-rkl: [ABORT][309] ([i915#6016]) -> [PASS][310] [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-rkl-1/igt@gem_busy@close-race.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-7/igt@gem_busy@close-race.html * igt@gem_ctx_persistence@engines-hostile@vcs0: - shard-mtlp: [FAIL][311] ([i915#2410]) -> [PASS][312] +2 other tests pass [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-mtlp-8/igt@gem_ctx_persistence@engines-hostile@vcs0.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-3/igt@gem_ctx_persistence@engines-hostile@vcs0.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [FAIL][313] ([i915#2842]) -> [PASS][314] [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-apl3/igt@gem_exec_fair@basic-none-solo@rcs0.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-apl6/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-none@vcs0: - shard-rkl: [FAIL][315] ([i915#2842]) -> [PASS][316] +1 other test pass [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-rkl-6/igt@gem_exec_fair@basic-none@vcs0.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-2/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglu: [FAIL][317] ([i915#2842]) -> [PASS][318] [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-tglu-3/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [DMESG-WARN][319] ([i915#4936] / [i915#5493]) -> [PASS][320] [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-dg2-3/igt@gem_lmem_swapping@smem-oom@lmem0.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-2/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_userptr_blits@nohangcheck: - shard-mtlp: [FAIL][321] ([i915#9353]) -> [PASS][322] [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-mtlp-8/igt@gem_userptr_blits@nohangcheck.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-1/igt@gem_userptr_blits@nohangcheck.html * igt@gen9_exec_parse@allowed-all: - shard-apl: [INCOMPLETE][323] ([i915#5566]) -> [PASS][324] [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-apl1/igt@gen9_exec_parse@allowed-all.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-apl4/igt@gen9_exec_parse@allowed-all.html * igt@i915_pm_rc6_residency@rc6-idle@vecs0: - shard-dg1: [FAIL][325] ([i915#3591]) -> [PASS][326] +1 other test pass [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html * igt@i915_pm_rpm@modeset-non-lpsp: - shard-dg1: [SKIP][327] ([i915#1397]) -> [PASS][328] +1 other test pass [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-dg1-19/igt@i915_pm_rpm@modeset-non-lpsp.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-14/igt@i915_pm_rpm@modeset-non-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [SKIP][329] ([i915#1397]) -> [PASS][330] +1 other test pass [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-6/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg2: [SKIP][331] ([i915#1397]) -> [PASS][332] +2 other tests pass [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-dg2-10/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-2/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@i915_selftest@live@dmabuf: - shard-apl: [DMESG-FAIL][333] ([i915#7562]) -> [PASS][334] [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-apl1/igt@i915_selftest@live@dmabuf.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-apl6/igt@i915_selftest@live@dmabuf.html * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: [FAIL][335] ([fdo#103375]) -> [PASS][336] [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-2: - shard-glk: [FAIL][337] ([i915#2521]) -> [PASS][338] [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-glk1/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-2.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-glk1/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-2.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [FAIL][339] ([i915#5138]) -> [PASS][340] [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-tglu: [FAIL][341] ([i915#3743]) -> [PASS][342] +1 other test pass [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-tglu-10/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-tglu-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-b-vga-1: - shard-snb: [ABORT][343] ([i915#8865]) -> [PASS][344] [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-snb7/igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-b-vga-1.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-snb6/igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-b-vga-1.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-apl: [FAIL][345] ([i915#2346]) -> [PASS][346] [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_flip@flip-vs-suspend-interruptible@d-edp1: - shard-mtlp: [DMESG-WARN][347] ([i915#9262]) -> [PASS][348] +2 other tests pass [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-mtlp-4/igt@kms_flip@flip-vs-suspend-interruptible@d-edp1.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-mtlp-2/igt@kms_flip@flip-vs-suspend-interruptible@d-edp1.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite: - shard-dg2: [FAIL][349] ([i915#6880]) -> [PASS][350] [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html * {igt@kms_pm_dc@dc6-dpms}: - shard-tglu: [FAIL][351] ([i915#9295]) -> [PASS][352] [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-tglu-10/igt@kms_pm_dc@dc6-dpms.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-tglu-2/igt@kms_pm_dc@dc6-dpms.html * igt@kms_sysfs_edid_timing: - shard-dg2: [FAIL][353] ([IGT#2]) -> [PASS][354] [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-dg2-7/igt@kms_sysfs_edid_timing.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-11/igt@kms_sysfs_edid_timing.html * igt@kms_universal_plane@cursor-fb-leak-pipe-a: - shard-rkl: [FAIL][355] ([i915#9196]) -> [PASS][356] [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-rkl-6/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-4/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html * igt@kms_universal_plane@cursor-fb-leak-pipe-c: - shard-apl: [FAIL][357] ([i915#9196]) -> [PASS][358] [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-apl2/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-apl3/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html * igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend: - shard-dg2: [FAIL][359] ([fdo#103375]) -> [PASS][360] [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-dg2-5/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-6/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html * igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend: - shard-apl: [INCOMPLETE][361] -> [PASS][362] [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-apl6/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-apl4/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html * igt@perf_pmu@busy-idle-check-all@vcs0: - shard-dg2: [FAIL][363] ([i915#4521]) -> [PASS][364] +7 other tests pass [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-dg2-3/igt@perf_pmu@busy-idle-check-all@vcs0.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-5/igt@perf_pmu@busy-idle-check-all@vcs0.html * igt@perf_pmu@busy-idle-check-all@vecs0: - shard-dg1: [FAIL][365] ([i915#4521]) -> [PASS][366] +2 other tests pass [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-dg1-15/igt@perf_pmu@busy-idle-check-all@vecs0.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-17/igt@perf_pmu@busy-idle-check-all@vecs0.html #### Warnings #### * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: [ABORT][367] ([i915#7461]) -> [INCOMPLETE][368] ([i915#9283]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-dg2-7/igt@gem_create@create-ext-cpu-access-big.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-2/igt@gem_create@create-ext-cpu-access-big.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-tglu: [WARN][369] ([i915#2681]) -> [FAIL][370] ([i915#2681] / [i915#3591]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-tglu-3/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@kms_content_protection@mei_interface: - shard-dg1: [SKIP][371] ([fdo#109300]) -> [SKIP][372] ([i915#7116]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-dg1-16/igt@kms_content_protection@mei_interface.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-15/igt@kms_content_protection@mei_interface.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][373] ([i915#3955]) -> [SKIP][374] ([fdo#110189] / [i915#3955]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-2/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_flip@flip-vs-suspend@a-vga1: - shard-snb: [DMESG-FAIL][375] ([fdo#103375]) -> [DMESG-WARN][376] ([i915#8841]) +1 other test dmesg-warn [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-snb7/igt@kms_flip@flip-vs-suspend@a-vga1.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-snb4/igt@kms_flip@flip-vs-suspend@a-vga1.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: [SKIP][377] ([fdo#109285] / [i915#4098]) -> [SKIP][378] ([fdo#109285]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-rkl-4/igt@kms_force_connector_basic@force-load-detect.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-rkl-7/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_psr@cursor_plane_move: - shard-dg1: [SKIP][379] ([i915#1072]) -> [SKIP][380] ([i915#1072] / [i915#4078]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-dg1-19/igt@kms_psr@cursor_plane_move.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg1-13/igt@kms_psr@cursor_plane_move.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [INCOMPLETE][381] ([i915#5493]) -> [CRASH][382] ([i915#9351]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13667/shard-dg2-11/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/shard-dg2-10/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257 [i915#1339]: https://gitlab.freedesktop.org/drm/intel/issues/1339 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4521]: https://gitlab.freedesktop.org/drm/intel/issues/4521 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5978]: https://gitlab.freedesktop.org/drm/intel/issues/5978 [i915#6016]: https://gitlab.freedesktop.org/drm/intel/issues/6016 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6950]: https://gitlab.freedesktop.org/drm/intel/issues/6950 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7036]: https://gitlab.freedesktop.org/drm/intel/issues/7036 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7562]: https://gitlab.freedesktop.org/drm/intel/issues/7562 [i915#7582]: https://gitlab.freedesktop.org/drm/intel/issues/7582 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8346]: https://gitlab.freedesktop.org/drm/intel/issues/8346 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/intel/issues/8430 [i915#8440]: https://gitlab.freedesktop.org/drm/intel/issues/8440 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8617]: https://gitlab.freedesktop.org/drm/intel/issues/8617 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8823]: https://gitlab.freedesktop.org/drm/intel/iss == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9843/index.html [-- Attachment #2: Type: text/html, Size: 123671 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2023-09-22 22:07 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-09-22 1:36 [igt-dev] [PATCH] tests/amdgpu: add stable pstate tet Jesse Zhang 2023-09-22 1:56 ` [igt-dev] ✗ GitLab.Pipeline: warning for " Patchwork 2023-09-22 2:26 ` [igt-dev] ✓ CI.xeBAT: success " Patchwork 2023-09-22 2:30 ` [igt-dev] [PATCH] " Zhang, Jesse(Jie) 2023-09-22 2:34 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2023-09-22 3:03 ` [igt-dev] ✗ Fi.CI.BUILD: failure for tests/amdgpu: add stable pstate tet (rev2) Patchwork 2023-09-22 22:07 ` [igt-dev] ✗ Fi.CI.IGT: failure for tests/amdgpu: add stable pstate tet Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox