blob: b506be8f5fb8c296fa6fc64f7fa7103378c23754 [file] [log] [blame]
Minos Galanakis2c824b42025-03-20 09:28:45 +00001#!/usr/bin/env python3
2"""Generate test data for ecp functions.
3
4The command line usage, class structure and available methods are the same
5as in generate_bignum_tests.py.
6"""
7
8# Copyright The Mbed TLS Contributors
9# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
10
11import sys
12
13from mbedtls_framework import test_data_generation
14# Import modules containing additional test classes
15# Test function classes in these modules will be registered by
16# the framework
17from mbedtls_framework import ecp # pylint: disable=unused-import
18
19if __name__ == '__main__':
20 # Use the section of the docstring relevant to the CLI as description
21 test_data_generation.main(sys.argv[1:], "\n".join(__doc__.splitlines()[:4]))