diff mbox

[PATCHv2,13/13] validation: timer: using _CU_TEST_INFO()

Message ID 1440065161-18967-14-git-send-email-christophe.milard@linaro.org
State Accepted
Commit ea7c466df481ff8071baffc58cb5dba0f7bb8ad2
Headers show

Commit Message

Christophe Milard Aug. 20, 2015, 10:06 a.m. UTC
Signed-off-by: Christophe Milard <christophe.milard@linaro.org>
Reviewed-by: Stuart Haslam <stuart.haslam@linaro.org>
---
 test/validation/timer/timer.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
diff mbox

Patch

diff --git a/test/validation/timer/timer.c b/test/validation/timer/timer.c
index 30b2b43..2d04090 100644
--- a/test/validation/timer/timer.c
+++ b/test/validation/timer/timer.c
@@ -530,10 +530,10 @@  void timer_test_odp_timer_all(void)
 }
 
 CU_TestInfo timer_suite[] = {
-	{"test_timeout_pool_alloc",  timer_test_timeout_pool_alloc},
-	{"test_timeout_pool_free",  timer_test_timeout_pool_free},
-	{"test_odp_timer_cancel",  timer_test_odp_timer_cancel},
-	{"test_odp_timer_all",  timer_test_odp_timer_all},
+	_CU_TEST_INFO(timer_test_timeout_pool_alloc),
+	_CU_TEST_INFO(timer_test_timeout_pool_free),
+	_CU_TEST_INFO(timer_test_odp_timer_cancel),
+	_CU_TEST_INFO(timer_test_odp_timer_all),
 	CU_TEST_INFO_NULL,
 };