test/kni: fix dependency for BSD meson build
[dpdk.git] / test / test / test_kni.c
index 8e08f42..e4839cd 100644 (file)
 
 #include "test.h"
 
+#ifndef RTE_LIBRTE_KNI
+
+static int
+test_kni(void)
+{
+       printf("KNI not supported, skipping test\n");
+       return TEST_SKIPPED;
+}
+
+#else
+
 #include <rte_string_fns.h>
 #include <rte_mempool.h>
 #include <rte_ethdev.h>
@@ -75,6 +86,7 @@ static struct rte_kni_ops kni_ops = {
        .change_mtu = NULL,
        .config_network_if = NULL,
        .config_mac_address = NULL,
+       .config_promiscusity = NULL,
 };
 
 static unsigned lcore_master, lcore_ingress, lcore_egress;
@@ -233,6 +245,7 @@ test_kni_register_handler_mp(void)
                        .change_mtu = kni_change_mtu,
                        .config_network_if = NULL,
                        .config_mac_address = NULL,
+                       .config_promiscusity = NULL,
                };
 
                if (!kni) {
@@ -607,4 +620,6 @@ fail:
        return ret;
 }
 
+#endif
+
 REGISTER_TEST_COMMAND(kni_autotest, test_kni);