From 320eb4872d1c2e776948786a344f403754261389 Mon Sep 17 00:00:00 2001 From: Peter Josef Scheibel Date: Thu, 29 Apr 2021 10:12:02 -0700 Subject: fix check when retrieving matching spec from environment when there is a match with a root spec as well as with a dependency of a root spec --- lib/spack/spack/environment.py | 2 +- lib/spack/spack/test/cmd/common/arguments.py | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/spack/spack/environment.py b/lib/spack/spack/environment.py index 218cd11095..a919ee5cee 100644 --- a/lib/spack/spack/environment.py +++ b/lib/spack/spack/environment.py @@ -1574,7 +1574,7 @@ class Environment(object): if abstract) if len(root_matches) == 1: - return root_matches[0][1] + return list(root_matches.items())[0][1] # More than one spec matched, and either multiple roots matched or # none of the matches were roots diff --git a/lib/spack/spack/test/cmd/common/arguments.py b/lib/spack/spack/test/cmd/common/arguments.py index 27648ee383..8797626d60 100644 --- a/lib/spack/spack/test/cmd/common/arguments.py +++ b/lib/spack/spack/test/cmd/common/arguments.py @@ -96,3 +96,21 @@ def test_multiple_env_match_raises_error(mock_packages, mutable_mock_env_path): spack.cmd.matching_spec_from_env(spack.cmd.parse_specs(['a'])[0]) assert 'matches multiple specs' in exc_info.value.message + + +@pytest.mark.usefixtures('config') +def test_root_and_dep_match_returns_root(mock_packages, mutable_mock_env_path): + e = ev.create('test') + e.add('b@0.9') + e.add('a foobar=bar') # Depends on b, should choose b@1.0 + e.concretize() + with e: + # This query matches the root b and b as a dependency of a. In that + # case the root instance should be preferred. + env_spec1 = spack.cmd.matching_spec_from_env( + spack.cmd.parse_specs(['b'])[0]) + assert env_spec1.satisfies('@0.9') + + env_spec2 = spack.cmd.matching_spec_from_env( + spack.cmd.parse_specs(['b@1.0'])[0]) + assert env_spec2 -- cgit v1.2.3-60-g2f50