Merge tag 'u-boot-amlogic-20200708' of https://gitlab.denx.de/u-boot/custodians/u...
[platform/kernel/u-boot.git] / test / py / tests / test_fs / test_fs_cmd.py
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.boardspec('sandbox')
8 @pytest.mark.buildconfigspec('cmd_fs_generic')
9 def test_dm_compat(u_boot_console):
10     """Test that `fstypes` prints a result which includes `sandbox`."""
11     output = u_boot_console.run_command('fstypes')
12     assert "Supported filesystems:" in output
13     assert "sandbox" in output