summaryrefslogtreecommitdiffstats
path: root/cucumber/features/step_definitions
diff options
context:
space:
mode:
authorPhilip Hands <phil@hands.com>2016-11-27 14:47:03 +0100
committerPhilip Hands <phil@hands.com>2016-11-27 17:16:19 +0100
commit2400975f23b84dacf095e216ce0f94a6d7e10523 (patch)
tree19b04e90b06945ced97dd7771504148116ce763d /cucumber/features/step_definitions
parent4a0d8da48ca045b7d975d66bcfb2a3bdb51e613d (diff)
downloadjenkins.debian.net-2400975f23b84dacf095e216ce0f94a6d7e10523.tar.xz
lvc: Edu install does not prompt about GRUB
Diffstat (limited to 'cucumber/features/step_definitions')
-rw-r--r--cucumber/features/step_definitions/common_steps.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/cucumber/features/step_definitions/common_steps.rb b/cucumber/features/step_definitions/common_steps.rb
index 16caf653..73511666 100644
--- a/cucumber/features/step_definitions/common_steps.rb
+++ b/cucumber/features/step_definitions/common_steps.rb
@@ -573,12 +573,12 @@ Given /^I wait while the bulk of the packages are installed$/ do
@screen.wait(diui_png("InstallSoftware"), 10)
debug_log("debug: we see InstallSoftware", :color => :blue)
failed = false
- try_for(180*60, :msg => "it seems that the install stalled (timing-out after 2 hours)") do
+ try_for(180*60, :msg => "it seems that the install stalled (timing-out after 3 hours)") do
found = false
sleep(30)
debug_log("debug: check for Install GRUB/Software", :color => :blue)
if $vm.is_running?
- hit, _ = @screen.waitAny([diui_png("InstallGRUB"),diui_png("InstallGRUB-heading"),diui_png("InstallationStepFailed"),diui_png("InstallSoftware")], 10)
+ hit, _ = @screen.waitAny([diui_png("InstallGRUB"),diui_png("InstallGRUB-heading"),diui_png("InstallComplete"),diui_png("InstallationStepFailed"),diui_png("InstallSoftware")], 10)
else
found = true
hit = ''
@@ -607,7 +607,7 @@ Given /^I wait while the bulk of the packages are installed$/ do
debug_log("debug: pressed F1", :color => :blue)
sleep(20)
end
- when diui_png("InstallGRUB"), diui_png("InstallGRUB-heading")
+ when diui_png("InstallGRUB"), diui_png("InstallGRUB-heading"), diui_png("InstallComplete")
found = true
end