Commit 24c7c497 authored by Daniel Verkamp's avatar Daniel Verkamp Committed by Jim Harris
Browse files

test/env: split out env_dpdk-specific tests



Change-Id: Icc8aeb642d31b5c031c90855b33913bf886cefe8
Signed-off-by: default avatarDaniel Verkamp <daniel.verkamp@intel.com>
Reviewed-on: https://review.gerrithub.io/412406


Tested-by: default avatarSPDK Automated Test System <sys_sgsw@intel.com>
Reviewed-by: default avatarBen Walker <benjamin.walker@intel.com>
Reviewed-by: default avatarJim Harris <james.r.harris@intel.com>
parent bd2b1d37
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -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)