diff mbox series

test: test_lsblk: Mark as sandbox specific

Message ID 20211130153342.1.I72cfa7337b8feb65ef2354983f4acd710ce57232@changeid
State Accepted
Commit 0a4512b5fba8018a3c57ed5be67c5565f5860864
Delegated to: Tom Rini
Headers show
Series test: test_lsblk: Mark as sandbox specific | expand

Commit Message

Patrick Delaunay Nov. 30, 2021, 2:33 p.m. UTC
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>
---

 test/py/tests/test_lsblk.py | 1 +
 1 file changed, 1 insertion(+)

Comments

Tom Rini Jan. 15, 2022, 12:37 p.m. UTC | #1
On Tue, Nov 30, 2021 at 03:33:53PM +0100, Patrick Delaunay wrote:

> 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>

Applied to u-boot/master, thanks!
diff mbox series

Patch

diff --git a/test/py/tests/test_lsblk.py b/test/py/tests/test_lsblk.py
index 40ffe01263..a719a48e6e 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):