From 2ce6be617b9c97dbadf059124011f8c15871d0b5 Mon Sep 17 00:00:00 2001 From: SPRESENSE <41312067+SPRESENSE@users.noreply.github.com> Date: Wed, 15 May 2024 12:39:47 +0900 Subject: [PATCH] testing/ostest: Fix config name CONFIG_ARCH_HAVE_VFORK -> CONFIG_ARCH_HAVE_FORK --- testing/ostest/ostest_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/ostest/ostest_main.c b/testing/ostest/ostest_main.c index b7697d247..985988c14 100644 --- a/testing/ostest/ostest_main.c +++ b/testing/ostest/ostest_main.c @@ -590,7 +590,7 @@ static int user_main(int argc, char *argv[]) check_test_memory_usage(); #endif -#if defined(CONFIG_ARCH_HAVE_VFORK) && defined(CONFIG_SCHED_WAITPID) +#if defined(CONFIG_ARCH_HAVE_FORK) && defined(CONFIG_SCHED_WAITPID) #ifndef CONFIG_BUILD_KERNEL printf("\nuser_main: vfork() test\n"); vfork_test();