about summary refs log tree commit diff
path: root/nixos/tests/stratis
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2023-01-25 08:58:41 +0800
committerNick Cao <nickcao@nichi.co>2023-01-25 08:58:41 +0800
commite5c6f32b811774a1454f21b062a9a7783e672532 (patch)
tree7dc671e7993c236c5941e9f64accb607297fa2d2 /nixos/tests/stratis
parentc86dd99259a90a702cc73f46a064a3a871ae998c (diff)
nixosTests.stratis.simple: enlarge disk size to avoid test hanging due
to out of space
Diffstat (limited to 'nixos/tests/stratis')
-rw-r--r--nixos/tests/stratis/simple.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/stratis/simple.nix b/nixos/tests/stratis/simple.nix
index 7357d71fc52ba..543789f59c052 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 = ''