autotest: use generic DPDK path on Linux

Switch to /usr/local/share/dpdk on Linux to use the latest installed
DPDK.

This is the filesystem layout from building DPDK with:

  make install T=x86_64-native-linuxapp-gcc DESTDIR=/usr/local

Change-Id: I95cb0a3ee2ad1fcc89f6abb73ff0005aa65110e5
Signed-off-by: Daniel Verkamp <daniel.verkamp@intel.com>
This commit is contained in:
Daniel Verkamp 2016-01-05 13:31:07 -07:00
parent b663d3c669
commit e634bb8db1

View File

@ -10,7 +10,7 @@ case `uname` in
MAKEFLAGS=${MAKEFLAGS:--j$(sysctl -a | egrep -i 'hw.ncpu' | awk '{print $2}')}
;;
Linux)
DPDK_DIR=/usr/local/dpdk-2.1.0/x86_64-native-linuxapp-gcc
DPDK_DIR=/usr/local/share/dpdk/x86_64-native-linuxapp-gcc
MAKE=make
MAKEFLAGS=${MAKEFLAGS:--j$(nproc)}
MAKECONFIG="$MAKECONFIG CONFIG_COVERAGE=y"