log.h 332 B

12345678910111213141516
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Copyright (c) 2020, Heinrich Schuchardt <xypron.glpk@gmx.de>
  4. *
  5. * Tests for logging functions
  6. */
  7. #ifndef __TEST_LOG_H__
  8. #define __TEST_LOG_H__
  9. #include <test/test.h>
  10. /* Declare a new logging test */
  11. #define LOG_TEST(_name) UNIT_TEST(_name, 0, log_test)
  12. #endif /* __TEST_LOG_H__ */