From d9448fedfaad0f3f1fbd498b4c9f18f5ac779e26 Mon Sep 17 00:00:00 2001 From: Achilleas Koutsou Date: Wed, 27 Nov 2024 18:55:48 +0100 Subject: [PATCH] test: add swap to all the partitioning test configs --- test/configs/partitioning-btrfs.json | 6 ++++++ test/configs/partitioning-lvm.json | 5 +++++ test/configs/partitioning-plain.json | 4 ++++ 3 files changed, 15 insertions(+) diff --git a/test/configs/partitioning-btrfs.json b/test/configs/partitioning-btrfs.json index 3f7079908a..0451f19e23 100644 --- a/test/configs/partitioning-btrfs.json +++ b/test/configs/partitioning-btrfs.json @@ -47,6 +47,12 @@ "mountpoint": "/srv" } ] + }, + { + "type": "plain", + "fs_type": "swap", + "label": "swap-part", + "minsize": "1 GiB" } ] } diff --git a/test/configs/partitioning-lvm.json b/test/configs/partitioning-lvm.json index 960ec93550..22e525be7d 100644 --- a/test/configs/partitioning-lvm.json +++ b/test/configs/partitioning-lvm.json @@ -63,6 +63,11 @@ "mountpoint": "/srv", "fs_type": "ext4", "minsize": 1073741824 + }, + { + "name": "swap-lv", + "fs_type": "swap", + "minsize": "1 GiB" } ] } diff --git a/test/configs/partitioning-plain.json b/test/configs/partitioning-plain.json index 6c2e06ae33..8f3b6b449d 100644 --- a/test/configs/partitioning-plain.json +++ b/test/configs/partitioning-plain.json @@ -49,6 +49,10 @@ "mountpoint": "/srv", "fs_type": "xfs", "minsize": 1073741824 + }, + { + "fs_type": "swap", + "minsize": "1 GiB" } ] }