diff options
Diffstat (limited to 'cucumber')
-rw-r--r-- | cucumber/features/images/d-i_gui_InstallGRUB-heading.png | bin | 0 -> 7340 bytes | |||
-rw-r--r-- | cucumber/features/step_definitions/common_steps.rb | 4 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cucumber/features/images/d-i_gui_InstallGRUB-heading.png b/cucumber/features/images/d-i_gui_InstallGRUB-heading.png Binary files differnew file mode 100644 index 00000000..bfd59e67 --- /dev/null +++ b/cucumber/features/images/d-i_gui_InstallGRUB-heading.png 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 |