Config.in 691 B

123456789101112131415161718
  1. config BR2_PACKAGE_CUKINIA
  2. bool "cukinia"
  3. depends on BR2_PACKAGE_BUSYBOX || BR2_PACKAGE_GAWK
  4. help
  5. Cukinia is designed to help Linux-based embedded firmware
  6. developers run system-level validation tests on their product.
  7. It provides a simple POSIX shell overlay, and primitives to
  8. make sure system integrations and features keep behaving the
  9. way they should.
  10. By default, cukinia reports colorized test results on stdout,
  11. but can also report them as CSV and JUnit-XML for easy
  12. integration with CI systems such as Jenkins.
  13. https://github.com/savoirfairelinux/cukinia
  14. comment "cukinia needs busybox or gawk"
  15. depends on !(BR2_PACKAGE_BUSYBOX || BR2_PACKAGE_GAWK)