1 /* 2 * Copyright (c) 2017 Intel Corporation 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #if !defined(CONFIG_CPU_CORTEX_M) 8 #error project can only run on Cortex-M 9 #endif 10 11 #include <zephyr/ztest.h> 12 13 ZTEST_SUITE(vector_table, NULL, NULL, NULL, NULL, NULL); 14