Change test for not passing compiler flag

This commit is contained in:
Kayla Butler 2023-06-21 11:15:43 -07:00
parent fe5ea193fc
commit e101c77768

View File

@ -367,11 +367,12 @@ def test_concretize_compiler_flag_does_not_propagate(self):
"Optional compiler propagation isn't deprecated for original concretizer"
)
def test_concretize_propagate_compiler_flag_not_passed_to_dependent(self):
spec = Spec("hypre cflags=='-g' ^openblas cflags='-O3'")
spec = Spec("callpath cflags=='-g' ^dyninst cflags='-O3'")
spec.concretize()
assert set(spec.compiler_flags["cflags"]) == set(["-g"])
assert spec.satisfies("^openblas cflags='-O3'")
assert spec.satisfies("^dyninst cflags='-O3'")
assert spec.satisfies("^libelf cflags='-g'")
def test_mixing_compilers_only_affects_subdag(self):
spack.config.set("packages:all:compiler", ["clang", "gcc"])