Procházet zdrojové kódy

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>
Simon Glass před 4 roky
rodič
revize
1785bf54af
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      test/py/tests/test_handoff.py

+ 1 - 1
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"""