mirror of
https://github.com/Mbed-TLS/mbedtls-framework.git
synced 2026-09-21 09:27:22 +00:00
Include `"test_common.h"` as the first thing in C files, and `<test/build_info.h>` as the first thing in header files. This requires moving `<test/test_common.h>` to its intended location `"test_common.h"`. Signed-off-by: Gilles Peskine <[email protected]>
27 lines
484 B
C
27 lines
484 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 "build_info.h"
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
typedef union {
|
|
size_t len;
|
|
intmax_t sint;
|
|
} mbedtls_test_argument_t;
|
|
|
|
#endif /* TEST_ARGUMENTS_H */
|