From e5c6f32b811774a1454f21b062a9a7783e672532 Mon Sep 17 00:00:00 2001 From: Nick Cao Date: Wed, 25 Jan 2023 08:58:41 +0800 Subject: [PATCH] nixosTests.stratis.simple: enlarge disk size to avoid test hanging due to out of space --- nixos/tests/stratis/simple.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/tests/stratis/simple.nix b/nixos/tests/stratis/simple.nix index 7357d71fc52b..543789f59c05 100644 --- a/nixos/tests/stratis/simple.nix +++ b/nixos/tests/stratis/simple.nix @@ -8,7 +8,7 @@ import ../make-test-python.nix ({ pkgs, ... }: nodes.machine = { pkgs, ... }: { services.stratis.enable = true; - virtualisation.emptyDiskImages = [ 1024 1024 1024 1024 ]; + virtualisation.emptyDiskImages = [ 2048 1024 1024 1024 ]; }; testScript = ''