aboutsummaryrefslogtreecommitdiff
path: root/scripts/ci/coverage.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/ci/coverage.sh')
-rwxr-xr-xscripts/ci/coverage.sh9
1 files changed, 1 insertions, 8 deletions
diff --git a/scripts/ci/coverage.sh b/scripts/ci/coverage.sh
index 38cb46756..dc0d8cfc7 100755
--- a/scripts/ci/coverage.sh
+++ b/scripts/ci/coverage.sh
@@ -9,22 +9,15 @@ cd "$(dirname "$0")"/../..
./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
export CCACHE_DISABLE=1
make -j $(nproc)
-echo 1000 | tee /proc/sys/vm/nr_hugepages
-mkdir -p /mnt/huge
-mount -t hugetlbfs nodev /mnt/huge
-
# Ignore possible failures there because these tests depends on measurements
# and systems might differ in performance.
export CI="true"
ODP_SCHEDULER=basic make check
ODP_SCHEDULER=sp make check
-ODP_SCHEDULER=scalable make check
bash <(curl -s https://codecov.io/bash) -X coveragepy
-
-umount /mnt/huge