Kconfig 853 B

1234567891011121314151617181920212223242526272829
  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_RESCALE_KUNIT_TEST
  7. tristate "Test IIO rescale conversion functions" if !KUNIT_ALL_TESTS
  8. depends on KUNIT && IIO_RESCALE
  9. default KUNIT_ALL_TESTS
  10. help
  11. Build unit tests for the iio-rescale code.
  12. For more information on KUnit and unit tests in general, please refer
  13. to the KUnit documentation in Documentation/dev-tools/kunit/.
  14. If unsure, say N.
  15. config IIO_FORMAT_KUNIT_TEST
  16. tristate "Test IIO formatting functions" if !KUNIT_ALL_TESTS
  17. depends on KUNIT
  18. default KUNIT_ALL_TESTS
  19. help
  20. build unit tests for the IIO formatting functions.
  21. For more information on KUnit and unit tests in general, please refer
  22. to the KUnit documentation in Documentation/dev-tools/kunit/.
  23. If unsure, say N.