From e445f16bacae1f17ed895a0321f7db8d560cc580 Mon Sep 17 00:00:00 2001 From: Daniel Verkamp Date: Wed, 28 Sep 2016 10:27:03 -0700 Subject: [PATCH] unittest.sh: build log library earlier Now that the NVMe and I/OAT libraries depend on the log library, log needs to be built earlier in the Travis-CI unit test script. Change-Id: I189800934007fe8365cdfd5eb4cd797eed252b73 Signed-off-by: Daniel Verkamp --- unittest.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unittest.sh b/unittest.sh index 6f34b39ea..f4b837594 100755 --- a/unittest.sh +++ b/unittest.sh @@ -4,6 +4,7 @@ set -xe make config.h CONFIG_WERROR=y make -C lib/cunit CONFIG_WERROR=y +make -C lib/log CONFIG_WERROR=y make -C test/lib/nvme/unit CONFIG_WERROR=y @@ -23,7 +24,6 @@ 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