diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2019-06-08 13:04:44 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-08 13:04:44 -0700 |
commit | 20e5f816539a06069fbaefcce0c353368006bef7 (patch) | |
tree | cfab9bd6b48d7099809089e6022888f0be900c21 /share | |
parent | f31711b84e4ce9c34b845c2061f23829154b7069 (diff) | |
download | spack-20e5f816539a06069fbaefcce0c353368006bef7.tar.gz spack-20e5f816539a06069fbaefcce0c353368006bef7.tar.bz2 spack-20e5f816539a06069fbaefcce0c353368006bef7.tar.xz spack-20e5f816539a06069fbaefcce0c353368006bef7.zip |
tests: restore `spack spec mpileaks` in test output for Python 2 (#11664)
- also remove coverage calls of these commands
- we JUST want coverage to tell us what is in the test suite.
Diffstat (limited to 'share')
-rwxr-xr-x | share/spack/qa/run-unit-tests | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/share/spack/qa/run-unit-tests b/share/spack/qa/run-unit-tests index cd5c057998..49dbda0d32 100755 --- a/share/spack/qa/run-unit-tests +++ b/share/spack/qa/run-unit-tests @@ -27,13 +27,11 @@ cd "$SPACK_ROOT" spack config get compilers # Run spack help to cover command import -${coverage_run} bin/spack -h -${coverage_run} bin/spack help -a +bin/spack -h +bin/spack help -a # Profile and print top 20 lines for a simple call to spack spec -if [[ $TRAVIS_PYTHON_VERSION != 2* ]]; then - ${coverage_run} bin/spack -p --lines 20 spec mpileaks%gcc ^elfutils@0.170 -fi +bin/spack -p --lines 20 spec mpileaks%gcc ^elfutils@0.170 # Run unit tests with code coverage extra_args="" |