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 10873c6b59ce5cc22a3f2b20e1d7617ad04a427a
Author: tengshuangshuang <[email protected]>
AuthorDate: Wed Jan 8 22:02:49 2025 +0800

    testing: specify arch kconfig for testsuites
    
    Specify architecture configuration in testsuites Kconfig to ensure
    correct architecture-specific settings and build configurations.
    
    Signed-off-by: tengshuangshuang <[email protected]>
---
 testing/testsuites/Kconfig | 24 ++----------------------
 1 file changed, 2 insertions(+), 22 deletions(-)

diff --git a/testing/testsuites/Kconfig b/testing/testsuites/Kconfig
index 8c1eb2015..eb2cd4547 100644
--- a/testing/testsuites/Kconfig
+++ b/testing/testsuites/Kconfig
@@ -35,30 +35,14 @@ 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"
@@ -66,21 +50,17 @@ config CM_PTHREAD_TEST
 
 config CM_SOCKET_TEST
        bool "enable socket test"
-       depends on NET
        default n
+       depends on NET && NETDEV_LATEINIT
 
 config CM_SYSCALL_TEST
        bool "enable syscall test"
        default n
+       depends on PIPES && SCHED_HAVE_PARENT && FS_TMPFS && ARCH_SETJMP_H && 
PSEUDOFS_SOFTLINKS
 
 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

Reply via email to