rss-bridge: 2024-02-02 -> 2025-01-02 (#372627)
[NixPkgs.git] / nixos / tests / nixos-test-driver / timeout.nix
blobd793f29be9207a69035c57d2d07fd5c7cd101374
2   name = "Test that sleep of 6 seconds fails a timeout of 5 seconds";
3   globalTimeout = 5;
5   nodes = {
6     machine = (
7       { pkgs, ... }:
8       {
9       }
10     );
11   };
13   testScript = ''
14     start_all()
15     machine.wait_for_unit("multi-user.target")
16     machine.succeed("sleep 6")
17   '';