From 3daaea858b7f7385b737dbce834c3314710397bf Mon Sep 17 00:00:00 2001 From: TRodziewicz Date: Tue, 20 Jul 2021 13:36:16 +0200 Subject: [PATCH] Changing the places of the mbedtls_test_hook_test_fail callback declaration Signed-off-by: TRodziewicz --- tests/suites/main_test.function | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/suites/main_test.function b/tests/suites/main_test.function index 6a87e8099..e01686534 100644 --- a/tests/suites/main_test.function +++ b/tests/suites/main_test.function @@ -24,7 +24,6 @@ #endif #include "mbedtls/build_info.h" -#include "common.h" /* Test code may use deprecated identifiers only if the preprocessor symbol * MBEDTLS_TEST_DEPRECATED is defined. When building tests, set @@ -239,6 +238,7 @@ $platform_code int main( int argc, const char *argv[] ) { #if defined(MBEDTLS_TEST_HOOKS) + extern void (*mbedtls_test_hook_test_fail)( const char * test, int line, const char * file ); mbedtls_test_hook_test_fail = &mbedtls_test_fail; #if defined(MBEDTLS_ERROR_C) mbedtls_test_hook_error_add = &mbedtls_test_err_add_check;