diff options
author | Tamara Dahlgren <35777542+tldahlgren@users.noreply.github.com> | 2020-03-05 16:54:29 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-05 16:54:29 -0800 |
commit | b2e7e7edaa93f838d46ca62817b0215d089b048a (patch) | |
tree | 048be6778c88a761d67d233b86c7778121b97097 /share | |
parent | dd8afca9d8156434a95a1d7ff48bc62cce069558 (diff) | |
download | spack-b2e7e7edaa93f838d46ca62817b0215d089b048a.tar.gz spack-b2e7e7edaa93f838d46ca62817b0215d089b048a.tar.bz2 spack-b2e7e7edaa93f838d46ca62817b0215d089b048a.tar.xz spack-b2e7e7edaa93f838d46ca62817b0215d089b048a.zip |
Recover coverage from subprocesses during unit tests (#15354)
* Recover coverage from subprocesses during unit tests
Diffstat (limited to 'share')
-rwxr-xr-x | share/spack/qa/run-unit-tests | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/share/spack/qa/run-unit-tests b/share/spack/qa/run-unit-tests index 52748dacdf..01f564e5e1 100755 --- a/share/spack/qa/run-unit-tests +++ b/share/spack/qa/run-unit-tests @@ -37,16 +37,12 @@ bin/spack -h bin/spack help -a # Profile and print top 20 lines for a simple call to spack spec -bin/spack -p --lines 20 spec mpileaks%gcc ^elfutils@0.170 +spack -p --lines 20 spec mpileaks%gcc ^elfutils@0.170 #----------------------------------------------------------- # Run unit tests with code coverage #----------------------------------------------------------- -extra_args="" -if [[ -n "$@" ]]; then - extra_args="-k $@" -fi -$coverage_run bin/spack test -x --verbose "$extra_args" +$coverage_run $(which spack) test -x --verbose #----------------------------------------------------------- # Run tests for setup-env.sh |