Commit 12e840b9 authored by Seth Howell's avatar Seth Howell Committed by Jim Harris
Browse files

test/unit: move unittest.sh and dependencies here.



All files called directly by the unittest.sh script are now located in
the test/unit directory.

Change-Id: I95cfb3d5b7c6ede59d7183c39466f32b7e676643
Signed-off-by: default avatarSeth Howell <seth.howell@intel.com>
Reviewed-on: https://review.gerrithub.io/401717


Tested-by: default avatarSPDK Automated Test System <sys_sgsw@intel.com>
Reviewed-by: default avatarDaniel Verkamp <daniel.verkamp@intel.com>
Reviewed-by: default avatarJim Harris <james.r.harris@intel.com>
parent 45e919d2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -24,4 +24,4 @@ script:
  - ./scripts/check_format.sh
  - ./configure --enable-werror
  - make
  - ./unittest.sh
  - ./test/unit/unittest.sh
+1 −1
Original line number Diff line number Diff line
@@ -79,7 +79,7 @@ gmake
## Unit Tests

~~~{.sh}
./unittest.sh
./test/unit/unittest.sh
~~~

You will see several error messages when running the unit tests, but they are
+1 −1
Original line number Diff line number Diff line
@@ -89,7 +89,7 @@ fi

if [ $SPDK_TEST_UNITTEST -eq 1 ]; then
	timing_enter unittest
	run_test ./unittest.sh
	run_test ./test/unit/unittest.sh
	report_test_completion "unittest"
	timing_exit unittest
fi
+1 −1
Original line number Diff line number Diff line
@@ -56,7 +56,7 @@ It's always a good idea to confirm your build worked by running the
unit tests.

~~~{.sh}
./unittest.sh
./test/unit/unittest.sh
~~~

You will see several error messages when running the unit tests, but they are
+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_async_ut blobfs_sync_ut mkfs
DIRS-y = mkfs

# TODO: do not check a hardcoded path here
ifneq (,$(wildcard /usr/local/include/fuse3))
Loading