Merge pull request #6578 from gilles-peskine-arm/bignum-test-suite-names-2.28

Backport 2.28: Rename test_suite_bignum for consistency
This commit is contained in:
Gilles Peskine
2022-11-10 14:40:16 +01:00
committed by GitHub
5 changed files with 3 additions and 3 deletions

View File

@@ -6,7 +6,7 @@
#
# Usage: generate-afl-tests.sh <test data file path>
# <test data file path> - should be the path to one of the test suite files
# such as 'test_suite_mpi.data'
# such as 'test_suite_rsa.data'
#
# Copyright The Mbed TLS Contributors
# SPDX-License-Identifier: Apache-2.0

View File

@@ -85,8 +85,8 @@ def combination_pairs(values: List[T]) -> List[Tuple[T, T]]:
class BignumTarget(test_data_generation.BaseTarget, metaclass=ABCMeta):
#pylint: disable=abstract-method
"""Target for bignum (mpi) test case generation."""
target_basename = 'test_suite_mpi.generated'
"""Target for bignum (legacy) test case generation."""
target_basename = 'test_suite_bignum.generated'
class BignumOperation(BignumTarget, metaclass=ABCMeta):