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

test: move lib/env up one level



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


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 899eb5f1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -115,7 +115,7 @@ if [ $SPDK_TEST_NVME -eq 1 ]; then
	fi
fi

run_test test/lib/env/env.sh
run_test test/env/env.sh

if [ $SPDK_TEST_IOAT -eq 1 ]; then
	run_test test/ioat/ioat.sh
+1 −1
Original line number Diff line number Diff line
@@ -35,7 +35,7 @@ SPDK_ROOT_DIR := $(abspath $(CURDIR)/..)
include $(SPDK_ROOT_DIR)/mk/spdk.common.mk

# These directories contain tests.
TESTDIRS = app bdev blobfs cpp_headers lib nvme unit
TESTDIRS = app bdev blobfs cpp_headers env lib nvme unit

DIRS-y = $(TESTDIRS)

+1 −1
Original line number Diff line number Diff line
@@ -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

DIRS-y = memory pci vtophys
+1 −1
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@
set -e

testdir=$(readlink -f $(dirname $0))
rootdir=$(readlink -f $testdir/../../..)
rootdir=$(readlink -f $testdir/../..)
source $rootdir/test/common/autotest_common.sh

timing_enter env
Loading