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 <daniel.verkamp@intel.com>
This commit is contained in:
Daniel Verkamp 2016-09-28 10:27:03 -07:00
parent 109fc9561e
commit e445f16bac

View File

@ -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