]> git.droids-corp.org - dpdk.git/blobdiff - app/test/test_ivshmem.c
mbuf: remove rte_ctrlmbuf
[dpdk.git] / app / test / test_ivshmem.c
index 1404ada0b8c284f43c78d50d8a82d60fe9a5e500..2996a860771ed9e589214ea50d4b199b3892ddb2 100644 (file)
@@ -43,8 +43,6 @@
 
 #include "test.h"
 
-#ifdef RTE_LIBRTE_IVSHMEM
-
 #include <rte_common.h>
 #include <rte_ivshmem.h>
 #include <rte_string_fns.h>
@@ -431,12 +429,9 @@ test_ivshmem(void)
 
        return -1;
 }
-#else /* RTE_LIBRTE_IVSHMEM */
 
-int
-test_ivshmem(void)
-{
-       printf("This binary was not compiled with IVSHMEM support!\n");
-       return 0;
-}
-#endif /* RTE_LIBRTE_IVSHMEM */
+static struct test_command ivshmem_cmd = {
+       .command = "ivshmem_autotest",
+       .callback = test_ivshmem,
+};
+REGISTER_TEST_COMMAND(ivshmem_cmd);