summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2019-12-27 07:46:30 -0700
committerTom Rini <trini@konsulko.com>2020-01-02 10:27:23 -0500
commit1785bf54af07152421ab83794ecf420c111597e4 (patch)
tree75da8f46c5f7143f10eccccb219718569c48e11f /test
parent416338128d790266c8438a84951c5caa35e1e542 (diff)
test: Fix the boardspec for the SPL handoff test
This test currently does not run because it specifies the sandbox board instead of sandbox_spl. Fix it. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'test')
-rw-r--r--test/py/tests/test_handoff.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/py/tests/test_handoff.py b/test/py/tests/test_handoff.py
index 0ee972298c..038f03064a 100644
--- a/test/py/tests/test_handoff.py
+++ b/test/py/tests/test_handoff.py
@@ -6,7 +6,7 @@ import pytest
# Magic number to check that SPL handoff is working
TEST_HANDOFF_MAGIC = 0x14f93c7b
-@pytest.mark.boardspec('sandbox')
+@pytest.mark.boardspec('sandbox_spl')
@pytest.mark.buildconfigspec('spl')
def test_handoff(u_boot_console):
"""Test that of-platdata can be generated and used in sandbox"""