tests: remove the exception for arc

the tested feature is supported now, remove the exception

Signed-off-by: Wayne Ren <wei.ren@synopsys.com>
This commit is contained in:
Wayne Ren 2019-08-09 18:23:30 +08:00 committed by Ioannis Glaropoulos
commit 73df065616

View file

@ -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)