This is an automated email from the ASF dual-hosted git repository.
janc pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-core.git
The following commit(s) were added to refs/heads/master by this push:
new 3f250749a testutil: Remove duplicated os_start call
3f250749a is described below
commit 3f250749a5652198d1b1b9d70421ab35a7874b54
Author: MariuszSkamra <[email protected]>
AuthorDate: Fri Oct 10 12:17:16 2025 +0200
testutil: Remove duplicated os_start call
This removes duplicated os_start() call from tu_create_test_task
function, as it is called from tu_start_os() function.
Signed-off-by: MariuszSkamra <[email protected]>
---
test/testutil/src/testutil.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/test/testutil/src/testutil.c b/test/testutil/src/testutil.c
index 6d1c0f764..d59e9d07c 100644
--- a/test/testutil/src/testutil.c
+++ b/test/testutil/src/testutil.c
@@ -144,8 +144,6 @@ tu_create_test_task(const char *task_name, os_task_func_t
task_handler)
os_task_init(&task, task_name, tu_test_task_handler, (void *)task_handler,
TU_TEST_TASK_PRIO, OS_WAIT_FOREVER, stack,
OS_STACK_ALIGN(TU_TEST_STACK_SIZE));
-
- os_start();
}
/**