diff mbox series

[v5,11/11] ci: do not run performance tests for coverage

Message ID 1533225614-20192-12-git-send-email-odpbot@yandex.ru
State Superseded
Headers show
Series [v5,1/11] travis: add docker tests | expand

Commit Message

Github ODP bot Aug. 2, 2018, 4 p.m. UTC
From: Maxim Uvarov <maxim.uvarov@linaro.org>


peformance tests usually take a lot of time, code coverage
has to be done with validation tests.

Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>

---
/** Email created from pull request 647 (muvarov:master_docker2)
 ** https://github.com/Linaro/odp/pull/647
 ** Patch: https://github.com/Linaro/odp/pull/647.patch
 ** Base sha: 6886a2ca3d3dd1157302ddee424c36f632903bd0
 ** Merge commit sha: 1ca948a3fc61fc94775495bb529ab02560071b04
 **/
 scripts/ci/coverage.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/scripts/ci/coverage.sh b/scripts/ci/coverage.sh
index 2627d64ba..6d0d7c738 100755
--- a/scripts/ci/coverage.sh
+++ b/scripts/ci/coverage.sh
@@ -19,7 +19,7 @@  cd ./odp
 ./bootstrap
 ./configure \
 	CFLAGS="-O0 -coverage $CLFAGS" CXXFLAGS="-O0 -coverage $CXXFLAGS" LDFLAGS="--coverage $LDFLAGS" \
-	--enable-debug=full --enable-helper-linux --enable-dpdk
+	--enable-debug=full --enable-helper-linux --enable-dpdk --disable-test-perf --disable-test-perf-proc
 export CCACHE_DISABLE=1
 make -j $(nproc)