1# SPDX-License-Identifier: GPL-2.0+ 2# Copyright (c) 2016 Google, Inc 3 4import pytest 5 6# Magic number to check that SPL handoff is working 7TEST_HANDOFF_MAGIC = 0x14f93c7b 8 9@pytest.mark.boardspec('sandbox_spl') 10@pytest.mark.buildconfigspec('spl') 11def test_handoff(ubman): 12 """Test that of-platdata can be generated and used in sandbox""" 13 response = ubman.run_command('sb handoff') 14 assert ('SPL handoff magic %x' % TEST_HANDOFF_MAGIC) in response 15