From 39569783cdc9b65bdc545703180cae8bcab37a81 Mon Sep 17 00:00:00 2001 From: Michal Sojka Date: Thu, 10 Apr 2014 15:31:52 +0200 Subject: [PATCH 1/1] continuous: Increase timeout in my-oldconfig One second was too small. --- continuous/steps/my-oldconfig.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/continuous/steps/my-oldconfig.pl b/continuous/steps/my-oldconfig.pl index 17080b4..736bf57 100755 --- a/continuous/steps/my-oldconfig.pl +++ b/continuous/steps/my-oldconfig.pl @@ -4,7 +4,7 @@ use Expect; my $exp = Expect->spawn("make oldconfig") or die "Cannot spawn make oldconfig: $!\n"; -my $timeout = 1; +my $timeout = 10; $exp->expect($timeout, [ '^ *choice\[.*\]: ' => sub { $exp->send("\n"); exp_continue; } ], [ '^([^ ]| *[^>0-9]).*\(NEW\) ' => sub { $exp->send("n\n"); exp_continue; } ], -- 2.39.2