e68e113f76
It's not really a good idea to have the comments that explain the test_flags in *every* test, because they can go stale and then we either have to live with them being old or update them all. Like, now. So let's just take 'em all out. There's always a reference in the openQA and os-autoinst docs, and those get updated faster. More importantly, add the new `ignore_failure` flag to relevant tests - all the tests that don't have the 'important' or 'fatal' flag at present. Upstream killed the 'important' flag (making all tests 'important' by default), I got it replaced with the 'ignore_failure' flag, we now need to explicitly mark all modules we want the 'ignore_failure' behaviour for.
40 lines
1.1 KiB
Perl
40 lines
1.1 KiB
Perl
use base "installedtest";
|
|
use strict;
|
|
use testapi;
|
|
use utils;
|
|
|
|
sub run {
|
|
# check both layouts are available at the desktop; here,
|
|
# we can expect input method switching to work too
|
|
desktop_switch_layout 'ascii';
|
|
desktop_switch_layout 'native';
|
|
# special testing for Japanese to ensure input method actually
|
|
# works. If we ever test other input-method based languages we can
|
|
# generalize this out, for now we just inline Japanese
|
|
if (get_var("LANGUAGE") eq 'japanese') {
|
|
# wait a bit for input switch to complete
|
|
sleep 3;
|
|
# assume we can test input from whatever 'alt-f1' opens
|
|
send_key "alt-f1";
|
|
type_safely "yama";
|
|
assert_screen "desktop_yama_hiragana";
|
|
send_key "spc";
|
|
assert_screen "desktop_yama_kanji";
|
|
send_key "spc";
|
|
assert_screen "desktop_yama_chooser";
|
|
send_key "esc";
|
|
send_key "esc";
|
|
send_key "esc";
|
|
send_key "esc";
|
|
assert_screen "graphical_desktop_clean";
|
|
}
|
|
}
|
|
|
|
sub test_flags {
|
|
return { fatal => 1 };
|
|
}
|
|
|
|
1;
|
|
|
|
# vim: set sw=4 et:
|