diff mbox series

[08/14] test: Make bootstd init run only on sandbox

Message ID 20240623203033.1566505-9-sjg@chromium.org
State Accepted
Commit dee65403cc78807a7f6ef19af536d6fd1fd2823d
Delegated to: Tom Rini
Headers show
Series testb: Various tweaks and fixes for Labgrid | expand

Commit Message

Simon Glass June 23, 2024, 8:30 p.m. UTC
Tests for standard boot need disks to be set up, which can only be done
on sandbox, since adjusting disks on real hardware is not currently
supported. Mark the init function as sandbox-only.

Signed-off-by: Simon Glass <sjg@chromium.org>
---

(no changes since v1)

 test/py/tests/test_ut.py | 1 +
 1 file changed, 1 insertion(+)
diff mbox series

Patch

diff --git a/test/py/tests/test_ut.py b/test/py/tests/test_ut.py
index c169c835e38..58205066ec8 100644
--- a/test/py/tests/test_ut.py
+++ b/test/py/tests/test_ut.py
@@ -470,6 +470,7 @@  def test_ut_dm_init(u_boot_console):
         fh.write(data)
 
 @pytest.mark.buildconfigspec('cmd_bootflow')
+@pytest.mark.buildconfigspec('sandbox')
 def test_ut_dm_init_bootstd(u_boot_console):
     """Initialise data for bootflow tests"""