diff options
author | scheibelp <scheibel1@llnl.gov> | 2018-03-29 12:24:35 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-29 12:24:35 -0700 |
commit | 5e758b979e3cc34ad2d1baf1465cf7369c4ef633 (patch) | |
tree | 9ed046ec9b843b86ee1b9410884082a09c4de642 /share | |
parent | e4b50973751ff5be499d99dca702d9b18588392f (diff) | |
download | spack-5e758b979e3cc34ad2d1baf1465cf7369c4ef633.tar.gz spack-5e758b979e3cc34ad2d1baf1465cf7369c4ef633.tar.bz2 spack-5e758b979e3cc34ad2d1baf1465cf7369c4ef633.tar.xz spack-5e758b979e3cc34ad2d1baf1465cf7369c4ef633.zip |
update tests: concretize mpileaks with gcc (#7635)
Fixes #7593
By default MacOS concretizes using the clang compiler. The unit tests
include a call to "spack spec mpileaks", which has elfutils as a
dependency; #7096 added a conflict in elfutils to avoid building
with clang, which lead to the MacOS unit tests to start failing.
This updates the concretization to force using gcc when concretizing
mpileaks.
Diffstat (limited to 'share')
-rwxr-xr-x | share/spack/qa/run-unit-tests | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/spack/qa/run-unit-tests b/share/spack/qa/run-unit-tests index 74f92c19c5..eacf4cd419 100755 --- a/share/spack/qa/run-unit-tests +++ b/share/spack/qa/run-unit-tests @@ -25,7 +25,7 @@ ${coverage_run} bin/spack -h ${coverage_run} bin/spack help -a # Profile and print top 20 lines for a simple call to spack spec -${coverage_run} bin/spack -p --lines 20 spec mpileaks +${coverage_run} bin/spack -p --lines 20 spec mpileaks%gcc # Run unit tests with code coverage ${coverage_run} bin/spack test "$@" |