test: Fix the boardspec for the SPL handoff test
authorSimon Glass <sjg@chromium.org>
Fri, 27 Dec 2019 14:46:30 +0000 (07:46 -0700)
committerTom Rini <trini@konsulko.com>
Thu, 2 Jan 2020 15:27:23 +0000 (10:27 -0500)
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>
test/py/tests/test_handoff.py

index 0ee972298ca2fe7b2d09fa7f5e59aa4ac0ccc1da..038f03064a6fe3018b93830b31d4d6f33ca25174 100644 (file)
@@ -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"""