blob: c925547c7bce4c711ddf425451323408ad05bbbe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# 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_fstypes(ubman):
"""Test that `fstypes` prints a result which includes `sandbox`."""
output = ubman.run_command('fstypes')
assert "Supported filesystems:" in output
assert "sandbox" in output
|