test/env: split out env_dpdk-specific tests

Change-Id: Icc8aeb642d31b5c031c90855b33913bf886cefe8
Signed-off-by: Daniel Verkamp <daniel.verkamp@intel.com>
Reviewed-on: https://review.gerrithub.io/412406
Tested-by: SPDK Automated Test System <sys_sgsw@intel.com>
Reviewed-by: Ben Walker <benjamin.walker@intel.com>
Reviewed-by: Jim Harris <james.r.harris@intel.com>
This commit is contained in:
Daniel Verkamp 2018-05-24 10:30:20 -07:00 committed by Jim Harris
parent bd2b1d372a
commit 24c7c4975e

8
test/env/Makefile vendored
View File

@ -34,7 +34,13 @@
SPDK_ROOT_DIR := $(abspath $(CURDIR)/../..)
include $(SPDK_ROOT_DIR)/mk/spdk.common.mk
DIRS-y = memory pci vtophys
ENV_NAME := $(notdir $(CONFIG_ENV))
DIRS-y = vtophys
ifeq ($(ENV_NAME),env_dpdk)
DIRS-y += memory pci
endif
.PHONY: all clean $(DIRS-y)