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
commit 40a890626d39e12291e64253e6192665206325b4 Author: tengshuangshuang <[email protected]> AuthorDate: Fri Jan 3 15:17:16 2025 +0800 testing: specify arch format Kconfig Specify architecture format in Kconfig to ensure proper configuration handling for different architectures in testing modules. Signed-off-by: tengshuangshuang <[email protected]> --- testing/libc/arch_libc/Kconfig | 2 +- testing/testsuites/Kconfig | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/testing/libc/arch_libc/Kconfig b/testing/libc/arch_libc/Kconfig index c8bdfa9f2..65927909c 100644 --- a/testing/libc/arch_libc/Kconfig +++ b/testing/libc/arch_libc/Kconfig @@ -14,7 +14,7 @@ if TESTING_ARCH_LIBC config TESTING_ARCH_LIBC_STRCPY bool "test strcpy" - default n + default y config TESTING_ARCH_LIBC_PROGNAME string "Program name" diff --git a/testing/testsuites/Kconfig b/testing/testsuites/Kconfig index 8ed01ffcf..8c1eb2015 100644 --- a/testing/testsuites/Kconfig +++ b/testing/testsuites/Kconfig @@ -12,6 +12,8 @@ config TESTS_TESTSUITES if TESTS_TESTSUITES +menu "Testsuite cases" + config TESTS_TESTSUITES_MOUNT_DIR string "Mount directory for the testsuites" default "/data" @@ -27,19 +29,36 @@ config TESTS_TESTSUITES_STACKSIZE config CM_FS_TEST bool "enable fs test" default n + depends on PSEUDOFS_SOFTLINKS config CM_SCHED_TEST bool "enable schedule test" default n +config CM_SYSCALL_TEST + bool "enbale syscall test" + default n + depends on PIPES && SCHED_HAVE_PARENT + config CM_MM_TEST bool "enable MM test" default n +config CM_KVDB_TEST + bool "enbale kvdb test" + default n + depends on KVDB + config CM_TIME_TEST bool "enable time test" depends on !DISABLE_POSIX_TIMERS && SIG_EVTHREAD default n + depends on SIG_EVTHREAD + +config CM_SOCKET_TEST + bool "enbale socket test" + default n + depends on NET && NETDEV_LATEINIT config CM_PTHREAD_TEST bool "enable pthread test" @@ -58,4 +77,10 @@ config CM_MUTEX_TEST bool "enable mutex test" default n +config CM_DFX_TEST + bool "enbale dfx test" + default n + depends on NETUTILS_CJSON && DFX && DFX_EVENT + +endmenu endif # TESTS_TESTSUITES
