From 3976dce591df93df12fdf5fd788633eecd07aec3 Mon Sep 17 00:00:00 2001 From: Alberto Escolar Piedras Date: Wed, 14 Aug 2024 11:25:49 +0200 Subject: [PATCH] tests/kernel thread_apis: Switch native_posix to native_sim in comment native_posix is being deprecated, let's update a comment Signed-off-by: Alberto Escolar Piedras --- tests/kernel/threads/thread_apis/src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/kernel/threads/thread_apis/src/main.c b/tests/kernel/threads/thread_apis/src/main.c index 28e1bc29d0d..162f85e5f5f 100644 --- a/tests/kernel/threads/thread_apis/src/main.c +++ b/tests/kernel/threads/thread_apis/src/main.c @@ -636,7 +636,7 @@ ZTEST_USER(threads_lifecycle, test_k_thread_stack_space_get_user) large_stack(&b); /* FIXME: Ideally, the follow condition will assert true: * (a - b) == INT_ARRAY_SIZE * sizeof(int) - * but it is not the case in native_posix, qemu_leon3 and + * but it is not the case in native_sim, qemu_leon3 and * qemu_cortex_a53. Relax check condition here */ zassert_true(b <= a);