From 22ec2aefa9745c39a0d1c730fa85e74b5cde3bcc Mon Sep 17 00:00:00 2001 From: David Horstmann Date: Wed, 30 Aug 2023 15:34:34 +0100 Subject: [PATCH] Fix unnecessary header prefixes in tests Remove unnecessary "../library" prefix from test suite includes. This makes the tests repo-agnostic between the mbedtls and psa-crypto repos. Signed-off-by: David Horstmann --- tests/suites/test_suite_common.function | 2 +- tests/suites/test_suite_psa_its.function | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/suites/test_suite_common.function b/tests/suites/test_suite_common.function index a583e46043..5c5700c25b 100644 --- a/tests/suites/test_suite_common.function +++ b/tests/suites/test_suite_common.function @@ -1,5 +1,5 @@ /* BEGIN_HEADER */ -#include "../library/common.h" +#include "common.h" void fill_arrays(unsigned char *a, unsigned char *b, unsigned char *r1, unsigned char *r2, size_t n) { diff --git a/tests/suites/test_suite_psa_its.function b/tests/suites/test_suite_psa_its.function index cb11f189a3..0f66c79517 100644 --- a/tests/suites/test_suite_psa_its.function +++ b/tests/suites/test_suite_psa_its.function @@ -10,7 +10,7 @@ * before changing how test data is constructed or validated. */ -#include "../library/psa_crypto_its.h" +#include "psa_crypto_its.h" #include "test/psa_helpers.h"