From 545effaa49745994cf34e63f10e071ce4aada867 Mon Sep 17 00:00:00 2001 From: Daniel Verkamp Date: Tue, 24 May 2016 10:10:39 -0700 Subject: [PATCH] unittest.sh: build jsonrpc dependencies The JSON-RPC tests use the JSON and log libraries, so build those before the JSON-RPC test directory. This is just a workaround; ideally, we should build DPDK so the whole SPDK repository can be built, but that is a larger change. Change-Id: Ida0e98ad95fb90a22bd261cf688deafd1fd51975 Signed-off-by: Daniel Verkamp --- unittest.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/unittest.sh b/unittest.sh index a44113472..f88a20d9f 100755 --- a/unittest.sh +++ b/unittest.sh @@ -20,6 +20,8 @@ test/lib/json/parse/json_parse_ut test/lib/json/util/json_util_ut test/lib/json/write/json_write_ut +make -C lib/log CONFIG_WERROR=y +make -C lib/json CONFIG_WERROR=y make -C test/lib/jsonrpc CONFIG_WERROR=y test/lib/jsonrpc/server/jsonrpc_server_ut