vuls: init at 0.27.0
[NixPkgs.git] / nixos / tests / nixos-test-driver / timeout.nix
blob29bd85d2498ea7d3ab3645abe1bac33f3d7c7a2e
2   name = "Test that sleep of 6 seconds fails a timeout of 5 seconds";
3   globalTimeout = 5;
5   nodes = {
6     machine = ({ pkgs, ... }: {
7     });
8   };
10   testScript = ''
11     start_all()
12     machine.wait_for_unit("multi-user.target")
13     machine.succeed("sleep 6")
14   '';