hackport-0.6.4: cabal/cabal-testsuite/PackageTests/RequireExplicit/MultiPkg/cabal.test.hs
import Test.Cabal.Prelude
-- See #4332, dep solving output is not deterministic
main = cabalTest . recordMode DoNotRecord $ withRepo "../repo" $ do
-- other-lib is a dependency of b, but it's not listed in cabal.project
res <- fails $ cabal' "v2-build" ["all", "--dry-run", "--reject-unconstrained-dependencies", "all", "--constraint", "some-exe -any"]
assertOutputContains "not a user-provided goal" res
-- and some-exe is a build-tool dependency of b, again not listed
res <- fails $ cabal' "v2-build" ["all", "--dry-run", "--reject-unconstrained-dependencies", "all", "--constraint", "other-lib -any"]
assertOutputContains "not a user-provided goal" res
-- everything's listed, good to go
cabal "v2-build" ["all", "--dry-run", "--reject-unconstrained-dependencies", "all", "--constraint", "other-lib -any", "--constraint", "some-exe -any"]
-- a depends on b, but b is a local dependency, so it gets a pass
cabal "v2-build" ["a", "--dry-run", "--reject-unconstrained-dependencies", "all", "--constraint", "other-lib -any", "--constraint", "some-exe -any"]