From Fedora Project Wiki
(create use all space test) |
No edit summary |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
{{QA/Test_Case | {{QA/Test_Case | ||
|description=This test case tests the installer's ability to remove all partitions (including partitions created by other operation systems) and use all space | |description=This test case tests the installer's ability to remove all partitions (including partitions created by other operation systems) and use GPT disklabel with BIOS boot partition to create new partitions on all space. | ||
|actions= | |actions= | ||
# Boot the installer using any available means ({{filename|netinst/boot.iso}}, PXE, or {{filename|DVD.iso}}) | # Boot the installer using any available means ({{filename|netinst/boot.iso}}, PXE, or {{filename|DVD.iso}}) | ||
Line 7: | Line 7: | ||
# Continue installation, choosing all provided defaults and selecting ''Next'' | # Continue installation, choosing all provided defaults and selecting ''Next'' | ||
|results= | |results= | ||
<ol> | |||
<li> The installer will successfully partition a bootable system using all space </li> | |||
<li> {{filename|BIOS Boot}} partition should be created by default</li> | |||
<li> GPT partition table should be set by default</li> | |||
<li> After installation, system boots GPT disks successfully via {{filename|BIOS Boot}} partition</li> | |||
<li> On the installed system, verify GPT disklabel with this command (replace {{filename|/dev/sda}} if appropriate):</li> | |||
<pre> | |||
# parted /dev/sda | |||
(parted) print | |||
... | |||
Partition Table: gpt | |||
... | |||
</pre> | |||
</ol> | |||
}} | }} | ||
[[Category:Installer_Partitioning_Test_Cases]] | [[Category:Installer_Partitioning_Test_Cases]] | ||
[[Category:Obsolete_Test_Cases]] |
Latest revision as of 09:36, 20 November 2012
Description
This test case tests the installer's ability to remove all partitions (including partitions created by other operation systems) and use GPT disklabel with BIOS boot partition to create new partitions on all space.
How to test
- Boot the installer using any available means (
netinst/boot.iso
, PXE, orDVD.iso
) - Proceed to the installation partition screen by selecting appropriate defaults
- At the disk partitioning screen, select the partition layout Use All Space, select Next
- Continue installation, choosing all provided defaults and selecting Next
Expected Results
- The installer will successfully partition a bootable system using all space
-
BIOS Boot
partition should be created by default - GPT partition table should be set by default
- After installation, system boots GPT disks successfully via
BIOS Boot
partition - On the installed system, verify GPT disklabel with this command (replace
/dev/sda
if appropriate):
# parted /dev/sda (parted) print ... Partition Table: gpt ...