summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorxeji <36407913+xeji@users.noreply.github.com>2018-10-30 11:37:41 +0100
committerGitHub <noreply@github.com>2018-10-30 11:37:41 +0100
commit8bbdee09dd98fb09a7547587e2eb867b1001a4b6 (patch)
tree38042accc51cc34d6a765da50983966193b5c94a /nixos
parent5bb51633672ad0da47efe0e57c4240bf114922b2 (diff)
parent9bc10e12916979c5c620be5b521b9218a0077cba (diff)
downloadnixlib-8bbdee09dd98fb09a7547587e2eb867b1001a4b6.tar
nixlib-8bbdee09dd98fb09a7547587e2eb867b1001a4b6.tar.gz
nixlib-8bbdee09dd98fb09a7547587e2eb867b1001a4b6.tar.bz2
nixlib-8bbdee09dd98fb09a7547587e2eb867b1001a4b6.tar.lz
nixlib-8bbdee09dd98fb09a7547587e2eb867b1001a4b6.tar.xz
nixlib-8bbdee09dd98fb09a7547587e2eb867b1001a4b6.tar.zst
nixlib-8bbdee09dd98fb09a7547587e2eb867b1001a4b6.zip
Merge pull request #49441 from srhb/debug-hydra-failures
NixOS tests: Wait for shell for 10x longer (50m)
Diffstat (limited to 'nixos')
-rw-r--r--nixos/lib/test-driver/Machine.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/nixos/lib/test-driver/Machine.pm b/nixos/lib/test-driver/Machine.pm
index a00fe25c2b8e..abcc1c50d4d8 100644
--- a/nixos/lib/test-driver/Machine.pm
+++ b/nixos/lib/test-driver/Machine.pm
@@ -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;