From 27ea35b743aa3c735d04848b5c795ae0b8cd311b Mon Sep 17 00:00:00 2001 From: Lukasz Wojciechowski Date: Thu, 9 Apr 2020 19:24:53 +0200 Subject: [PATCH] test: remove redundant macro Remove RTE_TEST_TRACE_FAILURE macro definition from app/test/test.h as it might be already defined and cause build problems. Also it is good to leave the decision of additional logs to the final user of test.h and rte_test.h Fixes: 5afc521eac6a ("eal: add test assert macros") Cc: stable@dpdk.org Signed-off-by: Lukasz Wojciechowski Acked-by: Akhil Goyal --- app/test/test.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/test/test.h b/app/test/test.h index ac0c50616c..b07f6c1ef0 100644 --- a/app/test/test.h +++ b/app/test/test.h @@ -22,8 +22,6 @@ # define TEST_TRACE_FAILURE(_file, _line, _func) #endif -#define RTE_TEST_TRACE_FAILURE TEST_TRACE_FAILURE - #include #define TEST_ASSERT RTE_TEST_ASSERT -- 2.20.1