Commit 928df4a4 authored by Jing Xia's avatar Jing Xia Committed by Jim Harris
Browse files

test/blobfs: Rename blobfs test file name



Change-Id: I584c667aff5a0cdfee26b958a2b58c6ed41d45f7
Signed-off-by: default avatarJing Xia <jingx.y.xia@intel.com>
parent 133dc1e6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -34,7 +34,7 @@
SPDK_ROOT_DIR := $(abspath $(CURDIR)/../../..)
include $(SPDK_ROOT_DIR)/mk/spdk.common.mk

DIRS-y = blobfs_ut cache_ut mkfs
DIRS-y = blobfs_async_ut blobfs_sync_ut mkfs

# TODO: do not check a hardcoded path here
ifneq (,$(wildcard /usr/local/include/fuse3))
+1 −0
Original line number Diff line number Diff line
blobfs_async_ut
+2 −2
Original line number Diff line number Diff line
@@ -35,9 +35,9 @@ SPDK_ROOT_DIR := $(abspath $(CURDIR)/../../../..)
include $(SPDK_ROOT_DIR)/mk/spdk.common.mk
include $(SPDK_ROOT_DIR)/mk/spdk.app.mk

APP = blobfs_ut
APP = blobfs_async_ut

C_SRCS := blobfs_ut.c
C_SRCS := blobfs_async_ut.c
CFLAGS += -I$(SPDK_ROOT_DIR)/lib/blobfs -I$(SPDK_ROOT_DIR)/lib/blob
CFLAGS += -I$(SPDK_ROOT_DIR)/test

+1 −1
Original line number Diff line number Diff line
@@ -428,7 +428,7 @@ int main(int argc, char **argv)
		return CU_get_error();
	}

	suite = CU_add_suite("blobfs", NULL, NULL);
	suite = CU_add_suite("blobfs_async_ut", NULL, NULL);
	if (suite == NULL) {
		CU_cleanup_registry();
		return CU_get_error();
+1 −0
Original line number Diff line number Diff line
blobfs_sync_ut
Loading