From Fedora Project Wiki
(create use all space test) |
(add GPT with BIOS Boot check steps) |
||
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 is used by:</li> | |||
<pre> | |||
#parted | |||
(parted) print | |||
... | |||
Partition Table: gpt | |||
... | |||
</pre> | |||
</ol> | |||
}} | }} | ||
[[Category:Installer_Partitioning_Test_Cases]] | [[Category:Installer_Partitioning_Test_Cases]] |
Revision as of 07:51, 27 July 2011
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 is used by:
#parted (parted) print ... Partition Table: gpt ...