mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-21 13:33:08 +00:00
Simplify the blivet resize LVM testcase
I don't think we need an alternative needle for ppc - the current 'boot_inactive' needle should work fine on ppc. Let's just always use that. Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
parent
426747c368
commit
30563c6aed
@ -128,7 +128,7 @@ for user in ("jack", "jim"):
|
||||
testtags.append(f"user_confirm_{user}")
|
||||
# partitioning stuff, there's a bunch of this, all in anaconda.pm
|
||||
# multiple things use this
|
||||
for part in ("swap", "root", "efi", "boot", "bootefi", "home", "vda2"):
|
||||
for part in ("swap", "root", "efi", "boot", "bootefi", "home"):
|
||||
testtags.append(f"anaconda_part_select_{part}")
|
||||
testtags.append(f"anaconda_blivet_part_inactive_{part}")
|
||||
# select_disks
|
||||
|
@ -42,12 +42,7 @@ sub run {
|
||||
}
|
||||
|
||||
# Select the boot partition and reformat it and remount.
|
||||
my $devboot = 'boot';
|
||||
if (get_var('OFW')) {
|
||||
# for PowerPC vda1 is PreP partition.
|
||||
$devboot = 'vda2';
|
||||
}
|
||||
activate($devboot);
|
||||
activate('boot');
|
||||
# Boot is the only ext4 partition on that scheme, so we will use that to make a needle.
|
||||
wait_still_screen 5;
|
||||
custom_blivet_format_partition(type => 'ext4', label => 'boot', mountpoint => '/boot');
|
||||
|
Loading…
Reference in New Issue
Block a user