NixOS tests: Wait for shell for 10x longer (50m)
This commit is contained in:
parent
2f9fc897eb
commit
9bc10e1291
|
@ -250,7 +250,8 @@ sub connect {
|
||||||
$self->start;
|
$self->start;
|
||||||
|
|
||||||
local $SIG{ALRM} = sub { die "timed out waiting for the VM to connect\n"; };
|
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";
|
readline $self->{socket} or die "the VM quit before connecting\n";
|
||||||
alarm 0;
|
alarm 0;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue