Making compiler flag propagation test uniform

This commit is contained in:
Kayla Butler 2023-06-21 11:17:24 -07:00
parent e101c77768
commit b0d13f8fcc

View File

@ -358,10 +358,10 @@ def test_concretize_compiler_flag_propagate(self):
"Optional compiler propagation isn't deprecated for original concretizer"
)
def test_concretize_compiler_flag_does_not_propagate(self):
spec = Spec("hypre cflags='-g' ^openblas")
spec = Spec("callpath cflags='-g'")
spec.concretize()
assert not spec.satisfies("^openblas cflags='-g'")
assert not spec.satisfies("^dyninst cflags='-g'")
@pytest.mark.only_clingo(
"Optional compiler propagation isn't deprecated for original concretizer"