mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 16:43:58 +00:00
16 lines
272 B
Nix
16 lines
272 B
Nix
|
{
|
||
|
name = "Test that sleep of 6 seconds fails a timeout of 5 seconds";
|
||
|
globalTimeout = 5;
|
||
|
|
||
|
nodes = {
|
||
|
machine = ({ pkgs, ... }: {
|
||
|
});
|
||
|
};
|
||
|
|
||
|
testScript = ''
|
||
|
start_all()
|
||
|
machine.wait_for_unit("multi-user.target")
|
||
|
machine.succeed("sleep 6")
|
||
|
'';
|
||
|
}
|