diff options
author | Michael Kuhn <suraia@ikkoku.de> | 2016-07-16 00:48:04 +0200 |
---|---|---|
committer | Michael Kuhn <suraia@ikkoku.de> | 2016-07-16 00:48:04 +0200 |
commit | d61190c3fffc3597c49dc995590dc419b10aab73 (patch) | |
tree | d21d0eab59a11bab71bb36e3044c19d086d374a2 | |
parent | 5ffc50732bdcfca325115e23d359612426f38854 (diff) | |
download | spack-d61190c3fffc3597c49dc995590dc419b10aab73.tar.gz spack-d61190c3fffc3597c49dc995590dc419b10aab73.tar.bz2 spack-d61190c3fffc3597c49dc995590dc419b10aab73.tar.xz spack-d61190c3fffc3597c49dc995590dc419b10aab73.zip |
Explicitly request zmpi in module blacklist test.
-rw-r--r-- | lib/spack/spack/test/modules.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/test/modules.py b/lib/spack/spack/test/modules.py index 6d2e3705bd..b6d35154e3 100644 --- a/lib/spack/spack/test/modules.py +++ b/lib/spack/spack/test/modules.py @@ -266,7 +266,7 @@ class TclTests(MockPackagesTest): def test_blacklist(self): spack.modules.CONFIGURATION = configuration_blacklist - spec = spack.spec.Spec('mpileaks') + spec = spack.spec.Spec('mpileaks ^zmpi') content = self.get_modulefile_content(spec) self.assertEqual(len([x for x in content if 'is-loaded' in x]), 1) self.assertEqual(len([x for x in content if 'module load ' in x]), 1) |