From a070305fe2ef944f6d53d7961b34fca8a79b8a1c Mon Sep 17 00:00:00 2001 From: Tomasz Zawadzki Date: Wed, 1 Dec 2021 13:38:42 +0100 Subject: [PATCH] dpdkbuild: disable building DPDK tests DPDK tests were usualy disabled in the DPDK submodule, as part of skipping dpdk/app directory. Since DPDK 18.02 -Dtests=false option was added to skip building tests in dpdk/app/test. This reduces the overall time taken to build DPDK from submodule without introducing new changes to DPDK. Signed-off-by: Tomasz Zawadzki Change-Id: I425976fa38e09c140e517cccd8aeedd64c67b06c Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/10504 Tested-by: SPDK CI Jenkins Reviewed-by: Ben Walker Reviewed-by: Aleksey Marchuk Reviewed-by: Paul Luse Reviewed-by: Jim Harris --- dpdkbuild/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/dpdkbuild/Makefile b/dpdkbuild/Makefile index 3229f39ac..0cb2fa27d 100644 --- a/dpdkbuild/Makefile +++ b/dpdkbuild/Makefile @@ -38,6 +38,7 @@ include $(SPDK_ROOT_DIR)/mk/spdk.common.mk .PHONY: all clean install uninstall DPDK_OPTS = -Denable_docs=false +DPDK_OPTS += -Dtests=false DPDK_CFLAGS = DPDK_KMODS = false