[dpdk-dev,RFC,1/4] test: add lpm routes as a linked resource

Message ID 1462539092-24389-2-git-send-email-bruce.richardson@intel.com (mailing list archive)
State RFC, archived
Delegated to: Thomas Monjalon
Headers

Commit Message

Bruce Richardson May 6, 2016, 12:51 p.m. UTC
  Since we now have the ability to store resource data directly inside
the test binary, take the test_lpm_routes.h header file and make it a
test resource. Later commits will then switch the test C file over to use
this rather than including it directly.

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
---
 app/test/Makefile   | 1 +
 app/test/test_lpm.c | 3 +++
 2 files changed, 4 insertions(+)
  

Patch

diff --git a/app/test/Makefile b/app/test/Makefile
index 90acd63..94ba990 100644
--- a/app/test/Makefile
+++ b/app/test/Makefile
@@ -125,6 +125,7 @@  SRCS-$(CONFIG_RTE_LIBRTE_HASH) += test_hash_perf.c
 SRCS-$(CONFIG_RTE_LIBRTE_HASH) += test_hash_functions.c
 SRCS-$(CONFIG_RTE_LIBRTE_HASH) += test_hash_scaling.c
 
+$(eval $(call resource,test_lpm_data,test_lpm_routes.h))
 SRCS-$(CONFIG_RTE_LIBRTE_LPM) += test_lpm.c
 SRCS-$(CONFIG_RTE_LIBRTE_LPM) += test_lpm6.c
 
diff --git a/app/test/test_lpm.c b/app/test/test_lpm.c
index 40fbbc6..d2aa5de 100644
--- a/app/test/test_lpm.c
+++ b/app/test/test_lpm.c
@@ -46,11 +46,14 @@ 
 #include <time.h>
 
 #include "test.h"
+#include "resource.h"
 
 #include "rte_lpm.h"
 #include "test_lpm_routes.h"
 #include "test_xmmt_ops.h"
 
+REGISTER_LINKED_RESOURCE(test_lpm_data)
+
 #define TEST_LPM_ASSERT(cond) do {                                            \
 	if (!(cond)) {                                                        \
 		printf("Error at line %d: \n", __LINE__);                     \