mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-09-01 22:53:05 +00:00
The link support is no longer limited to the pseudo file system and now covers both soft (symbolic) links and hard links across the VFS. Update all references to the renamed configuration option PSEUDOFS_SOFTLINKS, which has been renamed to FS_LINKS in the NuttX kernel, so that nshlib, the interpreters, adb, tlpi and the test suites keep building. This must be merged together with the corresponding NuttX change that performs the actual kernel-side rename. Signed-off-by: zhengyu16 <zhengyu16@xiaomi.com>
66 lines
1.2 KiB
Text
66 lines
1.2 KiB
Text
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
config TESTS_TESTSUITES
|
|
tristate "vela test suite"
|
|
default n
|
|
depends on TESTING_CMOCKA
|
|
---help---
|
|
Enable testsuites for the vela
|
|
|
|
if TESTS_TESTSUITES
|
|
|
|
menu "Testsuite cases"
|
|
|
|
config TESTS_TESTSUITES_MOUNT_DIR
|
|
string "Mount directory for the testsuites"
|
|
default "/data"
|
|
|
|
config TESTS_TESTSUITES_PRIORITY
|
|
int "Testsuites task priority"
|
|
default 99
|
|
|
|
config TESTS_TESTSUITES_STACKSIZE
|
|
int "Testsuites stack size"
|
|
default 16384
|
|
|
|
config CM_FS_TEST
|
|
bool "enable fs test"
|
|
default n
|
|
depends on FS_LINKS
|
|
|
|
config CM_SCHED_TEST
|
|
bool "enable schedule test"
|
|
default n
|
|
|
|
config CM_MM_TEST
|
|
bool "enable MM test"
|
|
default n
|
|
|
|
config CM_TIME_TEST
|
|
bool "enable time test"
|
|
depends on !DISABLE_POSIX_TIMERS && SIG_EVTHREAD
|
|
default n
|
|
|
|
config CM_PTHREAD_TEST
|
|
bool "enable pthread test"
|
|
default n
|
|
|
|
config CM_SOCKET_TEST
|
|
bool "enable socket test"
|
|
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 && FS_LINKS
|
|
|
|
config CM_MUTEX_TEST
|
|
bool "enable mutex test"
|
|
default n
|
|
|
|
endmenu
|
|
endif # TESTS_TESTSUITES
|