* [PATCH v1 0/3] drm/ci: add new devices for testing
@ 2024-10-04 13:31 Vignesh Raman
2024-10-04 13:31 ` [PATCH v1 1/3] drm/ci: refactor software-driver stage jobs Vignesh Raman
` (5 more replies)
0 siblings, 6 replies; 11+ messages in thread
From: Vignesh Raman @ 2024-10-04 13:31 UTC (permalink / raw)
To: dri-devel
Cc: daniels, helen.koike, airlied, daniel, robdclark, guilherme.gallo,
sergi.blanch.torne, deborah.brouwer, dmitry.baryshkov,
linux-arm-msm, intel-gfx, virtualization, linux-kernel
Add jobs that execute the IGT test suite for sm8350-hdk and dedede.
Also refactor software-driver stage jobs.
Successful pipeline link,
https://gitlab.freedesktop.org/vigneshraman/linux/-/pipelines/1283825
Once this patch series is reviewed, will send v2 with gitlab issues
link for flake tests.
Vignesh Raman (3):
drm/ci: refactor software-driver stage jobs
drm/ci: add dedede
drm/ci: add sm8350-hdk
drivers/gpu/drm/ci/arm64.config | 7 +-
drivers/gpu/drm/ci/build.sh | 1 +
drivers/gpu/drm/ci/test.yml | 84 ++++---
drivers/gpu/drm/ci/xfails/i915-jsl-fails.txt | 51 +++++
drivers/gpu/drm/ci/xfails/i915-jsl-flakes.txt | 13 ++
drivers/gpu/drm/ci/xfails/i915-jsl-skips.txt | 20 ++
.../drm/ci/xfails/msm-sm8350-hdk-fails.txt | 15 ++
.../drm/ci/xfails/msm-sm8350-hdk-flakes.txt | 6 +
.../drm/ci/xfails/msm-sm8350-hdk-skips.txt | 211 ++++++++++++++++++
9 files changed, 372 insertions(+), 36 deletions(-)
create mode 100644 drivers/gpu/drm/ci/xfails/i915-jsl-fails.txt
create mode 100644 drivers/gpu/drm/ci/xfails/i915-jsl-flakes.txt
create mode 100644 drivers/gpu/drm/ci/xfails/i915-jsl-skips.txt
create mode 100644 drivers/gpu/drm/ci/xfails/msm-sm8350-hdk-fails.txt
create mode 100644 drivers/gpu/drm/ci/xfails/msm-sm8350-hdk-flakes.txt
create mode 100644 drivers/gpu/drm/ci/xfails/msm-sm8350-hdk-skips.txt
--
2.43.0
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH v1 1/3] drm/ci: refactor software-driver stage jobs
2024-10-04 13:31 [PATCH v1 0/3] drm/ci: add new devices for testing Vignesh Raman
@ 2024-10-04 13:31 ` Vignesh Raman
2024-10-07 16:37 ` Daniel Stone
2024-10-04 13:31 ` [PATCH v1 2/3] drm/ci: add dedede Vignesh Raman
` (4 subsequent siblings)
5 siblings, 1 reply; 11+ messages in thread
From: Vignesh Raman @ 2024-10-04 13:31 UTC (permalink / raw)
To: dri-devel
Cc: daniels, helen.koike, airlied, daniel, robdclark, guilherme.gallo,
sergi.blanch.torne, deborah.brouwer, dmitry.baryshkov,
linux-arm-msm, intel-gfx, virtualization, linux-kernel
Move common job configuration for software-driver
stage jobs to seperate job.
Signed-off-by: Vignesh Raman <vignesh.raman@collabora.com>
---
drivers/gpu/drm/ci/test.yml | 59 +++++++++++++++----------------------
1 file changed, 24 insertions(+), 35 deletions(-)
diff --git a/drivers/gpu/drm/ci/test.yml b/drivers/gpu/drm/ci/test.yml
index 09d8447840e9..81472451ccd1 100644
--- a/drivers/gpu/drm/ci/test.yml
+++ b/drivers/gpu/drm/ci/test.yml
@@ -88,6 +88,26 @@
tags:
- $RUNNER_TAG
+.software-driver:
+ stage: software-driver
+ extends:
+ - .test-gl
+ - .test-rules
+ timeout: "1h30m"
+ tags:
+ - kvm
+ script:
+ - ln -sf $CI_PROJECT_DIR/install /install
+ - mv install/bzImage /lava-files/bzImage
+ - mkdir -p /lib/modules
+ - mkdir -p $CI_PROJECT_DIR/results
+ - ln -sf $CI_PROJECT_DIR/results /results
+ - install/crosvm-runner.sh install/igt_runner.sh
+ needs:
+ - debian/x86_64_test-gl
+ - testing:x86_64
+ - igt:x86_64
+
.msm-sc7180:
extends:
- .lava-igt:arm64
@@ -414,47 +434,16 @@ panfrost:g12b:
- .panfrost-gpu
virtio_gpu:none:
- stage: software-driver
- timeout: "1h30m"
+ extends:
+ - .software-driver
variables:
CROSVM_GALLIUM_DRIVER: llvmpipe
DRIVER_NAME: virtio_gpu
GPU_VERSION: none
- extends:
- - .test-gl
- - .test-rules
- tags:
- - kvm
- script:
- - ln -sf $CI_PROJECT_DIR/install /install
- - mv install/bzImage /lava-files/bzImage
- - mkdir -p $CI_PROJECT_DIR/results
- - ln -sf $CI_PROJECT_DIR/results /results
- - install/crosvm-runner.sh install/igt_runner.sh
- needs:
- - debian/x86_64_test-gl
- - testing:x86_64
- - igt:x86_64
vkms:none:
- stage: software-driver
- timeout: "1h30m"
+ extends:
+ - .software-driver
variables:
DRIVER_NAME: vkms
GPU_VERSION: none
- extends:
- - .test-gl
- - .test-rules
- tags:
- - kvm
- script:
- - ln -sf $CI_PROJECT_DIR/install /install
- - mv install/bzImage /lava-files/bzImage
- - mkdir -p /lib/modules
- - mkdir -p $CI_PROJECT_DIR/results
- - ln -sf $CI_PROJECT_DIR/results /results
- - ./install/crosvm-runner.sh ./install/igt_runner.sh
- needs:
- - debian/x86_64_test-gl
- - testing:x86_64
- - igt:x86_64
--
2.43.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH v1 2/3] drm/ci: add dedede
2024-10-04 13:31 [PATCH v1 0/3] drm/ci: add new devices for testing Vignesh Raman
2024-10-04 13:31 ` [PATCH v1 1/3] drm/ci: refactor software-driver stage jobs Vignesh Raman
@ 2024-10-04 13:31 ` Vignesh Raman
2024-10-04 13:31 ` [PATCH v1 3/3] drm/ci: add sm8350-hdk Vignesh Raman
` (3 subsequent siblings)
5 siblings, 0 replies; 11+ messages in thread
From: Vignesh Raman @ 2024-10-04 13:31 UTC (permalink / raw)
To: dri-devel
Cc: daniels, helen.koike, airlied, daniel, robdclark, guilherme.gallo,
sergi.blanch.torne, deborah.brouwer, dmitry.baryshkov,
linux-arm-msm, intel-gfx, virtualization, linux-kernel
Add job that executes the IGT test suite for acer-cb317-1h-c3z6-dedede.
dedede boards use 64 bit Intel Jasper Lake processors.
Signed-off-by: Vignesh Raman <vignesh.raman@collabora.com>
---
drivers/gpu/drm/ci/test.yml | 9 ++++
drivers/gpu/drm/ci/xfails/i915-jsl-fails.txt | 51 +++++++++++++++++++
drivers/gpu/drm/ci/xfails/i915-jsl-flakes.txt | 13 +++++
drivers/gpu/drm/ci/xfails/i915-jsl-skips.txt | 20 ++++++++
4 files changed, 93 insertions(+)
create mode 100644 drivers/gpu/drm/ci/xfails/i915-jsl-fails.txt
create mode 100644 drivers/gpu/drm/ci/xfails/i915-jsl-flakes.txt
create mode 100644 drivers/gpu/drm/ci/xfails/i915-jsl-skips.txt
diff --git a/drivers/gpu/drm/ci/test.yml b/drivers/gpu/drm/ci/test.yml
index 81472451ccd1..3f50750be1c9 100644
--- a/drivers/gpu/drm/ci/test.yml
+++ b/drivers/gpu/drm/ci/test.yml
@@ -306,6 +306,15 @@ i915:tgl:
GPU_VERSION: tgl
RUNNER_TAG: mesa-ci-x86-64-lava-acer-cp514-2h-1130g7-volteer
+i915:jsl:
+ extends:
+ - .i915
+ parallel: 4
+ variables:
+ DEVICE_TYPE: acer-cb317-1h-c3z6-dedede
+ GPU_VERSION: jsl
+ RUNNER_TAG: mesa-ci-x86-64-lava-acer-cb317-1h-c3z6-dedede
+
.amdgpu:
extends:
- .lava-igt:x86_64
diff --git a/drivers/gpu/drm/ci/xfails/i915-jsl-fails.txt b/drivers/gpu/drm/ci/xfails/i915-jsl-fails.txt
new file mode 100644
index 000000000000..ed9f7b576843
--- /dev/null
+++ b/drivers/gpu/drm/ci/xfails/i915-jsl-fails.txt
@@ -0,0 +1,51 @@
+core_setmaster@master-drop-set-user,Fail
+i915_module_load@load,Fail
+i915_module_load@reload,Fail
+i915_module_load@reload-no-display,Fail
+i915_module_load@resize-bar,Fail
+i915_pm_rpm@gem-execbuf-stress,Timeout
+i915_pm_rpm@module-reload,Fail
+kms_flip@plain-flip-fb-recreate,Fail
+kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling,Fail
+kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling,Fail
+kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling,Fail
+kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling,Fail
+kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling,Fail
+kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling,Fail
+kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling,Fail
+kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling,Fail
+kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-upscaling,Fail
+kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling,Fail
+kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling,Fail
+kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling,Fail
+kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling,Fail
+kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling,Fail
+kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling,Fail
+kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling,Fail
+kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling,Fail
+kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling,Fail
+kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling,Fail
+kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling,Fail
+kms_lease@lease-uevent,Fail
+kms_pm_rpm@legacy-planes,Timeout
+kms_pm_rpm@legacy-planes-dpms,Timeout
+kms_pm_rpm@modeset-stress-extra-wait,Timeout
+kms_pm_rpm@universal-planes,Timeout
+kms_pm_rpm@universal-planes-dpms,Timeout
+kms_rotation_crc@multiplane-rotation,Fail
+kms_rotation_crc@multiplane-rotation-cropping-bottom,Fail
+kms_rotation_crc@multiplane-rotation-cropping-top,Fail
+perf@i915-ref-count,Fail
+perf_pmu@busy-accuracy-50,Fail
+perf_pmu@module-unload,Fail
+perf_pmu@most-busy-idle-check-all,Fail
+perf_pmu@rc6,Crash
+sysfs_heartbeat_interval@long,Timeout
+sysfs_heartbeat_interval@off,Timeout
+sysfs_preempt_timeout@off,Timeout
+sysfs_timeslice_duration@off,Timeout
+xe_module_load@force-load,Fail
+xe_module_load@load,Fail
+xe_module_load@many-reload,Fail
+xe_module_load@reload,Fail
+xe_module_load@reload-no-display,Fail
diff --git a/drivers/gpu/drm/ci/xfails/i915-jsl-flakes.txt b/drivers/gpu/drm/ci/xfails/i915-jsl-flakes.txt
new file mode 100644
index 000000000000..325d23612f5e
--- /dev/null
+++ b/drivers/gpu/drm/ci/xfails/i915-jsl-flakes.txt
@@ -0,0 +1,13 @@
+# Board Name: acer-cb317-1h-c3z6-dedede
+# Bug Report:
+# Failure Rate: 100
+# IGT Version: 1.28-ga73311079
+# Linux Version: 6.12.0-rc1
+kms_flip@flip-vs-panning-interruptible
+
+# Board Name: acer-cb317-1h-c3z6-dedede
+# Bug Report:
+# Failure Rate: 100
+# IGT Version: 1.28-ga73311079
+# Linux Version: 6.12.0-rc1
+kms_universal_plane@cursor-fb-leak
diff --git a/drivers/gpu/drm/ci/xfails/i915-jsl-skips.txt b/drivers/gpu/drm/ci/xfails/i915-jsl-skips.txt
new file mode 100644
index 000000000000..1a3d87c0ca6e
--- /dev/null
+++ b/drivers/gpu/drm/ci/xfails/i915-jsl-skips.txt
@@ -0,0 +1,20 @@
+# Suspend to RAM seems to be broken on this machine
+.*suspend.*
+
+# Skip driver specific tests
+^amdgpu.*
+^msm.*
+nouveau_.*
+^panfrost.*
+^v3d.*
+^vc4.*
+^vmwgfx*
+
+# GEM tests takes ~1000 hours, so skip it
+gem_.*
+
+# trap_err
+i915_pm_rc6_residency.*
+
+# Hangs the machine and timeout occurs
+i915_pm_rpm@system-hibernate*
--
2.43.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH v1 3/3] drm/ci: add sm8350-hdk
2024-10-04 13:31 [PATCH v1 0/3] drm/ci: add new devices for testing Vignesh Raman
2024-10-04 13:31 ` [PATCH v1 1/3] drm/ci: refactor software-driver stage jobs Vignesh Raman
2024-10-04 13:31 ` [PATCH v1 2/3] drm/ci: add dedede Vignesh Raman
@ 2024-10-04 13:31 ` Vignesh Raman
2024-10-06 19:46 ` Dmitry Baryshkov
2024-10-09 19:40 ` Abhinav Kumar
2024-10-08 0:46 ` ✗ Fi.CI.CHECKPATCH: warning for drm/ci: add new devices for testing Patchwork
` (2 subsequent siblings)
5 siblings, 2 replies; 11+ messages in thread
From: Vignesh Raman @ 2024-10-04 13:31 UTC (permalink / raw)
To: dri-devel
Cc: daniels, helen.koike, airlied, daniel, robdclark, guilherme.gallo,
sergi.blanch.torne, deborah.brouwer, dmitry.baryshkov,
linux-arm-msm, intel-gfx, virtualization, linux-kernel
Add job that executes the IGT test suite for sm8350-hdk.
Signed-off-by: Vignesh Raman <vignesh.raman@collabora.com>
---
drivers/gpu/drm/ci/arm64.config | 7 +-
drivers/gpu/drm/ci/build.sh | 1 +
drivers/gpu/drm/ci/test.yml | 16 ++
.../drm/ci/xfails/msm-sm8350-hdk-fails.txt | 15 ++
.../drm/ci/xfails/msm-sm8350-hdk-flakes.txt | 6 +
.../drm/ci/xfails/msm-sm8350-hdk-skips.txt | 211 ++++++++++++++++++
6 files changed, 255 insertions(+), 1 deletion(-)
create mode 100644 drivers/gpu/drm/ci/xfails/msm-sm8350-hdk-fails.txt
create mode 100644 drivers/gpu/drm/ci/xfails/msm-sm8350-hdk-flakes.txt
create mode 100644 drivers/gpu/drm/ci/xfails/msm-sm8350-hdk-skips.txt
diff --git a/drivers/gpu/drm/ci/arm64.config b/drivers/gpu/drm/ci/arm64.config
index 66e70ced796f..a8fca079921b 100644
--- a/drivers/gpu/drm/ci/arm64.config
+++ b/drivers/gpu/drm/ci/arm64.config
@@ -90,7 +90,12 @@ CONFIG_QCOM_GPI_DMA=y
CONFIG_USB_ONBOARD_DEV=y
CONFIG_NVMEM_QCOM_QFPROM=y
CONFIG_PHY_QCOM_USB_SNPS_FEMTO_V2=y
-
+CONFIG_REGULATOR_QCOM_REFGEN=y
+CONFIG_TYPEC_MUX_FSA4480=y
+CONFIG_QCOM_PMIC_GLINK=y
+CONFIG_UCSI_PMIC_GLINK=y
+CONFIG_QRTR=y
+CONFIG_QRTR_SMD=y
# db410c ethernet
CONFIG_USB_RTL8152=y
diff --git a/drivers/gpu/drm/ci/build.sh b/drivers/gpu/drm/ci/build.sh
index 5a3bdcffae32..139b81db6312 100644
--- a/drivers/gpu/drm/ci/build.sh
+++ b/drivers/gpu/drm/ci/build.sh
@@ -30,6 +30,7 @@ if [[ "$KERNEL_ARCH" = "arm64" ]]; then
DEVICE_TREES+=" arch/arm64/boot/dts/mediatek/mt8192-asurada-spherion-r0.dtb"
DEVICE_TREES+=" arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r5.dtb"
DEVICE_TREES+=" arch/arm64/boot/dts/qcom/sc7180-trogdor-kingoftown.dtb"
+ DEVICE_TREES+=" arch/arm64/boot/dts/qcom/sm8350-hdk.dtb"
elif [[ "$KERNEL_ARCH" = "arm" ]]; then
GCC_ARCH="arm-linux-gnueabihf"
DEBIAN_ARCH="armhf"
diff --git a/drivers/gpu/drm/ci/test.yml b/drivers/gpu/drm/ci/test.yml
index 3f50750be1c9..0c360f805019 100644
--- a/drivers/gpu/drm/ci/test.yml
+++ b/drivers/gpu/drm/ci/test.yml
@@ -182,6 +182,22 @@ msm:sdm845:
script:
- ./install/bare-metal/cros-servo.sh
+msm:sm8350-hdk:
+ extends:
+ - .lava-igt:arm64
+ stage: msm
+ parallel: 4
+ variables:
+ BOOT_METHOD: fastboot
+ DEVICE_TYPE: sm8350-hdk
+ DRIVER_NAME: msm
+ DTB: ${DEVICE_TYPE}
+ FARM: collabora
+ GPU_VERSION: ${DEVICE_TYPE}
+ KERNEL_IMAGE_NAME: "Image.gz"
+ KERNEL_IMAGE_TYPE: ""
+ RUNNER_TAG: mesa-ci-x86-64-lava-sm8350-hdk
+
.rockchip-device:
variables:
DTB: ${DEVICE_TYPE}
diff --git a/drivers/gpu/drm/ci/xfails/msm-sm8350-hdk-fails.txt b/drivers/gpu/drm/ci/xfails/msm-sm8350-hdk-fails.txt
new file mode 100644
index 000000000000..4892c0c70a6d
--- /dev/null
+++ b/drivers/gpu/drm/ci/xfails/msm-sm8350-hdk-fails.txt
@@ -0,0 +1,15 @@
+kms_3d,Fail
+kms_cursor_legacy@forked-bo,Fail
+kms_cursor_legacy@forked-move,Fail
+kms_cursor_legacy@single-bo,Fail
+kms_cursor_legacy@single-move,Fail
+kms_cursor_legacy@torture-bo,Fail
+kms_cursor_legacy@torture-move,Fail
+kms_hdmi_inject@inject-4k,Fail
+kms_lease@lease-uevent,Fail
+kms_plane_alpha_blend@alpha-7efc,Fail
+kms_plane_alpha_blend@alpha-basic,Fail
+kms_plane_alpha_blend@alpha-opaque-fb,Fail
+kms_plane_alpha_blend@alpha-transparent-fb,Fail
+kms_plane_alpha_blend@constant-alpha-max,Fail
+msm/msm_recovery@gpu-fault-parallel,Fail
diff --git a/drivers/gpu/drm/ci/xfails/msm-sm8350-hdk-flakes.txt b/drivers/gpu/drm/ci/xfails/msm-sm8350-hdk-flakes.txt
new file mode 100644
index 000000000000..b0a7567c1b86
--- /dev/null
+++ b/drivers/gpu/drm/ci/xfails/msm-sm8350-hdk-flakes.txt
@@ -0,0 +1,6 @@
+# Board Name: sm8350-hdk
+# Bug Report:
+# Failure Rate: 100
+# IGT Version: 1.28-ga73311079
+# Linux Version: 6.12.0-rc1
+kms_selftest@drm_plane_helper
diff --git a/drivers/gpu/drm/ci/xfails/msm-sm8350-hdk-skips.txt b/drivers/gpu/drm/ci/xfails/msm-sm8350-hdk-skips.txt
new file mode 100644
index 000000000000..329770c520d9
--- /dev/null
+++ b/drivers/gpu/drm/ci/xfails/msm-sm8350-hdk-skips.txt
@@ -0,0 +1,211 @@
+# Skip driver specific tests
+^amdgpu.*
+nouveau_.*
+^panfrost.*
+^v3d.*
+^vc4.*
+^vmwgfx*
+
+# Skip intel specific tests
+gem_.*
+i915_.*
+tools_test.*
+
+# Currently fails and causes coverage loss for other tests
+# since core_getversion also fails.
+core_hotunplug.*
+
+# Kernel panic
+msm/msm_mapping@ring
+# DEBUG - Begin test msm/msm_mapping@ring
+# [ 200.874157] [IGT] msm_mapping: executing
+# [ 200.880236] [IGT] msm_mapping: starting subtest ring
+# [ 200.895243] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=PERMISSION source=CP (0,0,0,1)
+# [ 200.906885] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 200.917625] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 200.928353] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 200.939084] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 200.949815] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 200.950227] platform 3d6a000.gmu: [drm:a6xx_hfi_send_msg.constprop.0] *ERROR* Message HFI_H2F_MSG_GX_BW_PERF_VOTE id 25 timed out waiting for response
+# [ 200.960467] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 200.960500] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 200.995966] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 201.006702] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 204.213387] platform 3d6a000.gmu: GMU watchdog expired
+# [ 205.909103] adreno_fault_handler: 224274 callbacks suppressed
+# [ 205.909108] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 205.925794] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 205.936529] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 205.947263] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 205.957997] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 205.968731] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 205.979465] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 205.990199] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 206.000932] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 206.011666] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 210.925090] adreno_fault_handler: 224511 callbacks suppressed
+# [ 210.925096] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 210.941781] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 210.952517] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 210.963250] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 210.973985] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 210.984719] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 210.995452] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 211.006186] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 211.016921] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 211.027655] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 215.937100] adreno_fault_handler: 223760 callbacks suppressed
+# [ 215.937106] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 215.953824] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 215.964573] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 215.975321] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 215.986067] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 215.996815] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 216.007563] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 216.018310] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 216.029057] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 216.039805] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 220.945182] adreno_fault_handler: 222822 callbacks suppressed
+# [ 220.945188] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 220.961897] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 220.972645] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 220.983392] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 220.994140] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 221.004889] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 221.015636] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 221.026383] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 221.037130] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 221.047879] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 225.953179] adreno_fault_handler: 223373 callbacks suppressed
+# [ 225.953184] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 225.969883] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 225.980617] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 225.991350] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 226.002084] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 226.012818] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 226.023551] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 226.034285] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 226.045019] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 226.055753] *** gpu fault: ttbr0=00000001160d6000 iova=0001000000001000 dir=WRITE type=UNKNOWN source=CP (0,0,0,1)
+# [ 228.001087] rcu: INFO: rcu_preempt detected stalls on CPUs/tasks:
+# [ 228.007412] rcu: 0-....: (524 ticks this GP) idle=4ffc/1/0x4000000000000000 softirq=9367/9368 fqs=29
+# [ 228.017097] rcu: (detected by 1, t=6504 jiffies, g=29837, q=6 ncpus=8)
+# [ 228.023959] Sending NMI from CPU 1 to CPUs 0:
+# [ 228.161164] watchdog: BUG: soft lockup - CPU#0 stuck for 26s! [gpu-worker:150]
+# [ 228.173169] Modules linked in:
+# [ 228.176361] irq event stamp: 2809595
+# [ 228.180083] hardirqs last enabled at (2809594): [<ffffd3bc52cb91ac>] exit_to_kernel_mode+0x38/0x130
+# [ 228.189547] hardirqs last disabled at (2809595): [<ffffd3bc52cb92c8>] el1_interrupt+0x24/0x64
+# [ 228.198377] softirqs last enabled at (1669060): [<ffffd3bc51936f98>] handle_softirqs+0x4a4/0x4bc
+# [ 228.207565] softirqs last disabled at (1669063): [<ffffd3bc518905a4>] __do_softirq+0x14/0x20
+# [ 228.216316] CPU: 0 UID: 0 PID: 150 Comm: gpu-worker Not tainted 6.12.0-rc1-g685d530dc83a #1
+# [ 228.224966] Hardware name: Qualcomm Technologies, Inc. SM8350 HDK (DT)
+# [ 228.231730] pstate: 00400005 (nzcv daif +PAN -UAO -TCO -DIT -SSBS BTYPE=--)
+# [ 228.238948] pc : tcp_fastretrans_alert+0x0/0x884
+# [ 228.243751] lr : tcp_ack+0x9d4/0x1238
+# [ 228.247562] sp : ffff8000800036d0
+# [ 228.251011] x29: ffff8000800036d0 x28: 000000000000000c x27: 0000000000000001
+# [ 228.258421] x26: ffff704683cd8000 x25: 0000000000000403 x24: ffff70468b7e7c00
+# [ 228.265829] x23: 0000000000000000 x22: 0000000000000004 x21: 000000000000140f
+# [ 228.273237] x20: 00000000f1de79f7 x19: 00000000f1de7a5f x18: 0000000000000001
+# [ 228.280644] x17: 00000000302d6762 x16: 632d6b64682d3035 x15: ffff704683c39000
+# [ 228.288051] x14: 00000000000e2000 x13: ffff704683df6000 x12: 0000000000000000
+# [ 228.295458] x11: 00000000000000a0 x10: 0000000000000000 x9 : ffffd3bc551a9a20
+# [ 228.302865] x8 : ffff800080003640 x7 : 0000000000040faa x6 : 00000000ffff9634
+# [ 228.310271] x5 : 00000000000005a8 x4 : ffff800080003788 x3 : ffff80008000377c
+# [ 228.317679] x2 : 0000000000000000 x1 : 00000000f1de79f7 x0 : ffff704683cd8000
+# [ 228.325087] Call trace:
+# [ 228.327640] tcp_fastretrans_alert+0x0/0x884
+# [ 228.332082] tcp_rcv_established+0x7c4/0x8bc
+# [ 228.336523] tcp_v4_do_rcv+0x244/0x31c
+# [ 228.340429] tcp_v4_rcv+0xcc4/0x1084
+# [ 228.344155] ip_protocol_deliver_rcu+0x64/0x218
+# [ 228.348862] ip_local_deliver_finish+0xb8/0x1ac
+# [ 228.353566] ip_local_deliver+0x84/0x254
+# [ 228.357651] ip_sublist_rcv_finish+0x84/0xb8
+# [ 228.362092] ip_sublist_rcv+0x11c/0x2f0
+# [ 228.366081] ip_list_rcv+0xfc/0x190
+# [ 228.369711] __netif_receive_skb_list_core+0x174/0x208
+# [ 228.375050] netif_receive_skb_list_internal+0x204/0x3ac
+# [ 228.380564] napi_complete_done+0x64/0x1d0
+# [ 228.384826] lan78xx_poll+0x71c/0x9cc
+# [ 228.388638] __napi_poll.constprop.0+0x3c/0x254
+# [ 228.393341] net_rx_action+0x164/0x2d4
+# [ 228.397244] handle_softirqs+0x128/0x4bc
+# [ 228.401329] __do_softirq+0x14/0x20
+# [ 228.404958] ____do_softirq+0x10/0x1c
+# [ 228.408769] call_on_irq_stack+0x24/0x4c
+# [ 228.412854] do_softirq_own_stack+0x1c/0x28
+# [ 228.417199] __irq_exit_rcu+0x124/0x164
+# [ 228.421188] irq_exit_rcu+0x10/0x38
+# [ 228.424819] el1_interrupt+0x38/0x64
+# [ 228.428546] el1h_64_irq_handler+0x18/0x24
+# [ 228.432807] el1h_64_irq+0x64/0x68
+# [ 228.436354] lock_acquire+0x214/0x32c
+# [ 228.440166] __mutex_lock+0x98/0x3d0
+# [ 228.443893] mutex_lock_nested+0x24/0x30
+# [ 228.447978] fault_worker+0x58/0x184
+# [ 228.451704] kthread_worker_fn+0xf4/0x320
+# [ 228.455873] kthread+0x114/0x118
+# [ 228.459243] ret_from_fork+0x10/0x20
+# [ 228.462970] Kernel panic - not syncing: softlockup: hung tasks
+# [ 228.469018] CPU: 0 UID: 0 PID: 150 Comm: gpu-worker Tainted: G L 6.12.0-rc1-g685d530dc83a #1
+# [ 228.479190] Tainted: [L]=SOFTLOCKUP
+# [ 228.482815] Hardware name: Qualcomm Technologies, Inc. SM8350 HDK (DT)
+# [ 228.489574] Call trace:
+# [ 228.492125] dump_backtrace+0x98/0xf0
+# [ 228.495931] show_stack+0x18/0x24
+# [ 228.499380] dump_stack_lvl+0x38/0xd0
+# [ 228.503189] dump_stack+0x18/0x24
+# [ 228.506639] panic+0x3bc/0x41c
+# [ 228.509826] watchdog_timer_fn+0x254/0x2e4
+# [ 228.514087] __hrtimer_run_queues+0x3b0/0x40c
+# [ 228.518612] hrtimer_interrupt+0xe8/0x248
+# [ 228.522777] arch_timer_handler_virt+0x2c/0x44
+# [ 228.527399] handle_percpu_devid_irq+0xa8/0x2c4
+# [ 228.532103] generic_handle_domain_irq+0x2c/0x44
+# [ 228.536902] gic_handle_irq+0x4c/0x11c
+# [ 228.540802] do_interrupt_handler+0x50/0x84
+# [ 228.545146] el1_interrupt+0x34/0x64
+# [ 228.548870] el1h_64_irq_handler+0x18/0x24
+# [ 228.553128] el1h_64_irq+0x64/0x68
+# [ 228.556672] tcp_fastretrans_alert+0x0/0x884
+# [ 228.561110] tcp_rcv_established+0x7c4/0x8bc
+# [ 228.565548] tcp_v4_do_rcv+0x244/0x31c
+# [ 228.569449] tcp_v4_rcv+0xcc4/0x1084
+# [ 228.573171] ip_protocol_deliver_rcu+0x64/0x218
+# [ 228.577873] ip_local_deliver_finish+0xb8/0x1ac
+# [ 228.582574] ip_local_deliver+0x84/0x254
+# [ 228.586655] ip_sublist_rcv_finish+0x84/0xb8
+# [ 228.591092] ip_sublist_rcv+0x11c/0x2f0
+# [ 228.595079] ip_list_rcv+0xfc/0x190
+# [ 228.598706] __netif_receive_skb_list_core+0x174/0x208
+# [ 228.604039] netif_receive_skb_list_internal+0x204/0x3ac
+# [ 228.609549] napi_complete_done+0x64/0x1d0
+# [ 228.613808] lan78xx_poll+0x71c/0x9cc
+# [ 228.617614] __napi_poll.constprop.0+0x3c/0x254
+# [ 228.622314] net_rx_action+0x164/0x2d4
+# [ 228.626214] handle_softirqs+0x128/0x4bc
+# [ 228.630297] __do_softirq+0x14/0x20
+# [ 228.633923] ____do_softirq+0x10/0x1c
+# [ 228.637729] call_on_irq_stack+0x24/0x4c
+# [ 228.641811] do_softirq_own_stack+0x1c/0x28
+# [ 228.646152] __irq_exit_rcu+0x124/0x164
+# [ 228.650139] irq_exit_rcu+0x10/0x38
+# [ 228.653768] el1_interrupt+0x38/0x64
+# [ 228.657491] el1h_64_irq_handler+0x18/0x24
+# [ 228.661750] el1h_64_irq+0x64/0x68
+# [ 228.665293] lock_acquire+0x214/0x32c
+# [ 228.669098] __mutex_lock+0x98/0x3d0
+# [ 228.672821] mutex_lock_nested+0x24/0x30
+# [ 228.676903] fault_worker+0x58/0x184
+# [ 228.680626] kthread_worker_fn+0xf4/0x320
+# [ 228.684790] kthread+0x114/0x118
+# [ 228.688156] ret_from_fork+0x10/0x20
+# [ 228.691882] SMP: stopping secondary CPUs
+# [ 229.736843] SMP: failed to stop secondary CPUs 1,4
+# [ 229.741827] Kernel Offset: 0x53bbd1880000 from 0xffff800080000000
+# [ 229.748159] PHYS_OFFSET: 0xfff08fba80000000
+# [ 229.752499] CPU features: 0x18,00000017,00200928,4200720b
+# [ 229.758095] Memory Limit: none
+# [ 229.761291] ---[ end Kernel panic - not syncing: softlockup: hung tasks ]---
--
2.43.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH v1 3/3] drm/ci: add sm8350-hdk
2024-10-04 13:31 ` [PATCH v1 3/3] drm/ci: add sm8350-hdk Vignesh Raman
@ 2024-10-06 19:46 ` Dmitry Baryshkov
2024-10-09 19:40 ` Abhinav Kumar
1 sibling, 0 replies; 11+ messages in thread
From: Dmitry Baryshkov @ 2024-10-06 19:46 UTC (permalink / raw)
To: Vignesh Raman
Cc: dri-devel, daniels, helen.koike, airlied, daniel, robdclark,
guilherme.gallo, sergi.blanch.torne, deborah.brouwer,
linux-arm-msm, intel-gfx, virtualization, linux-kernel
On Fri, Oct 04, 2024 at 07:01:20PM GMT, Vignesh Raman wrote:
> Add job that executes the IGT test suite for sm8350-hdk.
>
> Signed-off-by: Vignesh Raman <vignesh.raman@collabora.com>
> ---
> drivers/gpu/drm/ci/arm64.config | 7 +-
> drivers/gpu/drm/ci/build.sh | 1 +
> drivers/gpu/drm/ci/test.yml | 16 ++
> .../drm/ci/xfails/msm-sm8350-hdk-fails.txt | 15 ++
> .../drm/ci/xfails/msm-sm8350-hdk-flakes.txt | 6 +
> .../drm/ci/xfails/msm-sm8350-hdk-skips.txt | 211 ++++++++++++++++++
> 6 files changed, 255 insertions(+), 1 deletion(-)
> create mode 100644 drivers/gpu/drm/ci/xfails/msm-sm8350-hdk-fails.txt
> create mode 100644 drivers/gpu/drm/ci/xfails/msm-sm8350-hdk-flakes.txt
> create mode 100644 drivers/gpu/drm/ci/xfails/msm-sm8350-hdk-skips.txt
>
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
--
With best wishes
Dmitry
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v1 1/3] drm/ci: refactor software-driver stage jobs
2024-10-04 13:31 ` [PATCH v1 1/3] drm/ci: refactor software-driver stage jobs Vignesh Raman
@ 2024-10-07 16:37 ` Daniel Stone
2024-10-22 7:25 ` Vignesh Raman
0 siblings, 1 reply; 11+ messages in thread
From: Daniel Stone @ 2024-10-07 16:37 UTC (permalink / raw)
To: Vignesh Raman
Cc: dri-devel, daniels, helen.koike, airlied, daniel, robdclark,
guilherme.gallo, sergi.blanch.torne, deborah.brouwer,
dmitry.baryshkov, linux-arm-msm, intel-gfx, virtualization,
linux-kernel
Hi Vignesh,
On Fri, 4 Oct 2024 at 09:31, Vignesh Raman <vignesh.raman@collabora.com> wrote:
> +.software-driver:
> + stage: software-driver
> + extends:
> + - .test-gl
> + - .test-rules
> + timeout: "1h30m"
> + tags:
> + - kvm
> + script:
> + - ln -sf $CI_PROJECT_DIR/install /install
> + - mv install/bzImage /lava-files/bzImage
> + - mkdir -p /lib/modules
> + - mkdir -p $CI_PROJECT_DIR/results
> + - ln -sf $CI_PROJECT_DIR/results /results
> + - install/crosvm-runner.sh install/igt_runner.sh
Instead of inlining this here, can we please move towards reusing more
of .gitlab-ci/common/init-stage[12].sh? If those files need to be
modified then that's totally fine, but I'd rather have something more
predictable, and fewer random pieces of shell in each job section.
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ Fi.CI.CHECKPATCH: warning for drm/ci: add new devices for testing
2024-10-04 13:31 [PATCH v1 0/3] drm/ci: add new devices for testing Vignesh Raman
` (2 preceding siblings ...)
2024-10-04 13:31 ` [PATCH v1 3/3] drm/ci: add sm8350-hdk Vignesh Raman
@ 2024-10-08 0:46 ` Patchwork
2024-10-08 0:55 ` ✓ Fi.CI.BAT: success " Patchwork
2024-10-09 1:56 ` ✗ Fi.CI.IGT: failure " Patchwork
5 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-10-08 0:46 UTC (permalink / raw)
To: Vignesh Raman; +Cc: intel-gfx
== Series Details ==
Series: drm/ci: add new devices for testing
URL : https://patchwork.freedesktop.org/series/139562/
State : warning
== Summary ==
Error: dim checkpatch failed
bc332a06dbaa drm/ci: refactor software-driver stage jobs
-:7: WARNING:TYPO_SPELLING: 'seperate' may be misspelled - perhaps 'separate'?
#7:
stage jobs to seperate job.
^^^^^^^^
total: 0 errors, 1 warnings, 0 checks, 61 lines checked
287397979562 drm/ci: add dedede
-:32: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#32:
new file mode 100644
total: 0 errors, 1 warnings, 0 checks, 99 lines checked
5af017a84b6a drm/ci: add sm8350-hdk
-:69: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#69:
new file mode 100644
total: 0 errors, 1 warnings, 0 checks, 274 lines checked
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Fi.CI.BAT: success for drm/ci: add new devices for testing
2024-10-04 13:31 [PATCH v1 0/3] drm/ci: add new devices for testing Vignesh Raman
` (3 preceding siblings ...)
2024-10-08 0:46 ` ✗ Fi.CI.CHECKPATCH: warning for drm/ci: add new devices for testing Patchwork
@ 2024-10-08 0:55 ` Patchwork
2024-10-09 1:56 ` ✗ Fi.CI.IGT: failure " Patchwork
5 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-10-08 0:55 UTC (permalink / raw)
To: Vignesh Raman; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 5670 bytes --]
== Series Details ==
Series: drm/ci: add new devices for testing
URL : https://patchwork.freedesktop.org/series/139562/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_15488 -> Patchwork_139562v1
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/index.html
Participating hosts (42 -> 43)
------------------------------
Additional (1): bat-rpls-4
Known issues
------------
Here are the changes found in Patchwork_139562v1 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-rpls-4: NOTRUN -> [SKIP][1] ([i915#9318])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/bat-rpls-4/igt@debugfs_test@basic-hwmon.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-rpls-4: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/bat-rpls-4/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_tiled_pread_basic:
- bat-rpls-4: NOTRUN -> [SKIP][3] ([i915#3282])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/bat-rpls-4/igt@gem_tiled_pread_basic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-rpls-4: NOTRUN -> [SKIP][4] ([i915#4103]) +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/bat-rpls-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-rpls-4: NOTRUN -> [SKIP][5] ([i915#3555] / [i915#3840] / [i915#9886])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/bat-rpls-4/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-rpls-4: NOTRUN -> [SKIP][6]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/bat-rpls-4/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_pipe_crc_basic@nonblocking-crc:
- bat-arls-5: [PASS][7] -> [SKIP][8] ([i915#11346]) +3 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/bat-arls-5/igt@kms_pipe_crc_basic@nonblocking-crc.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/bat-arls-5/igt@kms_pipe_crc_basic@nonblocking-crc.html
* igt@kms_pm_backlight@basic-brightness:
- bat-rpls-4: NOTRUN -> [SKIP][9] ([i915#5354])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/bat-rpls-4/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-primary-page-flip:
- bat-rpls-4: NOTRUN -> [SKIP][10] ([i915#1072] / [i915#9732]) +3 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/bat-rpls-4/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-rpls-4: NOTRUN -> [SKIP][11] ([i915#3555])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/bat-rpls-4/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-read:
- bat-rpls-4: NOTRUN -> [SKIP][12] ([i915#3708]) +2 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/bat-rpls-4/igt@prime_vgem@basic-read.html
#### Warnings ####
* igt@core_hotunplug@unbind-rebind:
- bat-apl-1: [DMESG-WARN][13] ([i915#180]) -> [DMESG-WARN][14] ([i915#180] / [i915#1982])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/bat-apl-1/igt@core_hotunplug@unbind-rebind.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/bat-apl-1/igt@core_hotunplug@unbind-rebind.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133
[i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886
Build changes
-------------
* Linux: CI_DRM_15488 -> Patchwork_139562v1
CI-20190529: 20190529
CI_DRM_15488: e11d55841ddeeb378c8850fca72eb6a270aafd79 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8054: 3f627b7fd48c6ab324ceaa80dd8cf0131292bf63 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_139562v1: e11d55841ddeeb378c8850fca72eb6a270aafd79 @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/index.html
[-- Attachment #2: Type: text/html, Size: 6554 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ Fi.CI.IGT: failure for drm/ci: add new devices for testing
2024-10-04 13:31 [PATCH v1 0/3] drm/ci: add new devices for testing Vignesh Raman
` (4 preceding siblings ...)
2024-10-08 0:55 ` ✓ Fi.CI.BAT: success " Patchwork
@ 2024-10-09 1:56 ` Patchwork
5 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-10-09 1:56 UTC (permalink / raw)
To: Vignesh Raman; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 96383 bytes --]
== Series Details ==
Series: drm/ci: add new devices for testing
URL : https://patchwork.freedesktop.org/series/139562/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15488_full -> Patchwork_139562v1_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_139562v1_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_139562v1_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (9 -> 8)
------------------------------
Missing (1): shard-glk-0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_139562v1_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_exec_balancer@smoke:
- shard-dg1: NOTRUN -> [INCOMPLETE][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg1-14/igt@gem_exec_balancer@smoke.html
* igt@gem_exec_schedule@deep:
- shard-glk: NOTRUN -> [INCOMPLETE][2] +1 other test incomplete
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-glk4/igt@gem_exec_schedule@deep.html
* igt@perf@blocking:
- shard-mtlp: [PASS][3] -> [FAIL][4] +1 other test fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-mtlp-4/igt@perf@blocking.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-mtlp-2/igt@perf@blocking.html
Known issues
------------
Here are the changes found in Patchwork_139562v1_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- shard-rkl: NOTRUN -> [SKIP][5] ([i915#9318])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-rkl-1/igt@debugfs_test@basic-hwmon.html
* igt@drm_fdinfo@busy-check-all@bcs0:
- shard-dg1: NOTRUN -> [SKIP][6] ([i915#8414]) +11 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg1-17/igt@drm_fdinfo@busy-check-all@bcs0.html
* igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: [PASS][7] -> [INCOMPLETE][8] ([i915#7297])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-10/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-10/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-tglu: NOTRUN -> [SKIP][9] ([i915#7697])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-6/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-set-pat:
- shard-tglu: NOTRUN -> [SKIP][10] ([i915#8562])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-2/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg1: NOTRUN -> [SKIP][11] ([i915#8555])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg1-15/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_persistence@hostile:
- shard-tglu: NOTRUN -> [FAIL][12] ([i915#11980])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-6/igt@gem_ctx_persistence@hostile.html
* igt@gem_ctx_sseu@engines:
- shard-dg1: NOTRUN -> [SKIP][13] ([i915#280])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg1-17/igt@gem_ctx_sseu@engines.html
* igt@gem_eio@reset-stress:
- shard-dg1: [PASS][14] -> [FAIL][15] ([i915#5784])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg1-12/igt@gem_eio@reset-stress.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg1-19/igt@gem_eio@reset-stress.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: NOTRUN -> [SKIP][16] ([i915#4525])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-rkl-4/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-tglu: NOTRUN -> [SKIP][17] ([i915#6334]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-6/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [PASS][18] -> [FAIL][19] ([i915#2842]) +1 other test fail
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace@vcs0:
- shard-rkl: [PASS][20] -> [FAIL][21] ([i915#2842])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-rkl-4/igt@gem_exec_fair@basic-pace@vcs0.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-rkl-2/igt@gem_exec_fair@basic-pace@vcs0.html
* igt@gem_exec_reloc@basic-wc-read-active:
- shard-dg1: NOTRUN -> [SKIP][22] ([i915#3281]) +3 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg1-17/igt@gem_exec_reloc@basic-wc-read-active.html
* igt@gem_exec_reloc@basic-write-read:
- shard-rkl: NOTRUN -> [SKIP][23] ([i915#3281]) +3 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-rkl-4/igt@gem_exec_reloc@basic-write-read.html
* igt@gem_fence_thrash@bo-copy:
- shard-mtlp: NOTRUN -> [SKIP][24] ([i915#4860])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-mtlp-7/igt@gem_fence_thrash@bo-copy.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-tglu: NOTRUN -> [SKIP][25] ([i915#4613]) +2 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-2/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-rkl: NOTRUN -> [SKIP][26] ([i915#4613]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-rkl-4/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_mmap@basic:
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#4083])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-11/igt@gem_mmap@basic.html
- shard-dg1: NOTRUN -> [SKIP][28] ([i915#4083]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg1-13/igt@gem_mmap@basic.html
- shard-mtlp: NOTRUN -> [SKIP][29] ([i915#4083])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-mtlp-7/igt@gem_mmap@basic.html
* igt@gem_mmap_gtt@basic:
- shard-dg1: NOTRUN -> [SKIP][30] ([i915#4077])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg1-17/igt@gem_mmap_gtt@basic.html
* igt@gem_partial_pwrite_pread@write-snoop:
- shard-rkl: NOTRUN -> [SKIP][31] ([i915#3282]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-rkl-4/igt@gem_partial_pwrite_pread@write-snoop.html
* igt@gem_pread@snoop:
- shard-dg1: NOTRUN -> [SKIP][32] ([i915#3282])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg1-17/igt@gem_pread@snoop.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-tglu: NOTRUN -> [SKIP][33] ([i915#4270]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-2/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-dg1: NOTRUN -> [SKIP][34] ([i915#4270])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg1-17/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][35] ([i915#4270]) +2 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-rkl-4/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#4270])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-11/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
- shard-mtlp: NOTRUN -> [SKIP][37] ([i915#4270])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-mtlp-7/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs:
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#5190] / [i915#8428])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-1/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-glk: NOTRUN -> [SKIP][39] +23 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-glk3/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-tglu: NOTRUN -> [SKIP][40] ([i915#3297]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-2/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg1: NOTRUN -> [SKIP][41] ([i915#3297] / [i915#4880])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg1-17/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gen9_exec_parse@allowed-single:
- shard-rkl: NOTRUN -> [SKIP][42] ([i915#2527]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-rkl-4/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-dg1: NOTRUN -> [SKIP][43] ([i915#2527])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg1-17/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-tglu: NOTRUN -> [SKIP][44] ([i915#2527] / [i915#2856]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-2/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg2: [PASS][45] -> [ABORT][46] ([i915#9820])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-3/igt@i915_module_load@reload-with-fault-injection.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [PASS][47] -> [ABORT][48] ([i915#10131] / [i915#10887] / [i915#9697])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#7091])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-11/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#8436])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-mtlp-7/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
- shard-dg1: [PASS][51] -> [FAIL][52] ([i915#3591])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* igt@intel_hwmon@hwmon-write:
- shard-tglu: NOTRUN -> [SKIP][53] ([i915#7707])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-6/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-tglu: NOTRUN -> [SKIP][54] ([i915#3826])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-tglu: [PASS][55] -> [FAIL][56] ([i915#10991]) +1 other test fail
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-tglu-3/igt@kms_async_flips@alternate-sync-async-flip.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-8/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#8709]) +11 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-dg2: [PASS][58] -> [FAIL][59] ([i915#5956])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-4/igt@kms_atomic_transition@plane-all-modeset-transition.html
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-11/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-2:
- shard-dg2: NOTRUN -> [FAIL][60] ([i915#5956])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-11/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-2.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][61] -> [FAIL][62] ([i915#11808]) +1 other test fail
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-tglu-3/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-8/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#4538] / [i915#5286]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg1-17/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][64] ([i915#5286]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-tglu: NOTRUN -> [SKIP][65] ([i915#5286]) +3 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][66] ([i915#3638])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-rkl-1/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-mtlp: NOTRUN -> [SKIP][67]
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-mtlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#4538]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg1-17/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#12313])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg1-17/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][70] ([i915#4423] / [i915#6095])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg1-12/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][71] ([i915#12313])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#10307] / [i915#6095]) +152 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][73] ([i915#6095]) +44 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-2/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-tglu: NOTRUN -> [SKIP][74] ([i915#12313]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][75] ([i915#6095]) +128 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][76] ([i915#6095]) +78 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-8/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@plane-scaling:
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#3742])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg1-17/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#7828])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-mtlp-8/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-tglu: NOTRUN -> [SKIP][80] ([i915#7828]) +6 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-2/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@dp-hpd-fast:
- shard-dg1: NOTRUN -> [SKIP][81] ([i915#7828]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg1-14/igt@kms_chamelium_hpd@dp-hpd-fast.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-rkl: NOTRUN -> [SKIP][82] ([i915#7828]) +3 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-rkl-4/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_color@deep-color:
- shard-tglu: NOTRUN -> [SKIP][83] ([i915#3555] / [i915#9979])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-2/igt@kms_color@deep-color.html
* igt@kms_content_protection@mei-interface:
- shard-tglu: NOTRUN -> [SKIP][84] ([i915#6944] / [i915#9424])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-2/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-rkl: NOTRUN -> [SKIP][85] ([i915#7118])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-rkl-4/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#11453])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg1-17/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-rkl: NOTRUN -> [SKIP][87] ([i915#3555]) +3 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-rkl-1/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
- shard-dg1: NOTRUN -> [SKIP][88] ([i915#3555]) +2 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg1-13/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
- shard-mtlp: NOTRUN -> [SKIP][89] ([i915#3555] / [i915#8814])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-mtlp-7/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#3555])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-11/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-tglu: NOTRUN -> [SKIP][91] ([i915#11453])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-7/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-tglu: NOTRUN -> [SKIP][92] ([i915#3555]) +5 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-rkl: NOTRUN -> [SKIP][93] +12 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-rkl-4/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg1: NOTRUN -> [SKIP][94] ([i915#9723])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg1-15/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-tglu: NOTRUN -> [SKIP][95] ([i915#8588])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-2/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][96] ([i915#3804])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][97] ([i915#8812])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg1-17/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][98] ([i915#3840])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-rkl-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-tglu: NOTRUN -> [SKIP][99] ([i915#3555] / [i915#3840]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-2/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-tglu: NOTRUN -> [SKIP][100] ([i915#3469])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-6/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset:
- shard-tglu: NOTRUN -> [SKIP][101] ([i915#3637]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-2/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-tglu: NOTRUN -> [SKIP][102] ([i915#3637] / [i915#3966])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-snb: [PASS][103] -> [FAIL][104] ([i915#2122]) +3 other tests fail
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-snb2/igt@kms_flip@2x-plain-flip-ts-check.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-snb2/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-dg1: NOTRUN -> [SKIP][105] ([i915#9934]) +1 other test skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg1-17/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1:
- shard-mtlp: [PASS][106] -> [FAIL][107] ([i915#2122]) +1 other test fail
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-mtlp-4/igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-mtlp-2/igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2:
- shard-glk: [PASS][108] -> [FAIL][109] ([i915#79])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-glk8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-glk9/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling:
- shard-dg2: [PASS][110] -> [SKIP][111] ([i915#3555]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-dg1: NOTRUN -> [SKIP][112] ([i915#2672] / [i915#3555])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg1-19/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#2672]) +1 other test skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#2672]) +5 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-dg1: NOTRUN -> [SKIP][115] ([i915#2587] / [i915#2672] / [i915#3555])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][116] ([i915#2587] / [i915#2672]) +1 other test skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg1-17/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-16bpp-4tile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][117] ([i915#2672] / [i915#3555]) +1 other test skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-rkl-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][118] ([i915#2672] / [i915#3555]) +2 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][119] ([i915#2587] / [i915#2672]) +2 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-cpu:
- shard-dg2: [PASS][120] -> [FAIL][121] ([i915#6880])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-cpu.html
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render:
- shard-dg2: [PASS][122] -> [SKIP][123] ([i915#5354]) +2 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][124] ([i915#8708])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][125] ([i915#1825]) +16 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][126] +14 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#3458]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][128] ([i915#3023]) +11 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][129] +72 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
- shard-dg1: NOTRUN -> [SKIP][130] ([i915#3458]) +6 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][131] ([i915#8708]) +7 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff:
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#5354])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff.html
- shard-mtlp: NOTRUN -> [SKIP][133] ([i915#1825])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_hdr@static-toggle:
- shard-tglu: NOTRUN -> [SKIP][134] ([i915#3555] / [i915#8228]) +1 other test skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-6/igt@kms_hdr@static-toggle.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][135] ([i915#10656])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-7/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][136] ([i915#10656])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-11/igt@kms_joiner@invalid-modeset-big-joiner.html
- shard-rkl: NOTRUN -> [SKIP][137] ([i915#10656])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-rkl-1/igt@kms_joiner@invalid-modeset-big-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][138] ([i915#10656])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-mtlp-7/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-rkl: NOTRUN -> [SKIP][139] ([i915#6301])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-rkl-4/igt@kms_panel_fitting@legacy.html
* igt@kms_plane@plane-panning-top-left:
- shard-dg2: [PASS][140] -> [SKIP][141] ([i915#8825])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-3/igt@kms_plane@plane-panning-top-left.html
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-2/igt@kms_plane@plane-panning-top-left.html
* igt@kms_plane_alpha_blend@constant-alpha-mid:
- shard-dg2: [PASS][142] -> [SKIP][143] ([i915#7294])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-3/igt@kms_plane_alpha_blend@constant-alpha-mid.html
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-2/igt@kms_plane_alpha_blend@constant-alpha-mid.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers:
- shard-dg2: [PASS][144] -> [SKIP][145] ([i915#3555] / [i915#8152] / [i915#9423])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b:
- shard-dg2: [PASS][146] -> [SKIP][147] ([i915#12247]) +5 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b.html
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b:
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#12247]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-rkl-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers:
- shard-dg2: [PASS][149] -> [SKIP][150] ([i915#8152] / [i915#9423])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-3/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-d:
- shard-dg2: [PASS][151] -> [SKIP][152] ([i915#8152]) +1 other test skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-3/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-d.html
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
- shard-dg1: NOTRUN -> [SKIP][153] ([i915#12247] / [i915#6953]) +1 other test skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg1-18/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b:
- shard-dg1: NOTRUN -> [SKIP][154] ([i915#12247]) +7 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg1-18/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5:
- shard-mtlp: NOTRUN -> [SKIP][155] ([i915#6953])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-mtlp-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b:
- shard-mtlp: NOTRUN -> [SKIP][156] ([i915#12247]) +3 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-mtlp-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5:
- shard-tglu: NOTRUN -> [SKIP][157] ([i915#12247] / [i915#3555] / [i915#6953])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-tglu: NOTRUN -> [SKIP][158] ([i915#12247] / [i915#6953])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d:
- shard-tglu: NOTRUN -> [SKIP][159] ([i915#12247]) +17 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d.html
* igt@kms_pm_backlight@fade:
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#5354])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-rkl-4/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg1: NOTRUN -> [SKIP][161] ([i915#3361])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg1-17/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-tglu: NOTRUN -> [SKIP][162] ([i915#9685])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-6/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: [PASS][163] -> [SKIP][164] ([i915#9340])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-rkl-1/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@drm-resources-equal:
- shard-dg2: [PASS][165] -> [SKIP][166] ([i915#3547])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-3/igt@kms_pm_rpm@drm-resources-equal.html
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-2/igt@kms_pm_rpm@drm-resources-equal.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: [PASS][167] -> [SKIP][168] ([i915#9519]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp-stress.html
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2: [PASS][169] -> [SKIP][170] ([i915#9519]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
- shard-tglu: NOTRUN -> [SKIP][171] ([i915#9519])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_prime@d3hot:
- shard-rkl: NOTRUN -> [SKIP][172] ([i915#6524])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-rkl-4/igt@kms_prime@d3hot.html
* igt@kms_properties@crtc-properties-atomic:
- shard-dg2: [PASS][173] -> [SKIP][174] ([i915#11521])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-3/igt@kms_properties@crtc-properties-atomic.html
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-2/igt@kms_properties@crtc-properties-atomic.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
- shard-rkl: NOTRUN -> [SKIP][175] ([i915#11520]) +3 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-rkl-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
- shard-glk: NOTRUN -> [SKIP][176] ([i915#11520])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-glk3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-dg1: NOTRUN -> [SKIP][177] ([i915#11520])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg1-17/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][178] ([i915#11520]) +6 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-6/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-tglu: NOTRUN -> [SKIP][179] ([i915#9683]) +1 other test skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-psr-primary-blt:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#1072] / [i915#9732]) +3 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-11/igt@kms_psr@fbc-psr-primary-blt.html
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#1072] / [i915#9732]) +9 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-rkl-1/igt@kms_psr@fbc-psr-primary-blt.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-mtlp: NOTRUN -> [SKIP][182] ([i915#9688]) +4 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-mtlp-7/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_psr@psr2-cursor-plane-onoff:
- shard-tglu: NOTRUN -> [SKIP][183] ([i915#9732]) +17 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-2/igt@kms_psr@psr2-cursor-plane-onoff.html
* igt@kms_psr@psr2-sprite-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][184] ([i915#1072] / [i915#9732]) +7 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg1-17/igt@kms_psr@psr2-sprite-mmap-cpu.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-rkl: NOTRUN -> [SKIP][185] ([i915#9685])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-rkl-4/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-tglu: NOTRUN -> [SKIP][186] ([i915#5289])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-2/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-mtlp: NOTRUN -> [SKIP][187] ([i915#5289])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-mtlp-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_selftest@drm_framebuffer:
- shard-tglu: NOTRUN -> [ABORT][188] ([i915#12231]) +1 other test abort
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-2/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@basic:
- shard-tglu: NOTRUN -> [FAIL][189] ([i915#5465]) +2 other tests fail
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-6/igt@kms_setmode@basic.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-1:
- shard-glk: ([PASS][190], [PASS][191]) -> [FAIL][192] ([i915#5465]) +2 other tests fail
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-glk2/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-glk5/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-glk1/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-rkl: NOTRUN -> [SKIP][193] ([i915#8623])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-rkl-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1:
- shard-mtlp: [PASS][194] -> [FAIL][195] ([i915#9196]) +1 other test fail
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-mtlp-6/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-mtlp-6/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html
* igt@kms_vblank@wait-idle-hang:
- shard-dg2: [PASS][196] -> [SKIP][197] ([i915#9197]) +9 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-3/igt@kms_vblank@wait-idle-hang.html
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-2/igt@kms_vblank@wait-idle-hang.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-tglu: NOTRUN -> [SKIP][198] ([i915#9906])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-2/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-dg1: NOTRUN -> [SKIP][199] ([i915#9906])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg1-17/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-rkl: NOTRUN -> [SKIP][200] ([i915#2437] / [i915#9412])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-rkl-4/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-tglu: NOTRUN -> [SKIP][201] ([i915#2437] / [i915#9412])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-6/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-mtlp: NOTRUN -> [SKIP][202] ([i915#2437])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-mtlp-8/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: NOTRUN -> [SKIP][203] ([i915#2435])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-rkl-1/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@cpu-hotplug:
- shard-tglu: NOTRUN -> [SKIP][204] ([i915#8850])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-6/igt@perf_pmu@cpu-hotplug.html
* igt@prime_vgem@coherency-gtt:
- shard-rkl: NOTRUN -> [SKIP][205] ([i915#3708]) +1 other test skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-rkl-4/igt@prime_vgem@coherency-gtt.html
* igt@sriov_basic@bind-unbind-vf:
- shard-dg1: NOTRUN -> [SKIP][206] ([i915#9917])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg1-15/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-tglu: NOTRUN -> [SKIP][207] ([i915#9917])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-6/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@syncobj_wait@invalid-wait-zero-handles:
- shard-tglu: NOTRUN -> [FAIL][208] ([i915#9781])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-7/igt@syncobj_wait@invalid-wait-zero-handles.html
#### Possible fixes ####
* igt@fbdev@pan:
- shard-dg2: [SKIP][209] ([i915#2582]) -> [PASS][210] +1 other test pass
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-2/igt@fbdev@pan.html
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-7/igt@fbdev@pan.html
* igt@gem_ctx_engines@invalid-engines:
- shard-rkl: [FAIL][211] ([i915#12027]) -> [PASS][212]
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-rkl-5/igt@gem_ctx_engines@invalid-engines.html
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-rkl-2/igt@gem_ctx_engines@invalid-engines.html
* igt@gem_ctx_isolation@preservation-s3@vcs0:
- shard-dg1: [DMESG-WARN][213] ([i915#4423]) -> [PASS][214] +5 other tests pass
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg1-18/igt@gem_ctx_isolation@preservation-s3@vcs0.html
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg1-16/igt@gem_ctx_isolation@preservation-s3@vcs0.html
* igt@gem_eio@hibernate:
- shard-dg1: [ABORT][215] ([i915#7975] / [i915#8213]) -> [PASS][216]
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg1-14/igt@gem_eio@hibernate.html
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg1-17/igt@gem_eio@hibernate.html
* igt@gem_exec_balancer@nop:
- shard-mtlp: [DMESG-WARN][217] -> [PASS][218]
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-mtlp-3/igt@gem_exec_balancer@nop.html
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-mtlp-4/igt@gem_exec_balancer@nop.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-tglu: [FAIL][219] ([i915#2842]) -> [PASS][220] +1 other test pass
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-tglu-6/igt@gem_exec_fair@basic-pace-share@rcs0.html
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-10/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-rkl: [FAIL][221] ([i915#2842]) -> [PASS][222] +1 other test pass
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-rkl-7/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-rkl-1/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_suspend@basic-s0:
- shard-dg2: [INCOMPLETE][223] ([i915#11441]) -> [PASS][224] +1 other test pass
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-6/igt@gem_exec_suspend@basic-s0.html
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-3/igt@gem_exec_suspend@basic-s0.html
* igt@gen9_exec_parse@allowed-single:
- shard-glk: ([ABORT][225], [PASS][226]) ([i915#12375] / [i915#5566]) -> [PASS][227]
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-glk4/igt@gen9_exec_parse@allowed-single.html
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-glk6/igt@gen9_exec_parse@allowed-single.html
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-glk3/igt@gen9_exec_parse@allowed-single.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0:
- shard-dg1: [FAIL][228] ([i915#3591]) -> [PASS][229]
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
* igt@i915_pm_rps@engine-order:
- shard-glk: ([PASS][230], [FAIL][231]) ([i915#12308]) -> [PASS][232]
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-glk8/igt@i915_pm_rps@engine-order.html
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-glk5/igt@i915_pm_rps@engine-order.html
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-glk8/igt@i915_pm_rps@engine-order.html
* igt@i915_power@sanity:
- shard-mtlp: [SKIP][233] ([i915#7984]) -> [PASS][234]
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-mtlp-8/igt@i915_power@sanity.html
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-mtlp-3/igt@i915_power@sanity.html
* igt@kms_atomic_transition@modeset-transition:
- shard-glk: ([PASS][235], [FAIL][236]) ([i915#12238]) -> [PASS][237]
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-glk6/igt@kms_atomic_transition@modeset-transition.html
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-glk8/igt@kms_atomic_transition@modeset-transition.html
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-glk5/igt@kms_atomic_transition@modeset-transition.html
* igt@kms_atomic_transition@modeset-transition@2x-outputs:
- shard-glk: ([PASS][238], [FAIL][239]) ([i915#11859]) -> [PASS][240]
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-glk6/igt@kms_atomic_transition@modeset-transition@2x-outputs.html
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-glk8/igt@kms_atomic_transition@modeset-transition@2x-outputs.html
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-glk5/igt@kms_atomic_transition@modeset-transition@2x-outputs.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-snb: [SKIP][241] -> [PASS][242] +2 other tests pass
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-snb2/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-snb2/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: ([PASS][243], [FAIL][244]) ([i915#2346]) -> [PASS][245]
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_flip@2x-flip-vs-wf_vblank@ab-hdmi-a1-hdmi-a2:
- shard-glk: [FAIL][246] -> [PASS][247] +1 other test pass
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-glk1/igt@kms_flip@2x-flip-vs-wf_vblank@ab-hdmi-a1-hdmi-a2.html
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-glk6/igt@kms_flip@2x-flip-vs-wf_vblank@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@blocking-wf_vblank@c-hdmi-a1:
- shard-tglu: [FAIL][248] ([i915#2122]) -> [PASS][249] +3 other tests pass
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-tglu-8/igt@kms_flip@blocking-wf_vblank@c-hdmi-a1.html
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-5/igt@kms_flip@blocking-wf_vblank@c-hdmi-a1.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-rkl: [FAIL][250] ([i915#2122]) -> [PASS][251]
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-rkl-7/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@modeset-vs-vblank-race:
- shard-rkl: [FAIL][252] ([i915#10826]) -> [PASS][253] +1 other test pass
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-rkl-1/igt@kms_flip@modeset-vs-vblank-race.html
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-rkl-5/igt@kms_flip@modeset-vs-vblank-race.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling:
- shard-dg2: [SKIP][254] ([i915#3555]) -> [PASS][255] +3 other tests pass
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt:
- shard-dg2: [FAIL][256] ([i915#6880]) -> [PASS][257]
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render:
- shard-dg2: [SKIP][258] ([i915#5354]) -> [PASS][259] +22 other tests pass
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
* igt@kms_plane@planar-pixel-format-settings:
- shard-dg2: [SKIP][260] ([i915#9581]) -> [PASS][261]
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-2/igt@kms_plane@planar-pixel-format-settings.html
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-4/igt@kms_plane@planar-pixel-format-settings.html
* igt@kms_plane_alpha_blend@coverage-7efc:
- shard-dg2: [SKIP][262] ([i915#7294]) -> [PASS][263]
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-2/igt@kms_plane_alpha_blend@coverage-7efc.html
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-6/igt@kms_plane_alpha_blend@coverage-7efc.html
* igt@kms_plane_scaling@invalid-parameters:
- shard-dg2: [SKIP][264] ([i915#8152] / [i915#9423]) -> [PASS][265] +1 other test pass
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-2/igt@kms_plane_scaling@invalid-parameters.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-6/igt@kms_plane_scaling@invalid-parameters.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation:
- shard-dg2: [SKIP][266] ([i915#12247] / [i915#8152] / [i915#9423]) -> [PASS][267] +1 other test pass
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-4/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b:
- shard-dg2: [SKIP][268] ([i915#12247]) -> [PASS][269] +14 other tests pass
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b.html
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-4/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d:
- shard-dg2: [SKIP][270] ([i915#12247] / [i915#8152]) -> [PASS][271] +3 other tests pass
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d.html
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-11/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-d:
- shard-dg2: [SKIP][272] ([i915#8152]) -> [PASS][273]
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-d.html
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-4/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25:
- shard-dg2: [SKIP][274] ([i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][275]
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75:
- shard-dg2: [SKIP][276] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][277]
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: [SKIP][278] ([i915#4281]) -> [PASS][279]
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-tglu-7/igt@kms_pm_dc@dc9-dpms.html
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-5/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-dg2: [SKIP][280] ([i915#9519]) -> [PASS][281] +1 other test pass
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-tglu: [ABORT][282] ([i915#10159] / [i915#10553]) -> [PASS][283]
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-tglu-9/igt@kms_pm_rpm@system-suspend-modeset.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-tglu-7/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-mtlp: [FAIL][284] ([i915#5465]) -> [PASS][285] +2 other tests pass
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-mtlp-7/igt@kms_setmode@basic@pipe-b-edp-1.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-mtlp-8/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_vblank@ts-continuation-modeset:
- shard-dg2: [SKIP][286] ([i915#9197]) -> [PASS][287] +50 other tests pass
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-2/igt@kms_vblank@ts-continuation-modeset.html
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-11/igt@kms_vblank@ts-continuation-modeset.html
#### Warnings ####
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-dg2: [SKIP][288] ([i915#9197]) -> [SKIP][289] +6 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-2/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-4/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-dg2: [SKIP][290] ([i915#5190] / [i915#9197]) -> [SKIP][291] ([i915#4538] / [i915#5190]) +9 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-2/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-4/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
- shard-dg2: [SKIP][292] ([i915#4538] / [i915#5190]) -> [SKIP][293] ([i915#5190] / [i915#9197]) +1 other test skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-3/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-2/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-dg2: [SKIP][294] ([i915#5190] / [i915#9197]) -> [SKIP][295] ([i915#5190])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-2/igt@kms_big_fb@yf-tiled-addfb.html
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-4/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-dg2: [SKIP][296] ([i915#9197]) -> [SKIP][297] ([i915#12313]) +1 other test skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-2/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-4/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@bad-rotation-90-yf-tiled-ccs:
- shard-dg2: [SKIP][298] ([i915#9197]) -> [SKIP][299] ([i915#10307] / [i915#6095]) +9 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-2/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-11/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc:
- shard-dg2: [SKIP][300] ([i915#10307] / [i915#6095]) -> [SKIP][301] ([i915#9197]) +2 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-3/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-2/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs:
- shard-dg1: [SKIP][302] ([i915#6095]) -> [SKIP][303] ([i915#4423] / [i915#6095])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg1-18/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg1-12/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-dg2: [SKIP][304] ([i915#12313]) -> [SKIP][305] ([i915#9197])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-3/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg2: [SKIP][306] ([i915#9197]) -> [SKIP][307] ([i915#11616] / [i915#7213])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-2/igt@kms_cdclk@mode-transition-all-outputs.html
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-4/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_color@deep-color:
- shard-dg2: [SKIP][308] ([i915#3555]) -> [SKIP][309] ([i915#5354])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-3/igt@kms_color@deep-color.html
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-2/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic-dpms:
- shard-snb: [SKIP][310] -> [INCOMPLETE][311] ([i915#8816])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-snb2/igt@kms_content_protection@atomic-dpms.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-snb2/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg2: [SKIP][312] ([i915#9197]) -> [SKIP][313] ([i915#3299])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-2/igt@kms_content_protection@dp-mst-type-0.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-6/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@mei-interface:
- shard-dg2: [SKIP][314] ([i915#9424]) -> [SKIP][315] ([i915#9197])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-3/igt@kms_content_protection@mei-interface.html
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-2/igt@kms_content_protection@mei-interface.html
- shard-dg1: [SKIP][316] ([i915#9424]) -> [SKIP][317] ([i915#9433])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg1-17/igt@kms_content_protection@mei-interface.html
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg1-12/igt@kms_content_protection@mei-interface.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2: [SKIP][318] ([i915#9197]) -> [SKIP][319] ([i915#11453]) +1 other test skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-dg2: [SKIP][320] ([i915#3555]) -> [SKIP][321] ([i915#9197])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-3/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2: [SKIP][322] ([i915#9197]) -> [SKIP][323] ([i915#3555]) +5 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-2/igt@kms_cursor_crc@cursor-sliding-32x10.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-4/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-dg2: [SKIP][324] ([i915#9197]) -> [SKIP][325] ([i915#5354]) +1 other test skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-2/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-11/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-dg2: [SKIP][326] ([i915#5354]) -> [SKIP][327] ([i915#9197]) +1 other test skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg2: [SKIP][328] ([i915#9197]) -> [SKIP][329] ([i915#9833])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-11/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: [SKIP][330] ([i915#8588]) -> [SKIP][331] ([i915#9197])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-3/igt@kms_display_modes@mst-extended-mode-negative.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-2/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: [SKIP][332] ([i915#8812]) -> [SKIP][333] ([i915#9197])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-3/igt@kms_draw_crc@draw-method-mmap-wc.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-2/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2: [SKIP][334] ([i915#9197]) -> [SKIP][335] ([i915#3555] / [i915#3840])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-2/igt@kms_dsc@dsc-with-bpc-formats.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-4/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
- shard-dg2: [SKIP][336] ([i915#3555] / [i915#5190]) -> [SKIP][337] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-dg2: [SKIP][338] ([i915#3555]) -> [SKIP][339] ([i915#2672] / [i915#3555]) +3 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-dg2: [SKIP][340] ([i915#2672] / [i915#3555]) -> [SKIP][341] ([i915#3555])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc:
- shard-dg1: [SKIP][342] ([i915#4423] / [i915#8708]) -> [SKIP][343] ([i915#8708])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2: [SKIP][344] ([i915#8708]) -> [SKIP][345] ([i915#5354]) +2 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-cpu:
- shard-dg2: [SKIP][346] ([i915#3458]) -> [SKIP][347] ([i915#10433] / [i915#3458])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-cpu.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt:
- shard-dg2: [SKIP][348] ([i915#5354]) -> [SKIP][349] ([i915#8708]) +16 other tests skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
- shard-dg2: [SKIP][350] ([i915#5354]) -> [SKIP][351] ([i915#10433] / [i915#3458])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: [SKIP][352] ([i915#3458]) -> [SKIP][353] ([i915#5354]) +5 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: [SKIP][354] ([i915#5354]) -> [SKIP][355] ([i915#3458]) +9 other tests skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt:
- shard-dg1: [SKIP][356] ([i915#4423]) -> [SKIP][357]
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: [SKIP][358] ([i915#10433] / [i915#3458]) -> [SKIP][359] ([i915#3458]) +3 other tests skip
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: [SKIP][360] ([i915#9197]) -> [SKIP][361] ([i915#3555] / [i915#8228]) +2 other tests skip
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-2/igt@kms_hdr@static-toggle-suspend.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-11/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d:
- shard-dg2: [SKIP][362] ([i915#12247] / [i915#8152]) -> [SKIP][363] ([i915#12247]) +1 other test skip
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20:
- shard-dg2: [SKIP][364] ([i915#12247] / [i915#8152] / [i915#9423]) -> [SKIP][365] ([i915#12247] / [i915#9423]) +1 other test skip
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: [SKIP][366] ([i915#4281]) -> [SKIP][367] ([i915#3361])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-rkl-2/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2: [SKIP][368] ([i915#11131]) -> [SKIP][369] ([i915#9197])
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-3/igt@kms_rotation_crc@bad-tiling.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-2/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg2: [SKIP][370] ([i915#4235]) -> [SKIP][371] ([i915#9197])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-3/igt@kms_rotation_crc@exhaust-fences.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-2/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-dg2: [SKIP][372] ([i915#5190]) -> [SKIP][373] ([i915#5190] / [i915#9197])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-dg2: [SKIP][374] ([i915#9197]) -> [SKIP][375] ([i915#11131]) +1 other test skip
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-2/igt@kms_rotation_crc@sprite-rotation-90.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-7/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_vrr@lobf:
- shard-dg2: [SKIP][376] ([i915#9197]) -> [SKIP][377] ([i915#11920])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-2/igt@kms_vrr@lobf.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-6/igt@kms_vrr@lobf.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: [FAIL][378] ([i915#7484]) -> [FAIL][379] ([i915#9100]) +1 other test fail
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15488/shard-dg2-11/igt@perf@non-zero-reason@0-rcs0.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/shard-dg2-5/igt@perf@non-zero-reason@0-rcs0.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
[i915#10159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10159
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826
[i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887
[i915#10991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10991
[i915#11131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11131
[i915#11441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11441
[i915#11453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11521]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11521
[i915#11616]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11616
[i915#11808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808
[i915#11859]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11859
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#11980]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11980
[i915#12027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12027
[i915#12231]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12231
[i915#12238]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12238
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12308]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12308
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12375]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12375
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122
[i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3547]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3547
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3826
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3966]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3966
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465
[i915#5566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5566
[i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7091]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7091
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213
[i915#7294]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7294
[i915#7297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7297
[i915#7484]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7484
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#79]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/79
[i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975
[i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
[i915#8152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152
[i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8436
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
[i915#8588]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8588
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8816
[i915#8825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825
[i915#8850]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8850
[i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100
[i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196
[i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9581]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9581
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9697
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9781
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820
[i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
[i915#9979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9979
Build changes
-------------
* Linux: CI_DRM_15488 -> Patchwork_139562v1
CI-20190529: 20190529
CI_DRM_15488: e11d55841ddeeb378c8850fca72eb6a270aafd79 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8054: 3f627b7fd48c6ab324ceaa80dd8cf0131292bf63 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_139562v1: e11d55841ddeeb378c8850fca72eb6a270aafd79 @ git://anongit.freedesktop.org/gfx-ci/linux
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139562v1/index.html
[-- Attachment #2: Type: text/html, Size: 119116 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v1 3/3] drm/ci: add sm8350-hdk
2024-10-04 13:31 ` [PATCH v1 3/3] drm/ci: add sm8350-hdk Vignesh Raman
2024-10-06 19:46 ` Dmitry Baryshkov
@ 2024-10-09 19:40 ` Abhinav Kumar
1 sibling, 0 replies; 11+ messages in thread
From: Abhinav Kumar @ 2024-10-09 19:40 UTC (permalink / raw)
To: Vignesh Raman, dri-devel
Cc: daniels, helen.koike, airlied, daniel, robdclark, guilherme.gallo,
sergi.blanch.torne, deborah.brouwer, dmitry.baryshkov,
linux-arm-msm, intel-gfx, virtualization, linux-kernel
On 10/4/2024 6:31 AM, Vignesh Raman wrote:
> Add job that executes the IGT test suite for sm8350-hdk.
>
> Signed-off-by: Vignesh Raman <vignesh.raman@collabora.com>
> ---
> drivers/gpu/drm/ci/arm64.config | 7 +-
> drivers/gpu/drm/ci/build.sh | 1 +
> drivers/gpu/drm/ci/test.yml | 16 ++
> .../drm/ci/xfails/msm-sm8350-hdk-fails.txt | 15 ++
> .../drm/ci/xfails/msm-sm8350-hdk-flakes.txt | 6 +
> .../drm/ci/xfails/msm-sm8350-hdk-skips.txt | 211 ++++++++++++++++++
> 6 files changed, 255 insertions(+), 1 deletion(-)
> create mode 100644 drivers/gpu/drm/ci/xfails/msm-sm8350-hdk-fails.txt
> create mode 100644 drivers/gpu/drm/ci/xfails/msm-sm8350-hdk-flakes.txt
> create mode 100644 drivers/gpu/drm/ci/xfails/msm-sm8350-hdk-skips.txt
>
Very happy to see this added
Reviewed-by: Abhinav Kumar <quic_abhinavk@quicinc.com>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v1 1/3] drm/ci: refactor software-driver stage jobs
2024-10-07 16:37 ` Daniel Stone
@ 2024-10-22 7:25 ` Vignesh Raman
0 siblings, 0 replies; 11+ messages in thread
From: Vignesh Raman @ 2024-10-22 7:25 UTC (permalink / raw)
To: Daniel Stone
Cc: dri-devel, daniels, helen.koike, airlied, daniel, robdclark,
guilherme.gallo, sergi.blanch.torne, deborah.brouwer,
dmitry.baryshkov, linux-arm-msm, intel-gfx, virtualization,
linux-kernel
Hi Daniel,
On 07/10/24 22:07, Daniel Stone wrote:
> Hi Vignesh,
>
> On Fri, 4 Oct 2024 at 09:31, Vignesh Raman <vignesh.raman@collabora.com> wrote:
>> +.software-driver:
>> + stage: software-driver
>> + extends:
>> + - .test-gl
>> + - .test-rules
>> + timeout: "1h30m"
>> + tags:
>> + - kvm
>> + script:
>> + - ln -sf $CI_PROJECT_DIR/install /install
>> + - mv install/bzImage /lava-files/bzImage
>> + - mkdir -p /lib/modules
>> + - mkdir -p $CI_PROJECT_DIR/results
>> + - ln -sf $CI_PROJECT_DIR/results /results
>> + - install/crosvm-runner.sh install/igt_runner.sh
>
> Instead of inlining this here, can we please move towards reusing more
> of .gitlab-ci/common/init-stage[12].sh? If those files need to be
> modified then that's totally fine, but I'd rather have something more
> predictable, and fewer random pieces of shell in each job section.
Sure. I will look into init-stage[12].sh and see if we can reuse it. Thanks.
Regards,
Vignesh
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2024-10-22 7:26 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-04 13:31 [PATCH v1 0/3] drm/ci: add new devices for testing Vignesh Raman
2024-10-04 13:31 ` [PATCH v1 1/3] drm/ci: refactor software-driver stage jobs Vignesh Raman
2024-10-07 16:37 ` Daniel Stone
2024-10-22 7:25 ` Vignesh Raman
2024-10-04 13:31 ` [PATCH v1 2/3] drm/ci: add dedede Vignesh Raman
2024-10-04 13:31 ` [PATCH v1 3/3] drm/ci: add sm8350-hdk Vignesh Raman
2024-10-06 19:46 ` Dmitry Baryshkov
2024-10-09 19:40 ` Abhinav Kumar
2024-10-08 0:46 ` ✗ Fi.CI.CHECKPATCH: warning for drm/ci: add new devices for testing Patchwork
2024-10-08 0:55 ` ✓ Fi.CI.BAT: success " Patchwork
2024-10-09 1:56 ` ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox