diff options
author | Michal Simek <michal.simek@xilinx.com> | 2016-07-18 08:49:08 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-07-22 14:52:04 -0400 |
commit | 04a4786c7c3907a8e0cf271c02a437858a3ea96d (patch) | |
tree | 35ae4cc67625389987d25c08ad934a0d18403d3d /test | |
parent | 38d592fc33803892298df2d7c60aaab52a55d8fa (diff) |
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 <michal.simek@xilinx.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'test')
-rw-r--r-- | test/py/tests/test_vboot.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/py/tests/test_vboot.py b/test/py/tests/test_vboot.py index 25a78324e25..14ec85b853c 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'. |