tests: kernel: interrupt: Enable nested interrupt test for Cortex-R

This commit enables nested interrupt test for the Cortex-R platforms
that use the ARM Generic Interrupt Controller (GIC).

Signed-off-by: Stephanos Ioannidis <root@stephanos.io>
This commit is contained in:
Stephanos Ioannidis 2020-03-20 18:24:54 +09:00 committed by Ioannis Glaropoulos
commit 3a405409c5

View file

@ -10,12 +10,9 @@
/*
* Run the nested interrupt test for the supported platforms only.
*
* NOTE: Cortex-R platforms with the ARM GIC are skipped because the arch port
* for these architectures do not support interrupt nesting yet.
*/
#if defined(CONFIG_CPU_CORTEX_M) || defined(CONFIG_CPU_ARCV2) || \
(defined(CONFIG_GIC) && !defined(CONFIG_CPU_CORTEX_R))
defined(CONFIG_GIC)
#define TEST_NESTED_ISR
#endif