diff --git a/lib/spack/spack/cmd/__init__.py b/lib/spack/spack/cmd/__init__.py index 9dd6dc4c6ec355c3adaed0c6dbd4a40c21e5f214..fe0ed0c2247a95228d8811a37aeaa61184797a7a 100644 --- a/lib/spack/spack/cmd/__init__.py +++ b/lib/spack/spack/cmd/__init__.py @@ -24,6 +24,7 @@ import spack.spec import spack.store import spack.util.spack_json as sjson +import spack.util.string from spack.error import SpackError @@ -134,7 +135,9 @@ def parse_specs(args, **kwargs): tests = kwargs.get('tests', False) try: - sargs = args if isinstance(args, six.string_types) else ' '.join(args) + sargs = args + if not isinstance(args, six.string_types): + sargs = ' '.join(spack.util.string.quote(args)) specs = spack.spec.parse(sargs) for spec in specs: if concretize: diff --git a/lib/spack/spack/test/cmd/common/arguments.py b/lib/spack/spack/test/cmd/common/arguments.py index 2d32342c1bee1182c573f1cc9a7cf8ceb7bf200c..82ae495611e7c2161b9512bf91ec15350bd410a9 100644 --- a/lib/spack/spack/test/cmd/common/arguments.py +++ b/lib/spack/spack/test/cmd/common/arguments.py @@ -9,6 +9,7 @@ import pytest +import spack.cmd import spack.cmd.common.arguments as arguments import spack.config @@ -62,3 +63,20 @@ def test_negative_integers_not_allowed_for_parallel_jobs(parser): parser.parse_args(['-j', '-2']) assert 'expected a positive integer' in str(exc_info.value) + + +@pytest.mark.parametrize('specs,expected_variants,unexpected_variants', [ + (['coreutils', 'cflags=-O3 -g'], [], ['g']), + (['coreutils', 'cflags=-O3', '-g'], ['g'], []), +]) +@pytest.mark.regression('12951') +def test_parse_spec_flags_with_spaces( + specs, expected_variants, unexpected_variants +): + spec_list = spack.cmd.parse_specs(specs) + assert len(spec_list) == 1 + + s = spec_list.pop() + + assert all(x not in s.variants for x in unexpected_variants) + assert all(x in s.variants for x in expected_variants)