Niel Fourie | 0ffdfbd | 2020-03-24 16:17:03 +0100 | [diff] [blame^] | 1 | # SPDX-License-Identifier: GPL-2.0 |
| 2 | # Copyright (C) 2020 |
| 3 | # Niel Fourie, DENX Software Engineering, lusus@denx.de |
| 4 | |
| 5 | import pytest |
| 6 | |
| 7 | @pytest.mark.buildconfigspec('cmd_part') |
| 8 | @pytest.mark.buildconfigspec('partitions') |
| 9 | @pytest.mark.buildconfigspec('efi_partition') |
| 10 | def test_dm_compat(u_boot_console): |
| 11 | """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 |