mirror of
https://github.com/Mbed-TLS/mbedtls-framework.git
synced 2026-06-05 21:15:09 +00:00
7e011cca07
Move a bunch of files from `scripts` and `mbedtls/scripts` to the framework. The following files will be added (moved from Mbed TLS `development`): * `scripts/ecp_comb_table.py` * `scripts/massif_max.pl` * `tests/scripts/audit-validity-dates.py` (moved to `scripts/`) * `tests/scripts/gen_ctr_drbg.pl` (moved to `scripts/`) * `tests/scripts/gen_gcm_decrypt.pl` (moved to `scripts/`) * `tests/scripts/gen_gcm_encrypt.pl` (moved to `scripts/`) * `tests/scripts/gen_pkcs1_v21_sign_verify.pl` (moved to `scripts/`) * `tests/scripts/generate-afl-tests.sh` (moved to `scripts/`) * `tests/scripts/generate_server9_bad_saltlen.py` (moved to `scripts/`) * `tests/scripts/run-metatests.sh` (moved to `scripts/`) * `tests/scripts/run_demos.py` (moved to `scripts/`) * `tests/scripts/test_config_script.py` (moved to `scripts/`) Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com> Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
17 lines
459 B
Python
Executable File
17 lines
459 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""
|
|
Generate miscellaneous TLS test cases relating to the handshake.
|
|
|
|
Transitional wrapper to facilitate the migration of consuming branches.
|
|
"""
|
|
|
|
# Copyright The Mbed TLS Contributors
|
|
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
|
|
|
|
import sys
|
|
from mbedtls_framework import tls_handshake_tests
|
|
|
|
if __name__ == '__main__':
|
|
sys.argv[1:1] = ["--no-tls12-client-hello-defragmentation-support"]
|
|
tls_handshake_tests.main()
|