tests: testsuite: Add Cortex-A case

The test requires a new define to be able to support Cortex-A. Add the
missing define.

Signed-off-by: Carlo Caione <ccaione@baylibre.com>
This commit is contained in:
Carlo Caione 2019-11-11 12:17:20 +00:00 committed by Anas Nashif
commit 18ea3e7fe9

View file

@ -36,6 +36,12 @@ static inline void timestamp_serialize(void)
{ {
__ISB(); __ISB();
} }
#elif defined(CONFIG_CPU_CORTEX_A)
#include <arch/arm/aarch64/cpu.h>
static inline void timestamp_serialize(void)
{
__ISB();
}
#elif defined(CONFIG_CPU_ARCV2) #elif defined(CONFIG_CPU_ARCV2)
#define timestamp_serialize() #define timestamp_serialize()
#elif defined(CONFIG_ARCH_POSIX) #elif defined(CONFIG_ARCH_POSIX)