diff options
author | scheibelp <scheibel1@llnl.gov> | 2017-09-29 22:08:15 -0700 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2017-09-29 22:08:15 -0700 |
commit | 9e7faff6c979a89d4549238e66c25bb59d04db2a (patch) | |
tree | 9bb503c32f96661b519245259a448df95b79d06a /var | |
parent | 3c0e799a51936a2d631b40cd3af8df62dd323dc9 (diff) | |
download | spack-9e7faff6c979a89d4549238e66c25bb59d04db2a.tar.gz spack-9e7faff6c979a89d4549238e66c25bb59d04db2a.tar.bz2 spack-9e7faff6c979a89d4549238e66c25bb59d04db2a.tar.xz spack-9e7faff6c979a89d4549238e66c25bb59d04db2a.zip |
Add test deptype (#5132)
* Add '--test=all' and '--test=root' options to test either the root or the root and all dependencies.
* add a test dependency type that is only used when --test is enabled.
* test dependencies are not added to the spec, but they are provided in the test environment.
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/libpsl/package.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/libpsl/package.py b/var/spack/repos/builtin/packages/libpsl/package.py index f43388dcd0..27e1f15dd6 100644 --- a/var/spack/repos/builtin/packages/libpsl/package.py +++ b/var/spack/repos/builtin/packages/libpsl/package.py @@ -39,8 +39,7 @@ class Libpsl(AutotoolsPackage): depends_on('pkg-config@0.9.0:', type='build') depends_on('python@2.7:', type='build') - # TODO: Add a 'test' deptype - # depends_on('valgrind', type='test') + depends_on('valgrind~mpi~boost', type='test') def configure_args(self): spec = self.spec |