blob: 2b5184654db6502332c25af6fe8e9a4b703b2f46 [file] [log] [blame]
Niel Fourie40102bc2020-03-24 16:17:03 +01001# SPDX-License-Identifier: GPL-2.0
2# Copyright (C) 2020
3# Niel Fourie, DENX Software Engineering, lusus@denx.de
4
5import pytest
6
7@pytest.mark.buildconfigspec('cmd_part')
8@pytest.mark.buildconfigspec('partitions')
9@pytest.mark.buildconfigspec('efi_partition')
Bin Meng78307c12022-05-17 23:24:45 +080010def test_part_types(u_boot_console):
Niel Fourie40102bc2020-03-24 16:17:03 +010011 """Test that `part types` prints a result which includes `EFI`."""
12 output = u_boot_console.run_command('part types')
13 assert "Supported partition tables:" in output
14 assert "EFI" in output