From 04a4786c7c3907a8e0cf271c02a437858a3ea96d Mon Sep 17 00:00:00 2001 From: Michal Simek Date: Mon, 18 Jul 2016 08:49:08 +0200 Subject: [PATCH] test/py: vboot can be run only at Sandbox Getting this error: Zynq> sb load hostfs - 100 /home/monstr/data/disk/u-boot/build-zynq_zc706/test.fit Unknown command 'sb' - try 'help' because sb command is present only for Sandbox obj-$(CONFIG_SANDBOX) += host.o that's why mark this test to be run only at Sandbox Signed-off-by: Michal Simek Acked-by: Simon Glass --- test/py/tests/test_vboot.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/py/tests/test_vboot.py b/test/py/tests/test_vboot.py index 25a7832..14ec85b 100644 --- a/test/py/tests/test_vboot.py +++ b/test/py/tests/test_vboot.py @@ -29,6 +29,7 @@ import pytest import sys import u_boot_utils as util +@pytest.mark.boardspec('sandbox') @pytest.mark.buildconfigspec('fit_signature') def test_vboot(u_boot_console): """Test verified boot signing with mkimage and verification with 'bootm'. -- 2.7.4