Lines Matching +full:0 +full:x000007ff
24 u_boot_console.run_command('host bind 0 testdisk.raw')
25 output = u_boot_console.run_command('gpt guid host 0')
34 u_boot_console.run_command('host bind 0 testdisk.raw')
35 output = u_boot_console.run_command('gpt guid host 0 newguid')
45 u_boot_console.run_command('host bind 0 testdisk.raw')
46 u_boot_console.run_command('gpt rename host 0 1 first')
47 output = u_boot_console.run_command('gpt read host 0')
49 u_boot_console.run_command('gpt rename host 0 2 second')
50 output = u_boot_console.run_command('gpt read host 0')
61 u_boot_console.run_command('host bind 0 testdisk.raw')
62 output = u_boot_console.run_command('part list host 0')
63 assert '0x000007ff "first"' in output
64 assert '0x000017ff "second"' in output
65 u_boot_console.run_command('gpt swap host 0 first second')
66 output = u_boot_console.run_command('part list host 0')
67 assert '0x000007ff "second"' in output
68 assert '0x000017ff "first"' in output