From aac65dcfd83d87ea992ef5338ed5924c5c0d8319 Mon Sep 17 00:00:00 2001 From: Konrad Sztyber Date: Mon, 13 Jan 2020 14:39:29 +0100 Subject: [PATCH] test/unit: remove vhost dependency from ftl tests The tests were only built if CONFIG_VHOST was enabled, which doesn't make sense, as they're not related to vhost in any way. Change-Id: Idb151b3bdf8c5f2a90357e41099528b10a98f331 Signed-off-by: Konrad Sztyber Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/481505 Community-CI: Broadcom SPDK FC-NVMe CI Community-CI: SPDK CI Jenkins Tested-by: SPDK CI Jenkins Reviewed-by: Wojciech Malikowski Reviewed-by: Jim Harris Reviewed-by: Tomasz Zawadzki --- test/unit/lib/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/unit/lib/Makefile b/test/unit/lib/Makefile index 4a13a55bc..1d748977b 100644 --- a/test/unit/lib/Makefile +++ b/test/unit/lib/Makefile @@ -38,7 +38,8 @@ DIRS-y = bdev blob blobfs event ioat iscsi json jsonrpc log lvol DIRS-y += notify nvme nvmf scsi sock thread util DIRS-$(CONFIG_REDUCE) += reduce ifeq ($(OS),Linux) -DIRS-$(CONFIG_VHOST) += vhost ftl +DIRS-$(CONFIG_VHOST) += vhost +DIRS-y += ftl endif .PHONY: all clean $(DIRS-y)