test/py: tests: gpt: add test_gpt_write_part_type
Add sandbox test on gpt command with partition type for known type. Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com> Reviewed-by: Patrice Chotard <patrice.chotard@foss.st.com>
This commit is contained in:

committed by
Tom Rini

parent
a3a5179b1c
commit
7a598e633a
@@ -330,6 +330,33 @@ def test_gpt_write(state_disk_image, ubman):
|
||||
output = ubman.run_command('gpt guid host 0')
|
||||
assert '375a56f7-d6c9-4e81-b5f0-09d41ca89efe' in output
|
||||
|
||||
@pytest.mark.boardspec('sandbox')
|
||||
@pytest.mark.buildconfigspec('cmd_gpt')
|
||||
@pytest.mark.buildconfigspec('cmd_part')
|
||||
@pytest.mark.buildconfigspec('partition_type_guid')
|
||||
@pytest.mark.requiredtool('sgdisk')
|
||||
def test_gpt_write_part_type(state_disk_image, ubman):
|
||||
"""Test the gpt command with part type uuid."""
|
||||
|
||||
output = ubman.run_command('gpt write host 0 "name=part1,type=data,size=1M;name=part2,size=512K,type=system;name=part3,size=65536,type=u-boot-env;name=part4,size=65536,type=375a56f7-d6c9-4e81-b5f0-09d41ca89efe;name=part5,size=-,type=linux"')
|
||||
assert 'Writing GPT: success!' in output
|
||||
output = ubman.run_command('part list host 0')
|
||||
assert '1\t0x00000022\t0x00000821\t"part1"' in output
|
||||
assert 'ebd0a0a2-b9e5-4433-87c0-68b6b72699c7' in output
|
||||
assert '(data)' in output
|
||||
assert '2\t0x00000822\t0x00000c21\t"part2"' in output
|
||||
assert 'c12a7328-f81f-11d2-ba4b-00a0c93ec93b' in output
|
||||
assert '(EFI System Partition)' in output
|
||||
assert '3\t0x00000c22\t0x00000ca1\t"part3"' in output
|
||||
assert '3de21764-95bd-54bd-a5c3-4abe786f38a8' in output
|
||||
assert '(u-boot-env)' in output
|
||||
assert '4\t0x00000ca2\t0x00000d21\t"part4"' in output
|
||||
assert 'ebd0a0a2-b9e5-4433-87c0-68b6b72699c7' in output
|
||||
assert '(375a56f7-d6c9-4e81-b5f0-09d41ca89efe)' in output
|
||||
assert '5\t0x00000d22\t0x00001fde\t"part5"' in output
|
||||
assert '0fc63daf-8483-4772-8e79-3d69d8477de4' in output
|
||||
assert '(linux)' in output
|
||||
|
||||
@pytest.mark.buildconfigspec('cmd_gpt')
|
||||
@pytest.mark.buildconfigspec('cmd_gpt_rename')
|
||||
@pytest.mark.buildconfigspec('cmd_part')
|
||||
|
Reference in New Issue
Block a user