-
Notifications
You must be signed in to change notification settings - Fork 697
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
81 additions
and
0 deletions.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
cabal-testsuite/PackageTests/MultiRepl/KeepTempFiles/cabal.no.out
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# cabal clean | ||
# cabal v2-repl | ||
Resolving dependencies... | ||
Build profile: -w ghc-<GHCVER> -O1 | ||
In order, the following will be built: | ||
- pkg-a-1 (interactive) (lib) (first run) | ||
- pkg-b-0 (interactive) (lib) (first run) | ||
Configuring library for pkg-a-1... | ||
Preprocessing library for pkg-a-1... | ||
Configuring library for pkg-b-0... | ||
Preprocessing library for pkg-b-0... |
2 changes: 2 additions & 0 deletions
2
cabal-testsuite/PackageTests/MultiRepl/KeepTempFiles/cabal.project
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
packages: pkg-a/*.cabal | ||
packages: pkg-b/*.cabal |
31 changes: 31 additions & 0 deletions
31
cabal-testsuite/PackageTests/MultiRepl/KeepTempFiles/cabal.test.hs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
import Test.Cabal.Prelude | ||
|
||
main = do | ||
cabalTest' "yes" $ do | ||
skipUnlessGhcVersion ">= 9.4" | ||
cabal' "clean" [] | ||
res <- | ||
cabalWithStdin | ||
"v2-repl" | ||
[ "--keep-temp-files" | ||
, "--enable-multi-repl" | ||
, "pkg-b" | ||
, "pkg-a" | ||
] | ||
"Bar.bar" | ||
assertOutputContains "foo is 42" res | ||
void $ assertGlobMatchesTestDir testDistDir "multi-out*/" | ||
|
||
cabalTest' "no" $ do | ||
skipUnlessGhcVersion ">= 9.4" | ||
cabal' "clean" [] | ||
res <- | ||
cabalWithStdin | ||
"v2-repl" | ||
[ "--enable-multi-repl" | ||
, "pkg-b" | ||
, "pkg-a" | ||
] | ||
"Bar.bar" | ||
assertOutputContains "foo is 42" res | ||
void $ assertGlobDoesNotMatchTestDir testDistDir "multi-out*/" |
11 changes: 11 additions & 0 deletions
11
cabal-testsuite/PackageTests/MultiRepl/KeepTempFiles/cabal.yes.out
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# cabal clean | ||
# cabal v2-repl | ||
Resolving dependencies... | ||
Build profile: -w ghc-<GHCVER> -O1 | ||
In order, the following will be built: | ||
- pkg-a-1 (interactive) (lib) (first run) | ||
- pkg-b-0 (interactive) (lib) (first run) | ||
Configuring library for pkg-a-1... | ||
Preprocessing library for pkg-a-1... | ||
Configuring library for pkg-b-0... | ||
Preprocessing library for pkg-b-0... |
4 changes: 4 additions & 0 deletions
4
cabal-testsuite/PackageTests/MultiRepl/KeepTempFiles/pkg-a/Foo.hs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
module Foo where | ||
|
||
foo :: Int | ||
foo = 42 |
8 changes: 8 additions & 0 deletions
8
cabal-testsuite/PackageTests/MultiRepl/KeepTempFiles/pkg-a/pkg-a.cabal
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
cabal-version: 2.2 | ||
name: pkg-a | ||
version: 1 | ||
|
||
library | ||
default-language: Haskell2010 | ||
build-depends: base | ||
exposed-modules: Foo |
6 changes: 6 additions & 0 deletions
6
cabal-testsuite/PackageTests/MultiRepl/KeepTempFiles/pkg-b/Bar.hs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
module Bar (foo, bar) where | ||
|
||
import Foo (foo) | ||
|
||
bar :: String | ||
bar = "foo is " <> show foo |
8 changes: 8 additions & 0 deletions
8
cabal-testsuite/PackageTests/MultiRepl/KeepTempFiles/pkg-b/pkg-b.cabal
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
cabal-version: 2.2 | ||
name: pkg-b | ||
version: 0 | ||
|
||
library | ||
default-language: Haskell2010 | ||
build-depends: base, pkg-a | ||
exposed-modules: Bar |