Lines Matching full:gpt
5 # Test GPT manipulation commands.
17 """Disk Image used by the GPT tests."""
76 """Test the gpt read command."""
79 output = u_boot_console.run_command('gpt read host 0')
92 """Test the gpt verify command."""
95 output = u_boot_console.run_command('gpt verify host 0')
96 assert 'Verify GPT: success!' in output
102 """Test the gpt guid command."""
105 output = u_boot_console.run_command('gpt guid host 0')
112 """Test the gpt guid command to save GUID into a string."""
115 pytest.skip('gpt command not supported')
117 output = u_boot_console.run_command('gpt guid host 0 newguid')
127 """Test the gpt rename command to write partition names."""
130 u_boot_console.run_command('gpt rename host 0 1 first')
131 output = u_boot_console.run_command('gpt read host 0')
133 u_boot_console.run_command('gpt rename host 0 2 second')
134 output = u_boot_console.run_command('gpt read host 0')
146 """Test the gpt swap command to exchange two partition names."""
152 u_boot_console.run_command('gpt swap host 0 first second')
162 """Test the gpt write command."""
165 output = u_boot_console.run_command('gpt write host 0 "name=all,size=0"')
166 assert 'Writing GPT: success!' in output
169 …output = u_boot_console.run_command('gpt write host 0 "uuid_disk=375a56f7-d6c9-4e81-b5f0-09d41ca89…
170 assert 'Writing GPT: success!' in output
174 output = u_boot_console.run_command('gpt guid host 0')