Skip to content

Commit ce57275

Browse files
committed
checks/default: disable systemd tests for crosvm and kvmtool
1 parent a39039b commit ce57275

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

checks/default.nix

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,14 @@ let
109109
} {
110110
# yes
111111
id = "systemd";
112-
modules = [ {
112+
modules = [ ({ config, ... }: {
113113
boot.initrd.systemd.enable = true;
114-
} ];
114+
microvm.testing.enableTest = ! builtins.elem config.microvm.hypervisor [
115+
# Known broken
116+
"crosvm"
117+
"kvmtool"
118+
];
119+
}) ];
115120
} ]
116121
# hardened profile
117122
[ {

0 commit comments

Comments
 (0)