Merge pull request #9916 from kfnta/skip_spm_hal_m33

Skip test on Cortex M33 devices
pull/9988/head
Martin Kojtal 2019-03-04 10:51:14 +01:00 committed by GitHub
commit 9f6156abb3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -27,6 +27,10 @@
#error [NOT_SUPPORTED] Disable this Test until FUTURE_SEQUANA_PSA enables Memory protection
#endif
#if defined(__CORTEX_M33)
#error [NOT_SUPPORTED] Cannot run on M33 core as SecureFault is implemented in secure-side and cant be remapped
#endif
#include "utest/utest.h"
#include "unity/unity.h"
#include "greentea-client/test_env.h"