On 16/01/2025 12.25, Michal Privoznik wrote:
In its upstream commit [1], qemu dropped s390-2.7 machine type, then in commit [2] the s390-2.8 machine type was dropped. But as Thomas Huth pointed out, any machine type that's older than 6 years is subject to removal [3]. This means, any machine type older than 4.1 is going to be removed eventually. We have two test cases that assumes existence of 2.7 machine type. While they could be switched to 4.1 machine type, we also have another test case that already check 4.2 machine type. Therefore, just drop the 2.7 ones. 1: https://gitlab.com/qemu-project/qemu/-/commit/3199c7ee76089fb6844f6b2bed1f5d3d99a7527c 2: https://gitlab.com/qemu-project/qemu/-/commit/66924fe36977d9d9e45ba3e0b6e851ee170507f6 3: https://gitlab.com/qemu-project/qemu/-/commit/ce80c4fa6ff0f5c379bba7db74d04593e9fb12f2 Signed-off-by: Michal Privoznik <mprivozn@xxxxxxxxxx> --- ...t-cpu-kvm-ccw-virtio-2.7.s390x-latest.args | 32 ------------------- ...lt-cpu-kvm-ccw-virtio-2.7.s390x-latest.xml | 25 --------------- .../s390-default-cpu-kvm-ccw-virtio-2.7.xml | 16 ---------- ...t-cpu-tcg-ccw-virtio-2.7.s390x-latest.args | 32 ------------------- ...lt-cpu-tcg-ccw-virtio-2.7.s390x-latest.xml | 27 ---------------- .../s390-default-cpu-tcg-ccw-virtio-2.7.xml | 16 ---------- tests/qemuxmlconftest.c | 2 -- 7 files changed, 150 deletions(-) delete mode 100644 tests/qemuxmlconfdata/s390-default-cpu-kvm-ccw-virtio-2.7.s390x-latest.args delete mode 100644 tests/qemuxmlconfdata/s390-default-cpu-kvm-ccw-virtio-2.7.s390x-latest.xml delete mode 100644 tests/qemuxmlconfdata/s390-default-cpu-kvm-ccw-virtio-2.7.xml delete mode 100644 tests/qemuxmlconfdata/s390-default-cpu-tcg-ccw-virtio-2.7.s390x-latest.args delete mode 100644 tests/qemuxmlconfdata/s390-default-cpu-tcg-ccw-virtio-2.7.s390x-latest.xml delete mode 100644 tests/qemuxmlconfdata/s390-default-cpu-tcg-ccw-virtio-2.7.xml
Reviewed-by: Thomas Huth <thuth@xxxxxxxxxx>