Kconfig 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Industrial I/O subsystem unit tests configuration
  4. #
  5. # Keep in alphabetical order
  6. config IIO_GTS_KUNIT_TEST
  7. tristate "Test IIO formatting functions" if !KUNIT_ALL_TESTS
  8. depends on KUNIT
  9. select IIO_GTS_HELPER
  10. select TEST_KUNIT_DEVICE_HELPERS
  11. default KUNIT_ALL_TESTS
  12. help
  13. build unit tests for the IIO light sensor gain-time-scale helpers.
  14. For more information on KUnit and unit tests in general, please refer
  15. to the KUnit documentation in Documentation/dev-tools/kunit/.
  16. If unsure, say N. Keep in alphabetical order
  17. config IIO_RESCALE_KUNIT_TEST
  18. tristate "Test IIO rescale conversion functions" if !KUNIT_ALL_TESTS
  19. depends on KUNIT && IIO_RESCALE
  20. default KUNIT_ALL_TESTS
  21. help
  22. Build unit tests for the iio-rescale code.
  23. For more information on KUnit and unit tests in general, please refer
  24. to the KUnit documentation in Documentation/dev-tools/kunit/.
  25. If unsure, say N.
  26. config IIO_FORMAT_KUNIT_TEST
  27. tristate "Test IIO formatting functions" if !KUNIT_ALL_TESTS
  28. depends on KUNIT
  29. default KUNIT_ALL_TESTS
  30. help
  31. build unit tests for the IIO formatting functions.
  32. For more information on KUnit and unit tests in general, please refer
  33. to the KUnit documentation in Documentation/dev-tools/kunit/.
  34. If unsure, say N.