mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 12:11:28 +00:00
c90219633c
We test that the test framework timeouts are working as expected.
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")
|
|
'';
|
|
}
|