diff options
author | Philip Hands <phil@hands.com> | 2016-11-03 23:43:49 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-11-04 00:35:18 +0100 |
commit | c49abfff8a02dbf44ec55ef3aa94b02894042ca4 (patch) | |
tree | 797b99bca8e3fbf0abf97cff75f5d9f1a928262d /cucumber/features/step_definitions | |
parent | 4a893f4e0111a1207ab6726259b9e016e6287eb3 (diff) | |
download | jenkins.debian.net-c49abfff8a02dbf44ec55ef3aa94b02894042ca4.tar.xz |
lvc: look for the heading on the InstallGRUB page (helps preseeding)
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'cucumber/features/step_definitions')
-rw-r--r-- | cucumber/features/step_definitions/common_steps.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cucumber/features/step_definitions/common_steps.rb b/cucumber/features/step_definitions/common_steps.rb index bd119fde..fc05e8a7 100644 --- a/cucumber/features/step_definitions/common_steps.rb +++ b/cucumber/features/step_definitions/common_steps.rb @@ -498,7 +498,7 @@ Given /^I wait while the bulk of the packages are installed$/ do try_for(120*60, :msg => "it seems that the install stalled (timing-out after 2 hours)") do found = false debug_log("debug: check for Install GRUB/Software", :color => :blue) - hit, _ = @screen.waitAny([diui_png("InstallGRUB"),diui_png("InstallationStepFailed"),diui_png("InstallSoftware")], 2*60) + hit, _ = @screen.waitAny([diui_png("InstallGRUB"),diui_png("InstallGRUB-heading"),diui_png("InstallationStepFailed"),diui_png("InstallSoftware")], 2*60) debug_log("debug: found #{hit}", :color => :blue) case hit when diui_png("InstallSoftware"), diui_png("InstallationStepFailed") @@ -522,7 +522,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") + when diui_png("InstallGRUB"), diui_png("InstallGRUB-heading") found = true end |