tests: Fix header inclusion

When building tests, the path of the library
directory is part of the possible paths for
the includes thus no need to construct it
manually when including headers.

Signed-off-by: Ronald Cron <ronald.cron@arm.com>
This commit is contained in:
Ronald Cron 2023-07-06 14:19:49 +02:00
parent 03ea8f8d0a
commit 2e3795dc3c
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@
#include <string.h>
#include <mbedtls/entropy.h>
#include "../../library/alignment.h"
#include <alignment.h>
int mbedtls_test_rnd_std_rand(void *rng_state,
unsigned char *output,

View File

@ -1,5 +1,5 @@
/* BEGIN_HEADER */
#include "../library/alignment.h"
#include <alignment.h>
#include <stdint.h>