blob: e3362b85e997aaabc7a9ef37eac44e4794d96c45 [file] [log] [blame]
Heinrich Schuchardtf433d502020-02-26 21:48:18 +01001/* 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
8#ifndef __TEST_LOG_H__
9#define __TEST_LOG_H__
10
11#include <test/test.h>
12
Sean Andersonc1821822020-10-27 19:55:27 -040013#define LOGF_TEST (BIT(LOGF_FUNC) | BIT(LOGF_MSG))
14
Heinrich Schuchardtf433d502020-02-26 21:48:18 +010015/* Declare a new logging test */
Simon Glass0ccbde52024-08-22 07:58:01 -060016#define LOG_TEST(_name) UNIT_TEST(_name, UTF_CONSOLE, log_test)
17#define LOG_TEST_FLAGS(_name, _flags) \
18 UNIT_TEST(_name, _flags | UTF_CONSOLE, log_test)
Heinrich Schuchardtf433d502020-02-26 21:48:18 +010019
20#endif /* __TEST_LOG_H__ */