diff options
author | Patrick Delaunay <patrick.delaunay@foss.st.com> | 2021-11-30 15:33:53 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-01-14 12:26:42 -0500 |
commit | 0a4512b5fba8018a3c57ed5be67c5565f5860864 (patch) | |
tree | 1d52de1b1e903b594b6a3bda6396ce086a9608b6 /test | |
parent | a398a51ccc68c0a7aee14f8328dc86a1a4cfba85 (diff) | |
download | u-boot-0a4512b5fba8018a3c57ed5be67c5565f5860864.zip u-boot-0a4512b5fba8018a3c57ed5be67c5565f5860864.tar.gz u-boot-0a4512b5fba8018a3c57ed5be67c5565f5860864.tar.bz2 |
test: test_lsblk: Mark as sandbox specific
This test checks for output specific to the sandbox blk device
"sandbox_host_blk", mark it as sandbox specific.
Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/py/tests/test_lsblk.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/py/tests/test_lsblk.py b/test/py/tests/test_lsblk.py index 40ffe01..a719a48 100644 --- a/test/py/tests/test_lsblk.py +++ b/test/py/tests/test_lsblk.py @@ -4,6 +4,7 @@ import pytest +@pytest.mark.boardspec('sandbox') @pytest.mark.buildconfigspec('blk') @pytest.mark.buildconfigspec('cmd_lsblk') def test_lsblk(u_boot_console): |