app/test: rework command registration
[dpdk.git] / app / test / test_sched.c
index c7239f8..63ab084 100644 (file)
 #include <rte_sched.h>
 
 
-#define SUBPORT        0
-#define PIPE           1
-#define TC                     2
-#define QUEUE          3
+#define SUBPORT         0
+#define PIPE            1
+#define TC              2
+#define QUEUE           3
 
 static struct rte_sched_subport_params subport_param[] = {
        {
@@ -87,8 +87,7 @@ static struct rte_sched_port_params port_param = {
 
 #define NB_MBUF          32
 #define MBUF_DATA_SZ     (2048 + RTE_PKTMBUF_HEADROOM)
-#define PKT_BURST_SZ     32
-#define MEMPOOL_CACHE_SZ PKT_BURST_SZ
+#define MEMPOOL_CACHE_SZ 0
 #define SOCKET           0
 
 
@@ -214,8 +213,4 @@ test_sched(void)
        return 0;
 }
 
-static struct test_command sched_cmd = {
-       .command = "sched_autotest",
-       .callback = test_sched,
-};
-REGISTER_TEST_COMMAND(sched_cmd);
+REGISTER_TEST_COMMAND(sched_autotest, test_sched);