aboutsummaryrefslogtreecommitdiff
path: root/test/py/tests/test_tpm2.py
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2024-05-27 08:56:02 -0600
committerTom Rini <trini@konsulko.com>2024-05-27 08:56:02 -0600
commit46ff00bea5dd2dd247d5e2fdadbf5dcf8653cd9a (patch)
treee49c0ff69ef5d457efc93df68add191b2ac33849 /test/py/tests/test_tpm2.py
parent6c012d6a2f2a24977d5903e88b8d433a720709c6 (diff)
parent89aa8463cdf3919ca4f04fc24ec8b154ff56d97e (diff)
downloadu-boot-WIP/27May2024.zip
u-boot-WIP/27May2024.tar.gz
u-boot-WIP/27May2024.tar.bz2
Merge tag 'tpm-master-27052024' of https://source.denx.de/u-boot/custodians/u-boot-tpmWIP/27May2024
TPM fixes
Diffstat (limited to 'test/py/tests/test_tpm2.py')
-rw-r--r--test/py/tests/test_tpm2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/py/tests/test_tpm2.py b/test/py/tests/test_tpm2.py
index 1d654cd..75f5d31 100644
--- a/test/py/tests/test_tpm2.py
+++ b/test/py/tests/test_tpm2.py
@@ -257,7 +257,7 @@ def test_tpm2_pcr_read(u_boot_console):
updates = int(re.findall(r'\d+', str)[0])
# Check the output value
- assert 'PCR #10 content' in read_pcr
+ assert 'PCR #10 sha256 32 byte content' in read_pcr
assert '00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00' in read_pcr
@pytest.mark.buildconfigspec('cmd_tpm_v2')