aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBill Fischofer <bill.fischofer@linaro.org>2017-08-17 18:47:35 -0500
committerMaxim Uvarov <maxim.uvarov@linaro.org>2017-08-22 22:54:30 +0300
commiteafd83ed1d036a404a18874d80c11d454d2580d3 (patch)
tree17ac7b2618ca0e34806d533833bb4af36bd0890b
parentaecb3c7a442b426761f1e6f43308a1e9ea709ef3 (diff)
travis: add --enable-debug to list of test variants
ODP includes a number of ODP_ASSERT() calls to assist in debugging but these never expand unless --enable-debug is used. Add that test variant to test new ODP_ASSERT() calls added as part of PRs as well as to do additional testing on PRs to verify that they don't contain more subtle problems that the existing ODP_ASSERT() calls are designed to catch. The --enable-debug option is used for all test cases except distcheck. Signed-off-by: Bill Fischofer <bill.fischofer@linaro.org> Reviewed-by: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov@linaro.org> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
-rw-r--r--.travis.yml14
1 files changed, 8 insertions, 6 deletions
diff --git a/.travis.yml b/.travis.yml
index d750af1d3..7a74bdb7c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -151,6 +151,7 @@ install:
script:
- ./bootstrap
- ./configure --prefix=$HOME/odp-install --enable-test-cpp --enable-test-vald --enable-test-helper --enable-test-perf --enable-user-guides --enable-test-perf-proc --enable-test-example --with-dpdk-path=`pwd`/dpdk/${TARGET} --with-netmap-path=`pwd`/netmap --with-cunit-path=$HOME/cunit-install/$CROSS_ARCH $CONF
+ --enable-debug
- make -j $(nproc)
- mkdir /dev/shm/odp
- sudo LD_LIBRARY_PATH="$HOME/cunit-install/$CROSS_ARCH/lib:$LD_LIBRARY_PATH" ODP_SHM_DIR=/dev/shm/odp make check
@@ -174,7 +175,7 @@ jobs:
install: true
script:
- ./bootstrap
- - ./configure --prefix=$HOME/odp-install $CROSS
+ - ./configure --prefix=$HOME/odp-install $CROSS --enable-debug
--disable-test-cpp --enable-test-vald --enable-test-helper --enable-test-perf --enable-test-perf-proc --enable-test-example --with-cunit-path=$HOME/cunit-install/$CROSS_ARCH
- make -j $(nproc)
- stage: test
@@ -183,7 +184,7 @@ jobs:
install: true
script:
- ./bootstrap
- - ./configure --prefix=$HOME/odp/odp-install $CROSS
+ - ./configure --prefix=$HOME/odp/odp-install $CROSS --enable-debug
--disable-test-cpp --enable-test-vald --enable-test-helper --enable-test-perf --enable-test-perf-proc --enable-test-example --with-cunit-path=$HOME/cunit-install/$CROSS_ARCH
- make -j $(nproc)
- stage: test
@@ -192,7 +193,7 @@ jobs:
install: true
script:
- ./bootstrap
- - ./configure --prefix=$HOME/odp-install $CROSS
+ - ./configure --prefix=$HOME/odp-install $CROSS --enable-debug
--disable-test-cpp --enable-test-vald --enable-test-helper --enable-test-perf --enable-test-perf-proc --enable-test-example --with-cunit-path=$HOME/cunit-install/$CROSS_ARCH
- make -j $(nproc)
- stage: test
@@ -201,7 +202,7 @@ jobs:
install: true
script:
- ./bootstrap
- - ./configure --prefix=$HOME/odp-install $CROSS
+ - ./configure --prefix=$HOME/odp-install $CROSS --enable-debug
--disable-test-cpp --enable-test-vald --enable-test-helper --enable-test-perf --enable-test-perf-proc --enable-test-example --with-cunit-path=$HOME/cunit-install/$CROSS_ARCH
- make -j $(nproc)
- stage: test
@@ -210,7 +211,7 @@ jobs:
install: true
script:
- ./bootstrap
- - ./configure --prefix=$HOME/odp-install $CROSS
+ - ./configure --prefix=$HOME/odp-install $CROSS --enable-debug
--disable-test-cpp --enable-test-vald --enable-test-helper --enable-test-perf --enable-test-perf-proc --enable-test-example --with-cunit-path=$HOME/cunit-install/$CROSS_ARCH
- make -j $(nproc)
- stage: test
@@ -219,7 +220,7 @@ jobs:
install: true
script:
- ./bootstrap
- - ./configure --prefix=$HOME/odp-install $CROSS
+ - ./configure --prefix=$HOME/odp-install $CROSS --enable-debug
--disable-test-cpp --enable-test-vald --enable-test-helper --enable-test-perf --enable-test-perf-proc --enable-test-example --with-cunit-path=$HOME/cunit-install/$CROSS_ARCH
- make -j $(nproc)
- stage: test
@@ -228,6 +229,7 @@ jobs:
script:
- ./bootstrap
- ./configure --prefix=$HOME/odp-install --enable-test-cpp --enable-test-vald --enable-test-helper --enable-test-perf --enable-user-guides --enable-test-perf-proc --enable-test-example --with-dpdk-path=`pwd`/dpdk/${TARGET} --with-netmap-path=`pwd`/netmap CFLAGS="-O0 -coverage" --with-cunit-path=$HOME/cunit-install/$CROSS_ARCH CXXFLAGS="-O0 -coverage" LDFLAGS="--coverage"
+ --enable-debug
- sudo LD_LIBRARY_PATH="$HOME/cunit-install/$CROSS_ARCH/lib:$LD_LIBRARY_PATH" PATH=${PATH//:\.\/node_modules\/\.bin/} make check
- find . -type f -iname '*.[ch]' -not -path ".git/*" -execdir gcov {} \; ; bash <(curl -s https://codecov.io/bash) -X coveragepy
- stage: test