1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-08-07 06:42:56 +03:00

Merge pull request #4813 from JoeSubbiani/TranslateCiphersuite_dev

Translate ciphersuite names
This commit is contained in:
Ronald Cron
2021-09-27 08:57:52 +02:00
committed by GitHub
3 changed files with 239 additions and 279 deletions

View File

@@ -2770,12 +2770,15 @@ component_check_python_files () {
tests/scripts/check-python-files.sh
}
component_check_generate_test_code () {
msg "uint test: generate_test_code.py"
component_check_test_helpers () {
msg "unit test: generate_test_code.py"
# unittest writes out mundane stuff like number or tests run on stderr.
# Our convention is to reserve stderr for actual errors, and write
# harmless info on stdout so it can be suppress with --quiet.
./tests/scripts/test_generate_test_code.py 2>&1
msg "unit test: translate_ciphers.py"
python3 -m unittest tests/scripts/translate_ciphers.py 2>&1
}
################################################################