]> git.ipfire.org Git - thirdparty/u-boot.git/blame - test/py/tests/test_scp03.py
global: Use proper project name U-Boot
[thirdparty/u-boot.git] / test / py / tests / test_scp03.py
CommitLineData
7f047b4f
IO
1# Copyright (c) 2021 Foundries.io Ltd
2#
3# SPDX-License-Identifier: GPL-2.0+
4#
5# SCP03 command test
6
7"""
1be82afa 8This tests SCP03 command in U-Boot.
7f047b4f
IO
9
10For additional details check doc/usage/scp03.rst
11"""
12
13import pytest
14import u_boot_utils as util
15
16@pytest.mark.buildconfigspec('cmd_scp03')
17def test_scp03(u_boot_console):
18 """Enable and provision keys with SCP03
19 """
20
21 success_str1 = "SCP03 is enabled"
22 success_str2 = "SCP03 is provisioned"
23
24 response = u_boot_console.run_command('scp03 enable')
25 assert success_str1 in response
26 response = u_boot_console.run_command('scp03 provision')
27 assert success_str2 in response