From 346458383bc65c96acc06fcdc601c9cce2d09d81 Mon Sep 17 00:00:00 2001 From: Philip Hands Date: Tue, 24 Jan 2017 22:39:10 +0100 Subject: lvc: look out for the "No Kernel Modules" screen, and fail if seen Signed-off-by: Holger Levsen --- cucumber/features/step_definitions/common_steps.rb | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'cucumber/features/step_definitions/common_steps.rb') diff --git a/cucumber/features/step_definitions/common_steps.rb b/cucumber/features/step_definitions/common_steps.rb index 3f7eb1b5..497d6615 100644 --- a/cucumber/features/step_definitions/common_steps.rb +++ b/cucumber/features/step_definitions/common_steps.rb @@ -461,8 +461,17 @@ Given /^I select the non-GUI task$/ do end Given /^I select Combi Debian-Edu profile$/ do - @screen.wait(diui_png("Edu-Profile"), 2 * 60 * PATIENCE) + on_screen, _ = @screen.waitAny([diui_png("Edu-Profile"),diui_png("NoKernelModules")], 2 * 60 * PATIENCE) # just acept the default combination + if on_screen == diui_png("NoKernelModules") + if "gui" == @ui_mode + @screen.type(Sikuli::Key.F4) # for this to work, we need to remap the keyboard -- CtrlAltF4 is apparently untypable :-( + else + @screen.type(Sikuli::Key.F4, Sikuli::KeyModifier.ALT) + end + sleep(10) + raise "No Kernel Modules Found (probably version skew between the .iso and the archive)" + end if "gui" == @ui_mode @screen.wait(diui_png("CONTINUEunselected"), 10 * PATIENCE) -- cgit v1.2.3-70-g09d2