summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2018-12-29 12:26:16 -0800
committerTodd Gamblin <tgamblin@llnl.gov>2018-12-29 23:47:29 -0800
commit19b7b1592947c5a74fbb159c0a0820cc5013a077 (patch)
tree32783afd434630bebef0e24ab8a1e029236a664f
parent51cbc278aa7759b4b52c6fd9862564cbe5f4a75c (diff)
downloadspack-19b7b1592947c5a74fbb159c0a0820cc5013a077.tar.gz
spack-19b7b1592947c5a74fbb159c0a0820cc5013a077.tar.bz2
spack-19b7b1592947c5a74fbb159c0a0820cc5013a077.tar.xz
spack-19b7b1592947c5a74fbb159c0a0820cc5013a077.zip
coverage: use kcov to get coverage for our cc script
-rw-r--r--.codecov.yml1
-rw-r--r--.coveragerc1
-rw-r--r--.travis.yml10
-rwxr-xr-xshare/spack/qa/bashcov12
-rwxr-xr-xshare/spack/qa/setup.sh15
5 files changed, 32 insertions, 7 deletions
diff --git a/.codecov.yml b/.codecov.yml
index 11af0577da..93ce22ee7f 100644
--- a/.codecov.yml
+++ b/.codecov.yml
@@ -29,7 +29,6 @@ coverage:
ignore:
- lib/spack/spack/test/.*
- - lib/spack/env/.*
- lib/spack/docs/.*
- lib/spack/external/.*
diff --git a/.coveragerc b/.coveragerc
index 0201a4b502..c0c5f76688 100644
--- a/.coveragerc
+++ b/.coveragerc
@@ -7,7 +7,6 @@ branch = True
source = lib
omit =
lib/spack/spack/test/*
- lib/spack/env/*
lib/spack/docs/*
lib/spack/external/*
diff --git a/.travis.yml b/.travis.yml
index 5e74b7dd93..481372adf8 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -133,17 +133,19 @@ addons:
apt:
packages:
- ccache
+ - cmake
- gfortran
- - mercurial
- graphviz
- gnupg2
- - cmake
+ - kcov
+ - mercurial
- ninja-build
+ - perl
+ - perl-base
+ - realpath
- r-base
- r-base-core
- r-base-dev
- - perl
- - perl-base
# for Mac builds, we use Homebrew
homebrew:
packages:
diff --git a/share/spack/qa/bashcov b/share/spack/qa/bashcov
new file mode 100755
index 0000000000..58fa4fe0d0
--- /dev/null
+++ b/share/spack/qa/bashcov
@@ -0,0 +1,12 @@
+#!/bin/bash
+#
+# This script acts like bash but runs kcov on the input script. We use it
+# to get coverage for Spack's bash scripts.
+#
+
+if [ -z "$SPACK_ROOT" ]; then
+ echo "ERROR: SPACK_ROOT was not set!"
+ exit 1
+fi
+
+kcov "$SPACK_ROOT/coverage" "$@"
diff --git a/share/spack/qa/setup.sh b/share/spack/qa/setup.sh
index 4f40904433..4592c7ea85 100755
--- a/share/spack/qa/setup.sh
+++ b/share/spack/qa/setup.sh
@@ -11,15 +11,28 @@
#
QA_DIR="$(dirname ${BASH_SOURCE[0]})"
-SPACK_ROOT="$QA_DIR/../../.."
+export SPACK_ROOT=$(realpath "$QA_DIR/../../..")
# Source the setup script
. "$SPACK_ROOT/share/spack/setup-env.sh"
# Set up some variables for running coverage tests.
if [[ "$TEST_SUITE" == "unit" || "$TEST_SUITE" == "build" ]]; then
+ # these set up coverage for Python
coverage=coverage
coverage_run="coverage run"
+
+ # make a coverage directory for kcov, and patch cc to use our bashcov
+ # script instead of plain bash
+ if [[ $TEST_SUITE == unit && # kcov segfaults for the MPICH build test
+ $TRAVIS_OS_NAME == linux &&
+ $TRAVIS_PYTHON_VERSION != 2.6 ]];
+ then
+ mkdir -p coverage
+ cc_script="$SPACK_ROOT/lib/spack/env/cc"
+ bashcov=$(realpath ${QA_DIR}/bashcov)
+ sed -i~ "s@#\!/bin/bash@#\!${bashcov}@" "$cc_script"
+ fi
else
coverage=""
coverage_run=""