summaryrefslogtreecommitdiffstats
path: root/cucumber
diff options
context:
space:
mode:
authorPhilip Hands <phil@hands.com>2016-11-13 22:12:20 +0100
committerHolger Levsen <holger@layer-acht.org>2016-11-15 11:06:34 +0100
commit962cecd0ef5d109b5e07fbb4b1bca43f0fb4e4c1 (patch)
tree0482858c0022c8a2c092aefb5d93ad1de5b31f78 /cucumber
parent438753cf35aced48f326a83b714b77065242bc65 (diff)
downloadjenkins.debian.net-962cecd0ef5d109b5e07fbb4b1bca43f0fb4e4c1.tar.xz
lvc: add a new bootsplash image for stretch alphas
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'cucumber')
-rw-r--r--cucumber/features/images/d-i_boot_graphical-default_9alpha.pngbin0 -> 15478 bytes
-rw-r--r--cucumber/features/step_definitions/common_steps.rb4
2 files changed, 2 insertions, 2 deletions
diff --git a/cucumber/features/images/d-i_boot_graphical-default_9alpha.png b/cucumber/features/images/d-i_boot_graphical-default_9alpha.png
new file mode 100644
index 00000000..ac3063c3
--- /dev/null
+++ b/cucumber/features/images/d-i_boot_graphical-default_9alpha.png
Binary files differ
diff --git a/cucumber/features/step_definitions/common_steps.rb b/cucumber/features/step_definitions/common_steps.rb
index a7b08701..150c21f1 100644
--- a/cucumber/features/step_definitions/common_steps.rb
+++ b/cucumber/features/step_definitions/common_steps.rb
@@ -277,7 +277,7 @@ end
Given /^I select the install mode$/ do
boot_timeout = 60
- on_screen, _ = @screen.waitAny(["d-i_boot_graphical-default.png","d-i_boot_text-default.png","d-i_boot_miniiso.png"], boot_timeout * PATIENCE)
+ on_screen, _ = @screen.waitAny(["d-i_boot_graphical-default.png","d-i_boot_graphical-default_9alpha.png","d-i_boot_text-default.png","d-i_boot_miniiso.png"], boot_timeout * PATIENCE)
debug_log("debug: found '#{on_screen}' in the bootspash", :color => :blue)
if "d-i_boot_miniiso.png" != on_screen
if ("d-i_boot_text-default.png" == on_screen) == ("gui" == @ui_mode)
@@ -567,7 +567,7 @@ Given /^I allow reboot after the install is complete$/ do
end
Given /^I wait for the reboot$/ do
- @screen.waitAny(["d-i_boot_graphical-default.png","d-i_boot_text-default.png","d-i_boot_miniiso.png"], 10 * 60 * PATIENCE)
+ @screen.waitAny(["d-i_boot_graphical-default.png","d-i_boot_graphical-default_9alpha.png","d-i_boot_text-default.png","d-i_boot_miniiso.png"], 10 * 60 * PATIENCE)
end
Given /^I should see a ([a-zA-Z]*) Login prompt$/ do |style|