mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-03-23 22:45:22 +00:00
Fix rebase issue in generate_psa_tests.py
Signed-off-by: Przemyslaw Stekiel <przemyslaw.stekiel@mobica.com>
This commit is contained in:
parent
98e38678c2
commit
292759319f
|
@ -88,7 +88,9 @@ def read_implemented_dependencies(filename: str) -> FrozenSet[str]:
|
||||||
return frozenset(symbol
|
return frozenset(symbol
|
||||||
for line in open(filename)
|
for line in open(filename)
|
||||||
for symbol in re.findall(r'\bPSA_WANT_\w+\b', line))
|
for symbol in re.findall(r'\bPSA_WANT_\w+\b', line))
|
||||||
|
_implemented_dependencies = None #type: Optional[FrozenSet[str]] #pylint: disable=invalid-name
|
||||||
def hack_dependencies_not_implemented(dependencies: List[str]) -> None:
|
def hack_dependencies_not_implemented(dependencies: List[str]) -> None:
|
||||||
|
global _implemented_dependencies #pylint: disable=global-statement,invalid-name
|
||||||
if _implemented_dependencies is None:
|
if _implemented_dependencies is None:
|
||||||
_implemented_dependencies = \
|
_implemented_dependencies = \
|
||||||
read_implemented_dependencies('include/psa/crypto_config.h')
|
read_implemented_dependencies('include/psa/crypto_config.h')
|
||||||
|
|
Loading…
Reference in a new issue