From 5fd5747402d27b5c05e00a88915980c123054057 Mon Sep 17 00:00:00 2001 From: David Brown Date: Fri, 19 Feb 2021 14:19:51 -0700 Subject: [PATCH] Add missing header to cpp_dummy_build.cpp test Part of build_default_make_gcc_and_cxx compares the list of headers included by `programs/test/cpp_dummy_build.cpp` and the actual headers present. Add in the missing `mbedtls/psa_config.h` file to this list so that this test passes. Signed-off-by: David Brown --- programs/test/cpp_dummy_build.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/programs/test/cpp_dummy_build.cpp b/programs/test/cpp_dummy_build.cpp index 5abb46a46..d0526820c 100644 --- a/programs/test/cpp_dummy_build.cpp +++ b/programs/test/cpp_dummy_build.cpp @@ -44,6 +44,7 @@ #include "mbedtls/cipher_internal.h" #include "mbedtls/cmac.h" #include "mbedtls/compat-1.3.h" +#include "mbedtls/config_psa.h" #include "mbedtls/ctr_drbg.h" #include "mbedtls/debug.h" #include "mbedtls/des.h"