Fixes multiple tests in regard of the PACKAGE_SETs graphical-server and workstation #61

Merged
lumarel merged 4 commits from fix-issue-60 into develop 2021-11-12 01:39:35 +00:00
4 changed files with 20 additions and 0 deletions
Showing only changes of commit af677c8f9c - Show all commits

View File

@ -1,8 +1,13 @@
use base "installedtest"; use base "installedtest";
use strict; use strict;
use testapi; use testapi;
use utils;
sub run { sub run {
my $self = shift;
unless (check_screen "root_console", 0) {
$self->root_console(tty=>4);
}
assert_screen "root_console"; assert_screen "root_console";
my $devboot = 'vda1'; my $devboot = 'vda1';

View File

@ -1,8 +1,13 @@
use base "installedtest"; use base "installedtest";
use strict; use strict;
use testapi; use testapi;
use utils;
sub run { sub run {
my $self = shift;
unless (check_screen "root_console", 0) {
$self->root_console(tty=>4);
}
assert_screen "root_console"; assert_screen "root_console";
# check that lvmthinpool is present: # check that lvmthinpool is present:
# http://atodorov.org/blog/2015/04/14/how-to-find-if-lvm-volume-is-thinly-provisioned/ # http://atodorov.org/blog/2015/04/14/how-to-find-if-lvm-volume-is-thinly-provisioned/

View File

@ -1,8 +1,13 @@
use base "installedtest"; use base "installedtest";
use strict; use strict;
use testapi; use testapi;
use utils;
sub run { sub run {
my $self = shift;
unless (check_screen "root_console", 0) {
$self->root_console(tty=>4);
}
assert_screen "root_console"; assert_screen "root_console";
# check that RAID is used # check that RAID is used
assert_script_run "cat /proc/mdstat | grep 'Personalities : \\\[raid1\\\]'"; assert_script_run "cat /proc/mdstat | grep 'Personalities : \\\[raid1\\\]'";

View File

@ -1,8 +1,13 @@
use base "installedtest"; use base "installedtest";
use strict; use strict;
use testapi; use testapi;
use utils;
sub run { sub run {
my $self = shift;
unless (check_screen "root_console", 0) {
$self->root_console(tty=>4);
}
assert_screen "root_console"; assert_screen "root_console";
my $count = 4; my $count = 4;
my $devroot = 'vda1'; my $devroot = 'vda1';