From f0cb7b871ec66328e5199dbb04e5433f8c115774 Mon Sep 17 00:00:00 2001 From: Darek Stojaczyk Date: Fri, 12 Oct 2018 09:19:54 +0200 Subject: [PATCH] autorun: passthrough WITH_DPDK_DIR to autotest.sh This variable will be used for something more than just building SPDK, namely installing the freebsd contigmem kernel module. Note: Installing a module requires root priviledges and can't be done as a part of autobuild. Change-Id: I45cc797493cc4ff22c1f8d0dd5e4e56642d54d11 Signed-off-by: Darek Stojaczyk Reviewed-on: https://review.gerrithub.io/429186 Tested-by: SPDK CI Jenkins Reviewed-by: Pawel Wodkowski Reviewed-by: Jim Harris Reviewed-by: Ben Walker Chandler-Test-Pool: SPDK Automated Test System --- autorun.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autorun.sh b/autorun.sh index 5fd13ad9c..6493b39d8 100755 --- a/autorun.sh +++ b/autorun.sh @@ -8,5 +8,5 @@ conf=~/autorun-spdk.conf # Runs agent scripts $rootdir/autobuild.sh "$conf" -sudo $rootdir/autotest.sh "$conf" +sudo WITH_DPDK_DIR="$WITH_DPDK_DIR" $rootdir/autotest.sh "$conf" $rootdir/autopackage.sh "$conf"