app/test: convert all tests to register system
[dpdk.git] / app / test / test_timer.c
index 57b722c..ec826c0 100644 (file)
@@ -457,7 +457,7 @@ timer_sanity_check(void)
        return 0;
 }
 
-int
+static int
 test_timer(void)
 {
        unsigned i;
@@ -520,12 +520,9 @@ test_timer(void)
        return 0;
 }
 
-#else
-
-int
-test_timer(void)
-{
-       return 0;
-}
-
+static struct test_command timer_cmd = {
+       .command = "timer_autotest",
+       .callback = test_timer,
+};
+REGISTER_TEST_COMMAND(timer_cmd);
 #endif