summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2016-01-02 14:25:10 -0800
committerTodd Gamblin <tgamblin@llnl.gov>2016-01-02 14:25:10 -0800
commit20b7f8a8e0ea186cde1e641c154566f279e67cd6 (patch)
tree475104cd9a038ed10224c162a35c6f26309e3115 /lib
parente8e6368cc8ab03be4b635731ed43b0fcae47712a (diff)
downloadspack-20b7f8a8e0ea186cde1e641c154566f279e67cd6.tar.gz
spack-20b7f8a8e0ea186cde1e641c154566f279e67cd6.tar.bz2
spack-20b7f8a8e0ea186cde1e641c154566f279e67cd6.tar.xz
spack-20b7f8a8e0ea186cde1e641c154566f279e67cd6.zip
Fix bug in tests.
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/spack/compilers/__init__.py29
-rw-r--r--lib/spack/spack/test/mock_packages_test.py2
2 files changed, 17 insertions, 14 deletions
diff --git a/lib/spack/spack/compilers/__init__.py b/lib/spack/spack/compilers/__init__.py
index 67dfaa3ac9..2a3d67c731 100644
--- a/lib/spack/spack/compilers/__init__.py
+++ b/lib/spack/spack/compilers/__init__.py
@@ -46,6 +46,7 @@ from spack.util.environment import get_path
_imported_compilers_module = 'spack.compilers'
_required_instance_vars = ['cc', 'cxx', 'f77', 'fc']
+# TODO: customize order in config file
_default_order = ['gcc', 'intel', 'pgi', 'clang', 'xlc']
def _auto_compiler_spec(function):
@@ -132,7 +133,7 @@ def remove_compiler_from_config(compiler_spec, arch=None, scope=None):
spack.config.update_config('compilers', update, scope)
-def all_compilers(arch=None, scope=None):
+def all_compilers_config(arch=None, scope=None):
"""Return a set of specs for all the compiler versions currently
available to build with. These are instances of CompilerSpec.
"""
@@ -144,25 +145,25 @@ def all_compilers(arch=None, scope=None):
merged_config = get_compiler_config('all', scope=scope)
merged_config = spack.config._merge_yaml(merged_config, arch_config)
- # Return compiler specs for the result.
- return [spack.spec.CompilerSpec(s) for s in merged_config]
+ return merged_config
+
+
+def all_compilers(arch=None, scope=None):
+ # Return compiler specs from the merged config.
+ return [spack.spec.CompilerSpec(s)
+ for s in all_compilers_config(arch, scope)]
-_cached_default_compiler = None
def default_compiler():
- global _cached_default_compiler
- if _cached_default_compiler:
- return _cached_default_compiler
versions = []
- for name in _default_order: # TODO: customize order.
+ for name in _default_order:
versions = find(name)
- if versions: break
-
- if not versions:
+ if versions:
+ break
+ else:
raise NoCompilersError()
- _cached_default_compiler = sorted(versions)[-1]
- return _cached_default_compiler
+ return sorted(versions)[-1]
def find_compilers(*path):
@@ -224,7 +225,7 @@ def compilers_for_spec(compiler_spec, arch=None, scope=None):
"""This gets all compilers that satisfy the supplied CompilerSpec.
Returns an empty list if none are found.
"""
- config = get_compiler_config(arch, scope)
+ config = all_compilers_config(arch, scope)
def get_compiler(cspec):
items = config[str(cspec)]
diff --git a/lib/spack/spack/test/mock_packages_test.py b/lib/spack/spack/test/mock_packages_test.py
index 7642edcf4b..e9f1f95df5 100644
--- a/lib/spack/spack/test/mock_packages_test.py
+++ b/lib/spack/spack/test/mock_packages_test.py
@@ -24,6 +24,7 @@
##############################################################################
import sys
import os
+import shutil
import unittest
import tempfile
from ordereddict_backport import OrderedDict
@@ -103,6 +104,7 @@ class MockPackagesTest(unittest.TestCase):
"""Restore the real packages path after any test."""
spack.repo.swap(self.db)
spack.config.config_scopes = self.real_scopes
+ shutil.rmtree(self.temp_config, ignore_errors=True)
spack.config.clear_config_caches()
# Restore dependency changes that happened during the test