Merge pull request #10394 from gilles-peskine-arm/threading-1.0-alt-build-mbedtls

Remove unused test headers
This commit is contained in:
Gilles Peskine 2026-09-01 11:00:04 +02:00 committed by GitHub
commit a5a368690e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 1 additions and 50 deletions

View File

@ -6,7 +6,7 @@ EXTRACT_ALL = YES
EXTRACT_PRIVATE = YES EXTRACT_PRIVATE = YES
EXTRACT_STATIC = YES EXTRACT_STATIC = YES
CASE_SENSE_NAMES = NO CASE_SENSE_NAMES = NO
INPUT = ../include input ../tf-psa-crypto/include ../tests/include/alt-dummy INPUT = ../include input ../tf-psa-crypto/include
FILE_PATTERNS = *.h FILE_PATTERNS = *.h
EXCLUDE = ../tf-psa-crypto/include/mbedtls/private EXCLUDE = ../tf-psa-crypto/include/mbedtls/private
RECURSIVE = YES RECURSIVE = YES

View File

@ -1,16 +0,0 @@
/* platform_alt.h with dummy types for MBEDTLS_PLATFORM_SETUP_TEARDOWN_ALT */
/*
* Copyright The Mbed TLS Contributors
* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
*/
#ifndef PLATFORM_ALT_H
#define PLATFORM_ALT_H
typedef struct mbedtls_platform_context {
int dummy;
}
mbedtls_platform_context;
#endif /* platform_alt.h */

View File

@ -1,14 +0,0 @@
/* threading_alt.h with dummy types for MBEDTLS_THREADING_ALT */
/*
* Copyright The Mbed TLS Contributors
* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
*/
#ifndef THREADING_ALT_H
#define THREADING_ALT_H
typedef struct mbedtls_threading_mutex_t {
int dummy;
} mbedtls_threading_mutex_t;
#endif /* threading_alt.h */

View File

@ -1,19 +0,0 @@
/* timing_alt.h with dummy types for MBEDTLS_TIMING_ALT */
/*
* Copyright The Mbed TLS Contributors
* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
*/
#ifndef TIMING_ALT_H
#define TIMING_ALT_H
struct mbedtls_timing_hr_time {
int dummy;
};
typedef struct mbedtls_timing_delay_context {
int dummy;
} mbedtls_timing_delay_context;
#endif /* timing_alt.h */