X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=devtools%2Ftest-build.sh;h=61bdce7cc993c56de64e4fabc8dd3824d6ddd184;hb=2e516d18dc013e603114011096259b30ce6a00de;hp=0f131fcc670891e9008c86c73ea054fa26a6cf8d;hpb=8fdb4a9b1ee852f9df42578621c3809c04a97fa4;p=dpdk.git diff --git a/devtools/test-build.sh b/devtools/test-build.sh index 0f131fcc67..61bdce7cc9 100755 --- a/devtools/test-build.sh +++ b/devtools/test-build.sh @@ -66,7 +66,7 @@ print_help () { options: -h this help -jX use X parallel jobs in "make" - -s short test with only first config without examples/doc + -s short test only first config without tests|examples|doc -v verbose build config: defconfig[[~][+]option1[[~][+]option2...]] @@ -146,7 +146,7 @@ config () # fi if [ ! -e $1/.config ] || $reconfig ; then echo "================== Configure $1" - make -j$J T=$2 O=$1 config + make T=$2 O=$1 config echo 'Customize configuration' # Built-in options (lowercase) @@ -194,7 +194,6 @@ config () # sed -ri 's,(PMD_OPENSSL=)n,\1y,' $1/.config test "$DPDK_DEP_SSL" != y || \ sed -ri 's,(PMD_QAT=)n,\1y,' $1/.config - sed -ri 's,(KNI_VHOST.*=)n,\1y,' $1/.config sed -ri 's,(SCHED_.*=)n,\1y,' $1/.config build_config_hook $1 $2 $3 @@ -231,16 +230,15 @@ for conf in $configs ; do make -j$J EXTRA_CFLAGS="$maxerr $DPDK_DEP_CFLAGS" \ EXTRA_LDFLAGS="$DPDK_DEP_LDFLAGS" $verbose O=$dir ! $short || break + echo "================== Build tests for $dir" + make test-build -j$J EXTRA_CFLAGS="$maxerr $DPDK_DEP_CFLAGS" \ + EXTRA_LDFLAGS="$DPDK_DEP_LDFLAGS" $verbose O=$dir echo "================== Build examples for $dir" export RTE_SDK=$(pwd) export RTE_TARGET=$dir make -j$J -sC examples \ EXTRA_LDFLAGS="$DPDK_DEP_LDFLAGS" $verbose \ O=$(readlink -m $dir/examples) - ! echo $target | grep -q '^x86_64' || \ - make -j$J -sC examples/performance-thread \ - EXTRA_LDFLAGS="$DPDK_DEP_LDFLAGS" $verbose \ - O=$(readlink -m $dir/examples/performance-thread) unset RTE_TARGET echo "################## $dir done." unset dir