diff options
author | Aidan Dang <dang@aidan.gg> | 2022-12-10 11:58:27 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2022-12-15 22:22:10 +0100 |
commit | 8f30c00c50d7fd569853dfca5b9c1ffbcbad2b32 (patch) | |
tree | 0c349d1879320bf3f27edfbf9f1f49fac8506ef3 /src/test/test-loop-block.c | |
parent | repart: Always derive fs/luks UUIDs from generated partition UUID (diff) | |
download | systemd-8f30c00c50d7fd569853dfca5b9c1ffbcbad2b32.tar.xz systemd-8f30c00c50d7fd569853dfca5b9c1ffbcbad2b32.zip |
Implement SYSTEMD_HOME_MKFS_OPTIONS_* envvars to configure mkfs options for homed LUKS directories
Diffstat (limited to '')
-rw-r--r-- | src/test/test-loop-block.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/test-loop-block.c b/src/test/test-loop-block.c index b06ab0d172..6e15e1accb 100644 --- a/src/test/test-loop-block.c +++ b/src/test/test-loop-block.c @@ -245,16 +245,16 @@ static int run(int argc, char *argv[]) { assert_se(r >= 0); assert_se(sd_id128_randomize(&id) >= 0); - assert_se(make_filesystem(dissected->partitions[PARTITION_ESP].node, "vfat", "EFI", NULL, id, true) >= 0); + assert_se(make_filesystem(dissected->partitions[PARTITION_ESP].node, "vfat", "EFI", NULL, id, true, NULL) >= 0); assert_se(sd_id128_randomize(&id) >= 0); - assert_se(make_filesystem(dissected->partitions[PARTITION_XBOOTLDR].node, "vfat", "xbootldr", NULL, id, true) >= 0); + assert_se(make_filesystem(dissected->partitions[PARTITION_XBOOTLDR].node, "vfat", "xbootldr", NULL, id, true, NULL) >= 0); assert_se(sd_id128_randomize(&id) >= 0); - assert_se(make_filesystem(dissected->partitions[PARTITION_ROOT].node, "ext4", "root", NULL, id, true) >= 0); + assert_se(make_filesystem(dissected->partitions[PARTITION_ROOT].node, "ext4", "root", NULL, id, true, NULL) >= 0); assert_se(sd_id128_randomize(&id) >= 0); - assert_se(make_filesystem(dissected->partitions[PARTITION_HOME].node, "ext4", "home", NULL, id, true) >= 0); + assert_se(make_filesystem(dissected->partitions[PARTITION_HOME].node, "ext4", "home", NULL, id, true, NULL) >= 0); dissected = dissected_image_unref(dissected); |