at 23.11-beta 272 B view raw
1{ 2 name = "Test that sleep of 6 seconds fails a timeout of 5 seconds"; 3 globalTimeout = 5; 4 5 nodes = { 6 machine = ({ pkgs, ... }: { 7 }); 8 }; 9 10 testScript = '' 11 start_all() 12 machine.wait_for_unit("multi-user.target") 13 machine.succeed("sleep 6") 14 ''; 15}