diff mbox

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

Message ID 1440065161-18967-13-git-send-email-christophe.milard@linaro.org
State Accepted
Commit 7c43218f93db8234ba8484366da3cd9a26af1ab0
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/time/time.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
diff mbox

Patch

diff --git a/test/validation/time/time.c b/test/validation/time/time.c
index 4fa2eaf..4b81c2c 100644
--- a/test/validation/time/time.c
+++ b/test/validation/time/time.c
@@ -62,9 +62,9 @@  void time_test_odp_time_conversion(void)
 }
 
 CU_TestInfo time_suite_time[] = {
-	{"cycles diff", time_test_odp_cycles_diff},
-	{"negative diff", time_test_odp_cycles_negative_diff},
-	{"conversion", time_test_odp_time_conversion},
+	_CU_TEST_INFO(time_test_odp_cycles_diff),
+	_CU_TEST_INFO(time_test_odp_cycles_negative_diff),
+	_CU_TEST_INFO(time_test_odp_time_conversion),
 	 CU_TEST_INFO_NULL
 };