mirror of
https://github.com/Mbed-TLS/mbedtls-framework.git
synced 2026-06-06 05:25:18 +00:00
6d5987a954
This lets us define things that we want to have everywhere in test code. In particular, this lets us define platform-specific symbols that influence what system headers declare. This also takes care of including the library configuration. Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
27 lines
485 B
C
27 lines
485 B
C
/**
|
|
* \file arguments.h
|
|
*
|
|
* \brief Manipulation of test arguments.
|
|
*
|
|
* Much of the code is in host_test.function, to be migrated here later.
|
|
*/
|
|
|
|
/*
|
|
* Copyright The Mbed TLS Contributors
|
|
* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef TEST_ARGUMENTS_H
|
|
#define TEST_ARGUMENTS_H
|
|
|
|
#include "test_common.h"
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
typedef union {
|
|
size_t len;
|
|
intmax_t sint;
|
|
} mbedtls_test_argument_t;
|
|
|
|
#endif /* TEST_ARGUMENTS_H */
|