Imported Upstream version 16.07-rc1
[deb_dpdk.git] / scripts / test-build.sh
1 #! /bin/sh -e
2
3 # BSD LICENSE
4 #
5 # Copyright 2015 6WIND S.A.
6 #
7 # Redistribution and use in source and binary forms, with or without
8 # modification, are permitted provided that the following conditions
9 # are met:
10 #
11 #   * Redistributions of source code must retain the above copyright
12 #     notice, this list of conditions and the following disclaimer.
13 #   * Redistributions in binary form must reproduce the above copyright
14 #     notice, this list of conditions and the following disclaimer in
15 #     the documentation and/or other materials provided with the
16 #     distribution.
17 #   * Neither the name of 6WIND S.A. nor the names of its
18 #     contributors may be used to endorse or promote products derived
19 #     from this software without specific prior written permission.
20 #
21 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32
33 default_path=$PATH
34
35 # Load config options:
36 # - AESNI_MULTI_BUFFER_LIB_PATH
37 # - DPDK_BUILD_TEST_CONFIGS (defconfig1+option1+option2 defconfig2)
38 # - DPDK_DEP_ARCHIVE
39 # - DPDK_DEP_CFLAGS
40 # - DPDK_DEP_LDFLAGS
41 # - DPDK_DEP_MOFED (y/[n])
42 # - DPDK_DEP_PCAP (y/[n])
43 # - DPDK_DEP_SSL (y/[n])
44 # - DPDK_DEP_SZE (y/[n])
45 # - DPDK_DEP_ZLIB (y/[n])
46 # - DPDK_MAKE_JOBS (int)
47 # - DPDK_NOTIFY (notify-send)
48 # - LIBSSO_SNOW3G_PATH
49 # - LIBSSO_KASUMI_PATH
50 . $(dirname $(readlink -e $0))/load-devel-config.sh
51
52 print_usage () {
53         echo "usage: $(basename $0) [-h] [-jX] [-s] [config1 [config2] ...]]"
54 }
55
56 print_help () {
57         echo 'Test building several targets with different options'
58         echo
59         print_usage
60         cat <<- END_OF_HELP
61
62         options:
63                 -h    this help
64                 -jX   use X parallel jobs in "make"
65                 -s    short test with only first config without examples/doc
66                 -v    verbose build
67
68         config: defconfig[[~][+]option1[[~][+]option2...]]
69                 Example: x86_64-native-linuxapp-gcc+debug~RXTX_CALLBACKS
70                 The lowercase options are defined inside $(basename $0).
71                 The uppercase options can be the end of a defconfig option
72                 to enable if prefixed with '+' or to disable if prefixed with '~'.
73                 Default is to automatically enable most of the options.
74                 The external dependencies are setup with DPDK_DEP_* variables.
75                 If no config on command line, DPDK_BUILD_TEST_CONFIGS is used.
76         END_OF_HELP
77 }
78
79 J=$DPDK_MAKE_JOBS
80 short=false
81 unset verbose
82 maxerr=-Wfatal-errors
83 while getopts hj:sv ARG ; do
84         case $ARG in
85                 j ) J=$OPTARG ;;
86                 s ) short=true ;;
87                 v ) verbose='V=1' ;;
88                 h ) print_help ; exit 0 ;;
89                 ? ) print_usage ; exit 1 ;;
90         esac
91 done
92 shift $(($OPTIND - 1))
93 configs=${*:-$DPDK_BUILD_TEST_CONFIGS}
94
95 success=false
96 on_exit ()
97 {
98         if [ "$DPDK_NOTIFY" = notify-send ] ; then
99                 if $success ; then
100                         notify-send -u low --icon=dialog-information 'DPDK build' 'finished'
101                 elif [ -z "$signal" ] ; then
102                         notify-send -u low --icon=dialog-error 'DPDK build' 'failed'
103                 fi
104         fi
105 }
106 # catch manual interrupt to ignore notification
107 trap "signal=INT ; trap - INT ; kill -INT $$" INT
108 # notify result on exit
109 trap on_exit EXIT
110
111 cd $(dirname $(readlink -m $0))/..
112
113 reset_env ()
114 {
115         export PATH=$default_path
116         unset CROSS
117         unset DPDK_DEP_ARCHIVE
118         unset DPDK_DEP_CFLAGS
119         unset DPDK_DEP_LDFLAGS
120         unset DPDK_DEP_MOFED
121         unset DPDK_DEP_PCAP
122         unset DPDK_DEP_SSL
123         unset DPDK_DEP_SZE
124         unset DPDK_DEP_ZLIB
125         unset AESNI_MULTI_BUFFER_LIB_PATH
126         unset LIBSSO_SNOW3G_PATH
127         unset LIBSSO_KASUMI_PATH
128         unset PQOS_INSTALL_PATH
129 }
130
131 config () # <directory> <target> <options>
132 {
133         reconfig=false
134         if git rev-parse 2>&- && [ -n "$(git diff HEAD~ -- config)" ] ; then
135                 echo 'Default config may have changed'
136                 reconfig=true
137         fi
138         if [ ! -e $1/.config ] || $reconfig ; then
139                 echo "================== Configure $1"
140                 make T=$2 O=$1 config
141
142                 echo 'Customize configuration'
143                 # Built-in options (lowercase)
144                 ! echo $3 | grep -q '+default' || \
145                 sed -ri 's,(RTE_MACHINE=")native,\1default,' $1/.config
146                 echo $3 | grep -q '+next' || \
147                 sed -ri           's,(NEXT_ABI=)y,\1n,' $1/.config
148                 ! echo $3 | grep -q '+shared' || \
149                 sed -ri         's,(SHARED_LIB=)n,\1y,' $1/.config
150                 ! echo $3 | grep -q '+debug' || ( \
151                 sed -ri     's,(RTE_LOG_LEVEL=).*,\1RTE_LOG_DEBUG,' $1/.config
152                 sed -ri           's,(_DEBUG.*=)n,\1y,' $1/.config
153                 sed -ri            's,(_STAT.*=)n,\1y,' $1/.config
154                 sed -ri 's,(TEST_PMD_RECORD_.*=)n,\1y,' $1/.config )
155
156                 # Automatic configuration
157                 ! echo $2 | grep -q '^x86_64' || \
158                 sed -ri               's,(NUMA=)n,\1y,' $1/.config
159                 sed -ri         's,(PCI_CONFIG=)n,\1y,' $1/.config
160                 sed -ri    's,(LIBRTE_IEEE1588=)n,\1y,' $1/.config
161                 sed -ri             's,(BYPASS=)n,\1y,' $1/.config
162                 test "$DPDK_DEP_ARCHIVE" != y || \
163                 sed -ri       's,(RESOURCE_TAR=)n,\1y,' $1/.config
164                 test "$DPDK_DEP_MOFED" != y || \
165                 sed -ri           's,(MLX._PMD=)n,\1y,' $1/.config
166                 test "$DPDK_DEP_SZE" != y || \
167                 sed -ri       's,(PMD_SZEDATA2=)n,\1y,' $1/.config
168                 test "$DPDK_DEP_ZLIB" != y || \
169                 sed -ri          's,(BNX2X_PMD=)n,\1y,' $1/.config
170                 test "$DPDK_DEP_ZLIB" != y || \
171                 sed -ri           's,(QEDE_PMD=)n,\1y,' $1/.config
172                 sed -ri            's,(NFP_PMD=)n,\1y,' $1/.config
173                 test "$DPDK_DEP_PCAP" != y || \
174                 sed -ri               's,(PCAP=)n,\1y,' $1/.config
175                 test -z "$AESNI_MULTI_BUFFER_LIB_PATH" || \
176                 sed -ri       's,(PMD_AESNI_MB=)n,\1y,' $1/.config
177                 test -z "$AESNI_MULTI_BUFFER_LIB_PATH" || \
178                 sed -ri      's,(PMD_AESNI_GCM=)n,\1y,' $1/.config
179                 test -z "$LIBSSO_SNOW3G_PATH" || \
180                 sed -ri         's,(PMD_SNOW3G=)n,\1y,' $1/.config
181                 test -z "$LIBSSO_KASUMI_PATH" || \
182                 sed -ri         's,(PMD_KASUMI=)n,\1y,' $1/.config
183                 test "$DPDK_DEP_SSL" != y || \
184                 sed -ri            's,(PMD_QAT=)n,\1y,' $1/.config
185                 sed -ri        's,(KNI_VHOST.*=)n,\1y,' $1/.config
186                 sed -ri           's,(SCHED_.*=)n,\1y,' $1/.config
187                 build_config_hook $1 $2 $3
188
189                 # Explicit enabler/disabler (uppercase)
190                 for option in $(echo $3 | sed 's,[~+], &,g') ; do
191                         pattern=$(echo $option | cut -c2-)
192                         if echo $option | grep -q '^~' ; then
193                                 sed -ri "s,($pattern=)y,\1n," $1/.config
194                         elif echo $option | grep -q '^+' ; then
195                                 sed -ri "s,($pattern=)n,\1y," $1/.config
196                         fi
197                 done
198         fi
199 }
200
201 # default empty hook to override in devel config
202 build_config_hook () # <directory> <target> <options>
203 {
204         :
205 }
206
207 for conf in $configs ; do
208         target=$(echo $conf | sed 's,[~+].*,,')
209         # reload config with DPDK_TARGET set
210         DPDK_TARGET=$target
211         reset_env
212         . $(dirname $(readlink -e $0))/load-devel-config.sh
213
214         options=$(echo $conf | sed 's,[^~+]*,,')
215         dir=$conf
216         config $dir $target $options
217
218         echo "================== Build $dir"
219         make -j$J EXTRA_CFLAGS="$maxerr $DPDK_DEP_CFLAGS" \
220                 EXTRA_LDFLAGS="$DPDK_DEP_LDFLAGS" $verbose O=$dir
221         ! $short || break
222         echo "================== Build examples for $dir"
223         export RTE_SDK=$(pwd)
224         export RTE_TARGET=$dir
225         make -j$J -sC examples \
226                 EXTRA_LDFLAGS="$DPDK_DEP_LDFLAGS" $verbose \
227                 O=$(readlink -m $dir/examples)
228         ! echo $target | grep -q '^x86_64' || \
229         make -j$J -sC examples/performance-thread \
230                 EXTRA_LDFLAGS="$DPDK_DEP_LDFLAGS" $verbose \
231                 O=$(readlink -m $dir/examples/performance-thread)
232         unset RTE_TARGET
233         echo "################## $dir done."
234 done
235
236 if ! $short ; then
237         mkdir -p .check
238         echo "================== Build doxygen HTML API"
239         make doc-api-html >/dev/null 2>.check/doc.txt
240         echo "================== Build sphinx HTML guides"
241         make doc-guides-html >/dev/null 2>>.check/doc.txt
242         echo "================== Check docs"
243         diff -u /dev/null .check/doc.txt
244 fi
245
246 success=true