Config.in 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. config BR2_PACKAGE_LTP_TESTSUITE_ARCH_SUPPORTS
  2. bool
  3. # Needs __sync*() built-ins for 4-byte data, except on a few
  4. # architectures for which a specific implementation is
  5. # provided in ltp-testsuite
  6. default y if BR2_TOOLCHAIN_HAS_SYNC_4
  7. default y if BR2_arc
  8. # does not build on nios2, cachectl.h issue
  9. depends on !BR2_nios2
  10. config BR2_PACKAGE_LTP_TESTSUITE
  11. bool "ltp-testsuite"
  12. depends on BR2_USE_MMU # fork()
  13. depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
  14. depends on !BR2_TOOLCHAIN_USES_MUSL || BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_11
  15. depends on BR2_PACKAGE_LTP_TESTSUITE_ARCH_SUPPORTS
  16. select BR2_PACKAGE_LIBTIRPC if !BR2_TOOLCHAIN_HAS_NATIVE_RPC
  17. select BR2_PACKAGE_MUSL_FTS if !BR2_TOOLCHAIN_USES_GLIBC
  18. help
  19. The Linux Test Project provides a huge testsuite for Linux.
  20. http://linux-test-project.github.io
  21. if BR2_PACKAGE_LTP_TESTSUITE
  22. config BR2_PACKAGE_LTP_TESTSUITE_OPEN_POSIX
  23. bool "Open POSIX testsuite"
  24. default y
  25. help
  26. Test suite for POSIX compliance. Included with the LTP.
  27. config BR2_PACKAGE_LTP_TESTSUITE_REALTIME
  28. bool "Realtime testsuite"
  29. default y
  30. help
  31. Test suite for realtime kernels. Included with the LTP.
  32. endif
  33. comment "ltp-testsuite needs a toolchain w/ NPTL"
  34. depends on BR2_PACKAGE_LTP_TESTSUITE_ARCH_SUPPORTS
  35. depends on BR2_USE_MMU
  36. depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL