From 73df065616e70f61e49b572a45b97d51e710b7e1 Mon Sep 17 00:00:00 2001 From: Wayne Ren Date: Fri, 9 Aug 2019 18:23:30 +0800 Subject: [PATCH] tests: remove the exception for arc the tested feature is supported now, remove the exception Signed-off-by: Wayne Ren --- tests/kernel/mem_protect/userspace/src/main.c | 20 ------------------- 1 file changed, 20 deletions(-) diff --git a/tests/kernel/mem_protect/userspace/src/main.c b/tests/kernel/mem_protect/userspace/src/main.c index 7806cae3592..e83d33bb974 100644 --- a/tests/kernel/mem_protect/userspace/src/main.c +++ b/tests/kernel/mem_protect/userspace/src/main.c @@ -1117,47 +1117,27 @@ void test_object_recycle(void) void test_oops_panic(void) { -#if !defined(CONFIG_ARC) test_oops(K_ERR_KERNEL_PANIC, K_ERR_KERNEL_OOPS); -#else - ztest_test_skip(); /* FIXME: #17590 */ -#endif } void test_oops_oops(void) { -#if !defined(CONFIG_ARC) test_oops(K_ERR_KERNEL_OOPS, K_ERR_KERNEL_OOPS); -#else - ztest_test_skip(); /* FIXME: #17590 */ -#endif } void test_oops_exception(void) { -#if !defined(CONFIG_ARC) test_oops(K_ERR_CPU_EXCEPTION, K_ERR_KERNEL_OOPS); -#else - ztest_test_skip(); /* FIXME: #17590 */ -#endif } void test_oops_maxint(void) { -#if !defined(CONFIG_ARC) test_oops(INT_MAX, K_ERR_KERNEL_OOPS); -#else - ztest_test_skip(); /* FIXME: #17590 */ -#endif } void test_oops_stackcheck(void) { -#if !defined(CONFIG_ARC) test_oops(K_ERR_STACK_CHK_FAIL, K_ERR_STACK_CHK_FAIL); -#else - ztest_test_skip(); /* FIXME: #17590 */ -#endif } void test_main(void)