Introduced a new variable to run functional tests. It's enabled by default, and can be manually disabled on systems where e.g. only unit tests are run. SPDK_RUN_FUNCTIONAL_TEST is a supplement to SPDK_UNITTEST. The two are completely independent - both can be enabled, disabled, or run in any combination. The new variable is prefixed SPDK_RUN_ as it aligns nicely with SPDK_RUN_CHECK_FORMAT, SPDK_RUN_VALGRIND, and SPDK_RUN_ASAN, all of which control how much is tested. SPDK_UNITTEST should eventually follow the same pattern as well. This gives us 2 layers of configuration: SPDK_TEST_* <- what is tested SPDK_RUN_* <- how it is tested The following would run UT+ASAN for FTL and BlobFS, without running their functional tests: ``` SPDK_RUN_FUNCTIONAL_TEST=0 SPDK_RUN_ASAN=1 SPDK_TEST_UNITTEST=1 SPDK_TEST_FTL=1 SPDK_TEST_BLOBFS=1 ``` Change-Id: I9e592fa41aa2df8e246eca2bb9161b6da6832130 Signed-off-by: Seth Howell <seth.howell@intel.com> Signed-off-by: Darek Stojaczyk <dariusz.stojaczyk@intel.com> Reviewed-on: https://review.gerrithub.io/c/442327 Chandler-Test-Pool: SPDK Automated Test System <sys_sgsw@intel.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Seth Howell <seth.howell5141@gmail.com> Reviewed-by: Paul Luse <paul.e.luse@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Reviewed-by: Karol Latecki <karol.latecki@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com>
33 lines
726 B
Plaintext
33 lines
726 B
Plaintext
# assign a value of 1 to all of the pertinent tests
|
|
SPDK_BUILD_DOC=1
|
|
SPDK_RUN_CHECK_FORMAT=1
|
|
SPDK_RUN_SCANBUILD=1
|
|
SPDK_RUN_VALGRIND=1
|
|
SPDK_RUN_FUNCTIONAL_TEST=1
|
|
SPDK_TEST_UNITTEST=1
|
|
SPDK_TEST_ISAL=1
|
|
SPDK_TEST_ISCSI=0
|
|
SPDK_TEST_ISCSI_INITIATOR=0
|
|
SPDK_TEST_NVME=0
|
|
SPDK_TEST_NVME_CLI=0
|
|
SPDK_TEST_NVMF=1
|
|
SPDK_TEST_RBD=0
|
|
SPDK_TEST_CRYPTO=0
|
|
# requires some extra configuration. see TEST_ENV_SETUP_README
|
|
SPDK_TEST_VHOST=0
|
|
SPDK_TEST_VHOST_INIT=0
|
|
SPDK_TEST_BLOCKDEV=1
|
|
# doesn't work on vm
|
|
SPDK_TEST_IOAT=0
|
|
SPDK_TEST_EVENT=1
|
|
SPDK_TEST_BLOBFS=0
|
|
SPDK_TEST_PMDK=0
|
|
SPDK_TEST_LVOL=0
|
|
SPDK_TEST_REDUCE=0
|
|
SPDK_RUN_ASAN=1
|
|
SPDK_RUN_UBSAN=1
|
|
# Reduce the size of the hugepages
|
|
HUGEMEM=1024
|
|
# Set up the DEPENDENCY_DIR
|
|
DEPENDENCY_DIR=/home/vagrant
|