From f8173d810086a5e996870848b68645b639a994d1 Mon Sep 17 00:00:00 2001 From: chuaizhzh Date: Tue, 27 Jul 2021 21:38:29 +0800 Subject: [PATCH] =?UTF-8?q?fixed=202d1dd2f=20from=20https://gitee.com/ming?= =?UTF-8?q?xingyu/xts=5Facts/pulls/358=20=E5=88=A0=E9=99=A4=E7=94=A8?= =?UTF-8?q?=E4=BE=8B=E4=B8=AD=E7=9A=84exit=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: chuaizhzh Change-Id: I47cc03a7e59916ec48eb378ea2981bf3766b0db3 --- kernel_lite/kernelcmsis_hal/src/cmsis_task_func_test.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/kernel_lite/kernelcmsis_hal/src/cmsis_task_func_test.c b/kernel_lite/kernelcmsis_hal/src/cmsis_task_func_test.c index bf201a42c..ba7564d47 100755 --- a/kernel_lite/kernelcmsis_hal/src/cmsis_task_func_test.c +++ b/kernel_lite/kernelcmsis_hal/src/cmsis_task_func_test.c @@ -1300,7 +1300,6 @@ LITE_TEST_CASE(CmsisTaskFuncTestSuite, testOsThreadGetId010, Function | MediumTe { g_puwTaskID01 = osThreadGetId(); TEST_ASSERT_NOT_NULL(g_puwTaskID01); - osThreadExit(); }; /** @@ -2007,7 +2006,6 @@ LITE_TEST_CASE(CmsisTaskFuncTestSuite, testOsThreadGetName010, Function | Medium g_puwTaskID01 = osThreadGetId(); attr.name = osThreadGetName(g_puwTaskID01); TEST_ASSERT_NOT_NULL(attr.name); - osThreadExit(); }; /** @@ -2201,7 +2199,6 @@ LITE_TEST_CASE(CmsisTaskFuncTestSuite, testOsThreadGetState010, Function | Mediu g_puwTaskID01 = osThreadGetId(); state = osThreadGetState(g_puwTaskID01); TEST_ASSERT_EQUAL_INT(osThreadRunning, state); - osThreadExit(); }; /** @@ -2593,7 +2590,6 @@ LITE_TEST_CASE(CmsisTaskFuncTestSuite, testOsThreadGetStackSize010, Function | M g_puwTaskID01 = osThreadGetId(); attr.stack_size = osThreadGetStackSize(g_puwTaskID01); TEST_ASSERT_GREATER_THAN_INT32(0, attr.stack_size); - osThreadExit(); }; /** -- GitLab