aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Barach <dave@barachs.net>2018-01-30 14:12:31 -0500
committerDave Barach <dave@barachs.net>2018-01-30 14:12:57 -0500
commit8d6ef60b767fc0348b91b3abbf1aff2b84167c2b (patch)
treee7949701fc8ccb07ab14e9b4d19f9afc9f7e4554
parent28cf3b7da279c0755f6dc345c0973d1e3017e9ca (diff)
Compile valloc.c, install header file, etc.
Change-Id: Ibc252d9ed595be955790ec1c97d8730e43ad89b2 Signed-off-by: Dave Barach <dave@barachs.net>
-rw-r--r--src/vppinfra.am7
-rw-r--r--src/vppinfra/test_valloc.c2
2 files changed, 8 insertions, 1 deletions
diff --git a/src/vppinfra.am b/src/vppinfra.am
index cb8748ca9c9..bf21ea89144 100644
--- a/src/vppinfra.am
+++ b/src/vppinfra.am
@@ -43,6 +43,7 @@ TESTS += test_bihash_template \
test_time \
test_timing_wheel \
test_tw_timer \
+ test_valloc \
test_vec \
test_zvec
endif
@@ -77,6 +78,7 @@ test_socket_SOURCES = vppinfra/test_socket.c
test_time_SOURCES = vppinfra/test_time.c
test_timing_wheel_SOURCES = vppinfra/test_timing_wheel.c
test_tw_timer_SOURCES = vppinfra/test_tw_timer.c
+test_valloc_SOURCES = vppinfra/test_valloc.c
test_vec_SOURCES = vppinfra/test_vec.c
test_zvec_SOURCES = vppinfra/test_zvec.c
@@ -109,6 +111,7 @@ test_socket_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
test_time_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
test_timing_wheel_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
test_tw_timer_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
+test_valloc_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
test_vec_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
test_zvec_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
@@ -139,6 +142,7 @@ test_socket_LDADD = libvppinfra.la
test_time_LDADD = libvppinfra.la -lm
test_timing_wheel_LDADD = libvppinfra.la -lm
test_tw_timer_LDADD = libvppinfra.la
+test_valloc_LDADD = libvppinfra.la
test_vec_LDADD = libvppinfra.la
test_zvec_LDADD = libvppinfra.la
@@ -169,6 +173,7 @@ test_socket_LDFLAGS = -static
test_time_LDFLAGS = -static
test_timing_wheel_LDFLAGS = -static
test_tw_timer_LDFLAGS = -static
+test_valloc_LDFLAGS = -static
test_vec_LDFLAGS = -static
test_zvec_LDFLAGS = -static
@@ -249,6 +254,7 @@ nobase_include_HEADERS = \
vppinfra/tw_timer_template.c \
vppinfra/types.h \
vppinfra/unix.h \
+ vppinfra/valloc.h \
vppinfra/vec.h \
vppinfra/vec_bootstrap.h \
vppinfra/vector.h \
@@ -308,6 +314,7 @@ CLIB_CORE = \
vppinfra/tw_timer_1t_3w_1024sl_ov.h \
vppinfra/tw_timer_1t_3w_1024sl_ov.c \
vppinfra/unformat.c \
+ vppinfra/valloc.c \
vppinfra/vec.c \
vppinfra/vector.c \
vppinfra/zvec.c
diff --git a/src/vppinfra/test_valloc.c b/src/vppinfra/test_valloc.c
index 15bf9aa3fca..ea786db92d6 100644
--- a/src/vppinfra/test_valloc.c
+++ b/src/vppinfra/test_valloc.c
@@ -219,7 +219,7 @@ test_valloc_main (unformat_input_t * i)
;
else if (unformat (i, "item-size %u", &tm->item_size))
;
- else if (unformat (i, "check-every-add_del"))
+ else if (unformat (i, "check-every-add-del"))
tm->check_every_add_del = 1;
else if (unformat (i, "verbose %d", &tm->verbose))
;