test: move iSCSI unit tests to test/unit
Change-Id: Ibe282aa67de22e062de9d88c3b157c766be9dfae Signed-off-by: Daniel Verkamp <daniel.verkamp@intel.com> Reviewed-on: https://review.gerrithub.io/366910 Tested-by: SPDK Automated Test System <sys_sgsw@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com>
This commit is contained in:
parent
9fa2762711
commit
144ba3a1cb
@ -34,7 +34,7 @@
|
||||
SPDK_ROOT_DIR := $(abspath $(CURDIR)/../..)
|
||||
include $(SPDK_ROOT_DIR)/mk/spdk.common.mk
|
||||
|
||||
DIRS-y = bdev blobfs env event iscsi json nvme
|
||||
DIRS-y = bdev blobfs env event json nvme
|
||||
|
||||
.PHONY: all clean $(DIRS-y)
|
||||
|
||||
|
1
test/lib/iscsi/pdu/.gitignore
vendored
1
test/lib/iscsi/pdu/.gitignore
vendored
@ -1 +0,0 @@
|
||||
pdu
|
1
test/lib/iscsi/target_node/.gitignore
vendored
1
test/lib/iscsi/target_node/.gitignore
vendored
@ -1 +0,0 @@
|
||||
target_node_ut
|
@ -34,7 +34,7 @@
|
||||
SPDK_ROOT_DIR := $(abspath $(CURDIR)/../../..)
|
||||
include $(SPDK_ROOT_DIR)/mk/spdk.common.mk
|
||||
|
||||
DIRS-y = bdev blob ioat json jsonrpc log nvme nvmf scsi util
|
||||
DIRS-y = bdev blob ioat iscsi json jsonrpc log nvme nvmf scsi util
|
||||
|
||||
.PHONY: all clean $(DIRS-y)
|
||||
|
||||
|
@ -31,10 +31,10 @@
|
||||
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
#
|
||||
|
||||
SPDK_ROOT_DIR := $(abspath $(CURDIR)/../../..)
|
||||
SPDK_ROOT_DIR := $(abspath $(CURDIR)/../../../..)
|
||||
include $(SPDK_ROOT_DIR)/mk/spdk.common.mk
|
||||
|
||||
DIRS-y = param pdu target_node
|
||||
DIRS-y = iscsi.c param.c tgt_node.c
|
||||
|
||||
.PHONY: all clean $(DIRS-y)
|
||||
|
1
test/unit/lib/iscsi/iscsi.c/.gitignore
vendored
Normal file
1
test/unit/lib/iscsi/iscsi.c/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
iscsi_ut
|
@ -31,7 +31,7 @@
|
||||
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
#
|
||||
|
||||
SPDK_ROOT_DIR := $(abspath $(CURDIR)/../../../..)
|
||||
SPDK_ROOT_DIR := $(abspath $(CURDIR)/../../../../..)
|
||||
include $(SPDK_ROOT_DIR)/mk/spdk.common.mk
|
||||
include $(SPDK_ROOT_DIR)/mk/spdk.app.mk
|
||||
|
||||
@ -43,12 +43,12 @@ CFLAGS += -I$(SPDK_ROOT_DIR)/lib
|
||||
LIBS += $(SPDK_LIB_LINKER_ARGS) $(ENV_LINKER_ARGS)
|
||||
LIBS += -lcunit -lcrypto
|
||||
SCSI_OBJS = port
|
||||
ISCSI_OBJS = iscsi crc32c md5 param
|
||||
ISCSI_OBJS = crc32c md5 param
|
||||
OBJS += $(SCSI_OBJS:%=$(SPDK_ROOT_DIR)/lib/scsi/%.o)
|
||||
OBJS += $(ISCSI_OBJS:%=$(SPDK_ROOT_DIR)/lib/iscsi/%.o)
|
||||
|
||||
APP = pdu
|
||||
C_SRCS = pdu.c
|
||||
APP = iscsi_ut
|
||||
C_SRCS = iscsi_ut.c
|
||||
|
||||
all: $(APP)
|
||||
|
@ -38,6 +38,8 @@
|
||||
|
||||
#include "CUnit/Basic.h"
|
||||
|
||||
#include "iscsi/iscsi.c"
|
||||
|
||||
#include "../common.c"
|
||||
#include "iscsi/acceptor.h"
|
||||
#include "iscsi/portal_grp.h"
|
@ -31,7 +31,7 @@
|
||||
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
#
|
||||
|
||||
SPDK_ROOT_DIR := $(abspath $(CURDIR)/../../../..)
|
||||
SPDK_ROOT_DIR := $(abspath $(CURDIR)/../../../../..)
|
||||
include $(SPDK_ROOT_DIR)/mk/spdk.common.mk
|
||||
include $(SPDK_ROOT_DIR)/mk/spdk.app.mk
|
||||
|
1
test/unit/lib/iscsi/tgt_node.c/.gitignore
vendored
Normal file
1
test/unit/lib/iscsi/tgt_node.c/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
tgt_node_ut
|
@ -31,7 +31,7 @@
|
||||
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
#
|
||||
|
||||
SPDK_ROOT_DIR := $(abspath $(CURDIR)/../../../..)
|
||||
SPDK_ROOT_DIR := $(abspath $(CURDIR)/../../../../..)
|
||||
include $(SPDK_ROOT_DIR)/mk/spdk.common.mk
|
||||
include $(SPDK_ROOT_DIR)/mk/spdk.app.mk
|
||||
|
||||
@ -43,8 +43,8 @@ CFLAGS += -I$(SPDK_ROOT_DIR)/lib
|
||||
LIBS += $(SPDK_LIB_LINKER_ARGS)
|
||||
LIBS += -lcunit
|
||||
|
||||
APP = target_node_ut
|
||||
C_SRCS = target_node_ut.c
|
||||
APP = tgt_node_ut
|
||||
C_SRCS = tgt_node_ut.c
|
||||
|
||||
all: $(APP)
|
||||
|
@ -69,9 +69,9 @@ $valgrind test/unit/lib/scsi/lun.c/lun_ut
|
||||
$valgrind test/unit/lib/scsi/scsi.c/scsi_ut
|
||||
$valgrind test/unit/lib/scsi/scsi_bdev.c/scsi_bdev_ut
|
||||
|
||||
$valgrind test/lib/iscsi/param/param_ut
|
||||
$valgrind test/lib/iscsi/target_node/target_node_ut test/lib/iscsi/target_node/target_node.conf
|
||||
$valgrind test/lib/iscsi/pdu/pdu
|
||||
$valgrind test/unit/lib/iscsi/param.c/param_ut
|
||||
$valgrind test/unit/lib/iscsi/tgt_node.c/tgt_node_ut test/unit/lib/iscsi/tgt_node.c/tgt_node.conf
|
||||
$valgrind test/unit/lib/iscsi/iscsi.c/iscsi_ut
|
||||
|
||||
$valgrind test/unit/lib/util/bit_array.c/bit_array_ut
|
||||
$valgrind test/unit/lib/util/io_channel.c/io_channel_ut
|
||||
|
Loading…
Reference in New Issue
Block a user