3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #49441 from srhb/debug-hydra-failures

NixOS tests: Wait for shell for 10x longer (50m)
This commit is contained in:
xeji 2018-10-30 11:37:41 +01:00 committed by GitHub
commit 8bbdee09dd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;