This is an automated email from the ASF dual-hosted git repository. acassis pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git
The following commit(s) were added to refs/heads/master by this push: new 2ce6be617 testing/ostest: Fix config name 2ce6be617 is described below commit 2ce6be617b9c97dbadf059124011f8c15871d0b5 Author: SPRESENSE <41312067+sprese...@users.noreply.github.com> AuthorDate: Wed May 15 12:39:47 2024 +0900 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();