tests: arch: arm: arm_irq_vector_table: Do not run if GEN_ISR_TABLES=y

The Renesas RA ICU forcibly enables GEN_ISR_TABLES, and it remains
enabled even if it is disabled in prj.conf.
Adding `not CONFIG_GEN_ISR_TABLES` to the filter condition to skip
this case.

Signed-off-by: TOKITA Hiroshi <tokita.hiroshi@gmail.com>
This commit is contained in:
TOKITA Hiroshi 2024-06-18 07:05:24 +09:00 committed by Alberto Escolar
commit e96cfe0478

View file

@ -7,7 +7,7 @@ common:
arch_allow: arm arch_allow: arm
tests: tests:
arch.arm.irq_vector_table: arch.arm.irq_vector_table:
filter: not CONFIG_TRUSTED_EXECUTION_NONSECURE filter: not CONFIG_TRUSTED_EXECUTION_NONSECURE and
not CONFIG_GEN_ISR_TABLES
platform_exclude: platform_exclude:
- mr_canhubk3 - mr_canhubk3
- arduino_uno_r4_minima