NixOS tests: Wait for shell for 10x longer (50m)

This commit is contained in:
Sarah Brofeldt 2018-10-30 09:10:47 +01:00
parent 2f9fc897eb
commit 9bc10e1291

View file

@ -250,7 +250,8 @@ sub connect {
$self->start;
local $SIG{ALRM} = sub { die "timed out waiting for the VM to connect\n"; };
alarm 300;
# 50 minutes -- increased as a test, see #49441
alarm 3000;
readline $self->{socket} or die "the VM quit before connecting\n";
alarm 0;