Skip to content

Commit

Permalink
FIXME
Browse files Browse the repository at this point in the history
Signed-off-by: Erik Larsson <who+github@cnackers.org>
  • Loading branch information
whooo committed Mar 4, 2024
1 parent 6146396 commit 8448348
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/test_fapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

from tpm2_pytss import *

from tpm2_pytss.internal.utils import is_bug_fixed
from tpm2_pytss.internal.utils import is_bug_fixed, _lib_version_atleast

from .TSS2_BaseTest import TpmSimulator
from tpm2_pytss.TSS2_Exception import TSS2_Exception
Expand Down Expand Up @@ -726,7 +726,9 @@ def test_authorize_policy(self, sign_key):
self.fapi.quote(path=key_path, pcrs=[7, 9])

@pytest.mark.skipif(
not is_bug_fixed(fixed_in="3.2"), reason="tpm2-tss bug, see #2080"
_lib_version_atleast("tss2-fapi", "4.0.1-170")
or not is_bug_fixed(fixed_in="3.2"),
reason="tpm2-tss bug, see #2080",
)
def test_policy_signed(self, cryptography_key):
# create external signing key used by the signing authority external to the TPM
Expand Down

0 comments on commit 8448348

Please sign in to comment.