mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 14:14:32 +00:00
14 lines
445 B
Python
14 lines
445 B
Python
|
# SPDX-License-Identifier: GPL-2.0
|
||
|
# Copyright (C) 2020
|
||
|
# Niel Fourie, DENX Software Engineering, lusus@denx.de
|
||
|
|
||
|
import pytest
|
||
|
|
||
|
@pytest.mark.boardspec('sandbox')
|
||
|
@pytest.mark.buildconfigspec('cmd_fs_generic')
|
||
|
def test_dm_compat(u_boot_console):
|
||
|
"""Test that `fstypes` prints a result which includes `sandbox`."""
|
||
|
output = u_boot_console.run_command('fstypes')
|
||
|
assert "Supported filesystems:" in output
|
||
|
assert "sandbox" in output
|