mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2026-03-20 19:21:09 +01:00
Merge pull request #10555 from gilles-peskine-arm/sort-config_check_user-mbedtls
Fix non-determinism when generating mbedtls_config_check_user.h
This commit is contained in:
@@ -37,8 +37,8 @@ def checkers_for_removed_options() -> Iterator[Checker]:
|
||||
yield CryptoInternal(option)
|
||||
else:
|
||||
yield Removed(option, 'Mbed TLS 4.0')
|
||||
for option in (current.internal() - new_public - old_public -
|
||||
crypto.options() - crypto.internal()):
|
||||
for option in sorted(current.internal() - new_public - old_public -
|
||||
crypto.options() - crypto.internal()):
|
||||
yield Internal(option)
|
||||
|
||||
def all_checkers() -> Iterator[Checker]:
|
||||
|
||||
Reference in New Issue
Block a user