mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-21 13:33:08 +00:00
Drop all handling of MODULAR
This was from years ago when we briefly did "modular composes". That died and ain't coming back. Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
parent
51d79a5435
commit
3754ab3d8a
@ -296,11 +296,8 @@ sub get_full_repo {
|
|||||||
# repo URL with flavor and arch, leave hd & NFS ones alone
|
# repo URL with flavor and arch, leave hd & NFS ones alone
|
||||||
# (as for those tests we just use a mounted ISO and URL is complete)
|
# (as for those tests we just use a mounted ISO and URL is complete)
|
||||||
if ($repourl !~ m/^(nfs|hd:)/) {
|
if ($repourl !~ m/^(nfs|hd:)/) {
|
||||||
# Everything variant doesn't exist for modular composes atm,
|
my $arch = get_var("ARCH");
|
||||||
# only Server
|
$repourl .= "/Everything/$arch/os";
|
||||||
my $variant = 'Everything';
|
|
||||||
$variant = 'Server' if (get_var("MODULAR"));
|
|
||||||
$repourl .= "/${variant}/" . get_var("ARCH") . "/os";
|
|
||||||
}
|
}
|
||||||
return $repourl;
|
return $repourl;
|
||||||
}
|
}
|
||||||
|
7
main.pm
7
main.pm
@ -236,13 +236,6 @@ sub _load_early_postinstall_tests {
|
|||||||
_load_instance("tests/disk_guided_encrypted_postinstall", $instance);
|
_load_instance("tests/disk_guided_encrypted_postinstall", $instance);
|
||||||
}
|
}
|
||||||
|
|
||||||
# For now, there's no possibility to get a graphical desktop on
|
|
||||||
# Modular composes, so short-circuit here for those
|
|
||||||
if (get_var("MODULAR")) {
|
|
||||||
_load_instance("tests/_console_wait_login", $instance);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
# Appropriate login method for install type
|
# Appropriate login method for install type
|
||||||
if (get_var("DESKTOP")) {
|
if (get_var("DESKTOP")) {
|
||||||
_load_instance("tests/_graphical_wait_login", $instance);
|
_load_instance("tests/_graphical_wait_login", $instance);
|
||||||
|
@ -7,20 +7,15 @@ sub run {
|
|||||||
my $self = shift;
|
my $self = shift;
|
||||||
# set up appropriate repositories
|
# set up appropriate repositories
|
||||||
repo_setup();
|
repo_setup();
|
||||||
# use --enablerepo=fedora for Modular compose testing (we need to
|
|
||||||
# create and use a non-Modular repo to get some packages which
|
|
||||||
# aren't in Modular Server composes)
|
|
||||||
my $extraparams = '';
|
|
||||||
$extraparams = '--enablerepo=fedora' if (get_var("MODULAR"));
|
|
||||||
# install a desktop and firefox so we can actually try it
|
# install a desktop and firefox so we can actually try it
|
||||||
assert_script_run "dnf ${extraparams} -y groupinstall 'base-x'", 300;
|
assert_script_run "dnf -y groupinstall 'base-x'", 300;
|
||||||
# FIXME: this should probably be in base-x...X seems to fail without
|
# FIXME: this should probably be in base-x...X seems to fail without
|
||||||
assert_script_run "dnf ${extraparams} -y install libglvnd-egl", 180;
|
assert_script_run "dnf -y install libglvnd-egl", 180;
|
||||||
# try to avoid random weird font selection happening
|
# try to avoid random weird font selection happening
|
||||||
assert_script_run "dnf ${extraparams} -y install dejavu-sans-fonts dejavu-sans-mono-fonts dejavu-serif-fonts", 180;
|
assert_script_run "dnf -y install dejavu-sans-fonts dejavu-sans-mono-fonts dejavu-serif-fonts", 180;
|
||||||
# since firefox-85.0-2, firefox doesn't seem to run without this
|
# since firefox-85.0-2, firefox doesn't seem to run without this
|
||||||
assert_script_run "dnf ${extraparams} -y install dbus-glib", 180;
|
assert_script_run "dnf -y install dbus-glib", 180;
|
||||||
assert_script_run "dnf ${extraparams} -y install firefox", 180;
|
assert_script_run "dnf -y install firefox", 180;
|
||||||
}
|
}
|
||||||
|
|
||||||
sub test_flags {
|
sub test_flags {
|
||||||
|
@ -10,8 +10,8 @@ sub run {
|
|||||||
# Select package set. Minimal is the default, if 'default' is specified, skip selection,
|
# Select package set. Minimal is the default, if 'default' is specified, skip selection,
|
||||||
# but verify correct default in some cases
|
# but verify correct default in some cases
|
||||||
my $packageset = get_var('PACKAGE_SET', 'minimal');
|
my $packageset = get_var('PACKAGE_SET', 'minimal');
|
||||||
if ($packageset eq 'default' || get_var('MODULAR')) {
|
if ($packageset eq 'default') {
|
||||||
# we can't or don't want to check the selected package set in these cases
|
# we can't or don't want to check the selected package set in this case
|
||||||
return if (get_var('CANNED') || get_var('LIVE') || get_var('MEMCHECK'));
|
return if (get_var('CANNED') || get_var('LIVE') || get_var('MEMCHECK'));
|
||||||
$self->root_console;
|
$self->root_console;
|
||||||
my $env = 'custom-environment';
|
my $env = 'custom-environment';
|
||||||
|
Loading…
Reference in New Issue
Block a user