disko/tests/zfs.nix

11 lines
315 B
Nix
Raw Normal View History

2022-08-25 21:12:49 +00:00
{ pkgs ? (import <nixpkgs> {})
, makeDiskoTest ? (pkgs.callPackage ./lib.nix {}).makeDiskoTest
2022-08-25 13:08:26 +00:00
}:
2022-08-25 21:12:49 +00:00
makeDiskoTest {
2022-08-25 13:08:26 +00:00
disko-config = import ../example/zfs.nix;
2022-08-25 21:12:49 +00:00
extraTestScript = ''
2022-08-25 13:08:26 +00:00
machine.succeed("test -b /dev/zvol/zroot/zfs_testvolume");
machine.succeed("grep -qs '/mnt/ext4onzfs' /proc/mounts");
'';
}