9c1e0dc39a
The EAL API (with doxygen documentation) is moved from common/include/ to include/, which makes more clear that it is the global API for all environments and architectures. Note that the arch-specific and OS-specific include files are not in this global include directory, but include/generic/ should cover the doxygen documentation for them. Signed-off-by: Thomas Monjalon <thomas@monjalon.net> Acked-by: David Marchand <david.marchand@redhat.com>
47 lines
1.5 KiB
C
47 lines
1.5 KiB
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright(c) 2015 Cavium, Inc
|
|
*/
|
|
|
|
#ifndef _RTE_TEST_H_
|
|
#define _RTE_TEST_H_
|
|
|
|
#include <rte_log.h>
|
|
|
|
/* Before including rte_test.h file you can define
|
|
* RTE_TEST_TRACE_FAILURE(_file, _line, _func) macro to better trace/debug test
|
|
* failures. Mostly useful in development phase.
|
|
*/
|
|
#ifndef RTE_TEST_TRACE_FAILURE
|
|
#define RTE_TEST_TRACE_FAILURE(_file, _line, _func)
|
|
#endif
|
|
|
|
|
|
#define RTE_TEST_ASSERT(cond, msg, ...) do { \
|
|
if (!(cond)) { \
|
|
RTE_LOG(DEBUG, EAL, "Test assert %s line %d failed: " \
|
|
msg "\n", __func__, __LINE__, ##__VA_ARGS__); \
|
|
RTE_TEST_TRACE_FAILURE(__FILE__, __LINE__, __func__); \
|
|
return -1; \
|
|
} \
|
|
} while (0)
|
|
|
|
#define RTE_TEST_ASSERT_EQUAL(a, b, msg, ...) \
|
|
RTE_TEST_ASSERT(a == b, msg, ##__VA_ARGS__)
|
|
|
|
#define RTE_TEST_ASSERT_NOT_EQUAL(a, b, msg, ...) \
|
|
RTE_TEST_ASSERT(a != b, msg, ##__VA_ARGS__)
|
|
|
|
#define RTE_TEST_ASSERT_SUCCESS(val, msg, ...) \
|
|
RTE_TEST_ASSERT(val == 0, msg, ##__VA_ARGS__)
|
|
|
|
#define RTE_TEST_ASSERT_FAIL(val, msg, ...) \
|
|
RTE_TEST_ASSERT(val != 0, msg, ##__VA_ARGS__)
|
|
|
|
#define RTE_TEST_ASSERT_NULL(val, msg, ...) \
|
|
RTE_TEST_ASSERT(val == NULL, msg, ##__VA_ARGS__)
|
|
|
|
#define RTE_TEST_ASSERT_NOT_NULL(val, msg, ...) \
|
|
RTE_TEST_ASSERT(val != NULL, msg, ##__VA_ARGS__)
|
|
|
|
#endif /* _RTE_TEST_H_ */
|