depot/third_party/nixpkgs/nixos/tests/watchdogd.nix
Default email 23b612e36f Project import generated by Copybara.
GitOrigin-RevId: ae5c332cbb5827f6b1f02572496b141021de335f
2024-01-25 23:12:00 +09:00

22 lines
592 B
Nix

import ./make-test-python.nix ({ lib, ... }: {
name = "watchdogd";
meta.maintainers = with lib.maintainers; [ vifino ];
nodes.machine = { pkgs, ... }: {
virtualisation.qemu.options = [
"-device i6300esb" # virtual watchdog timer
];
boot.kernelModules = [ "i6300esb" ];
services.watchdogd.enable = true;
services.watchdogd.settings = {
supervisor.enabled = true;
};
};
testScript = ''
machine.wait_for_unit("watchdogd.service")
assert "i6300ESB" in machine.succeed("watchdogctl status")
machine.succeed("watchdogctl test")
'';
})