Skip to content
Snippets Groups Projects
Commit 1874e8d8 authored by kristenk's avatar kristenk
Browse files

Make test from #4481 more thorough by removing --dry-run.

parent baba5859
No related branches found
No related tags found
No related merge requests found
Showing
with 44 additions and 11 deletions
import Module (message)
main = putStrLn $ "Main.hs: " ++ message
import Module (message)
import Distribution.Simple
main = putStrLn ("Setup.hs: " ++ message) >> defaultMain
name: pkg
version: 1.0
build-type: Custom
cabal-version: >= 1.24
cabal-version: >= 1.2
custom-setup
setup-depends: setup-dep == 2.*
setup-depends: base, Cabal, setup-dep == 2.*
library
build-depends: setup-dep == 1.*
executable my-exe
main-is: Main.hs
build-depends: base, setup-dep == 1.*
module Module (message) where
message = "setup-dep from repo"
......@@ -4,3 +4,5 @@ build-type: Simple
cabal-version: >= 1.2
library
build-depends: base
exposed-modules: Module
module Module (message) where
message = "setup-dep from project"
......@@ -4,3 +4,5 @@ build-type: Simple
cabal-version: >= 1.2
library
build-depends: base
exposed-modules: Module
......@@ -8,10 +8,19 @@ next goal: setup-dep (user goal)
rejecting: setup-dep-2.0 (conflict: pkg => setup-dep==1.*)
rejecting: setup-dep-1.0 (constraint from user target requires ==2.0)
fail (backjumping, conflict set: pkg, setup-dep)
After searching the rest of the dependency tree exhaustively, these were the goals I've had most trouble fulfilling: setup-dep (3), pkg (2)
After searching the rest of the dependency tree exhaustively, these were the goals I've had most trouble fulfilling: pkg (4), setup-dep (3)
# cabal new-build
Resolving dependencies...
In order, the following would be built:
In order, the following will be built:
- setup-dep-1.0 (lib:setup-dep) (requires download & build)
- setup-dep-2.0 (first run)
- pkg-1.0 (lib:pkg) (first run)
- setup-dep-2.0 (lib:setup-dep) (first run)
- pkg-1.0 (exe:my-exe) (first run)
Configuring setup-dep-1.0...
Preprocessing library for setup-dep-1.0..
Building library for setup-dep-1.0..
Installing library in <PATH>
Configuring setup-dep-2.0...
Preprocessing library for setup-dep-2.0..
Building library for setup-dep-2.0..
# pkg my-exe
Main.hs: setup-dep from repo
......@@ -10,6 +10,12 @@ import Test.Cabal.Prelude
-- qualifier as pkg, even though they are both build targets of the project.
-- The solution must use --independent-goals to give pkg and setup-dep different
-- qualifiers.
main = cabalTest $ withRepo "repo" $ do
fails $ cabal "new-build" ["pkg", "--dry-run"]
cabal "new-build" ["pkg", "--dry-run", "--independent-goals"]
main = cabalTest $ do
skipUnless =<< hasNewBuildCompatBootCabal
withRepo "repo" $ do
fails $ cabal "new-build" ["pkg:my-exe", "--dry-run"]
r1 <- cabal' "new-build" ["pkg:my-exe", "--independent-goals"]
assertOutputContains "Setup.hs: setup-dep from project" r1
withPlan $ do
r2 <- runPlanExe' "pkg" "my-exe" []
assertOutputContains "Main.hs: setup-dep from repo" r2
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment