forked from haskell/cabal
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add test cases that reproduce haskell#7241.
- Loading branch information
1 parent
1a5b735
commit 8a95c76
Showing
18 changed files
with
106 additions
and
0 deletions.
There are no files selected for viewing
1 change: 1 addition & 0 deletions
1
cabal-install/tests/IntegrationTests2/sdist/projects-default-no/cabal.dot-uv.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 @@ | ||
packages: . |
1 change: 1 addition & 0 deletions
1
cabal-install/tests/IntegrationTests2/sdist/projects-default-no/cabal.sub-pq.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 @@ | ||
packages: p/ q/ |
1 change: 1 addition & 0 deletions
1
cabal-install/tests/IntegrationTests2/sdist/projects-default-no/cabal.sub-rs.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 @@ | ||
packages: r/ s/ |
8 changes: 8 additions & 0 deletions
8
cabal-install/tests/IntegrationTests2/sdist/projects-default-no/p/p.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 @@ | ||
name: p | ||
version: 0.1 | ||
build-type: Simple | ||
cabal-version: >= 1.2 | ||
|
||
library | ||
exposed-modules: P | ||
build-depends: base |
8 changes: 8 additions & 0 deletions
8
cabal-install/tests/IntegrationTests2/sdist/projects-default-no/q/q.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 @@ | ||
name: q | ||
version: 0.1 | ||
build-type: Simple | ||
cabal-version: >= 1.2 | ||
|
||
library | ||
exposed-modules: Q | ||
build-depends: base |
8 changes: 8 additions & 0 deletions
8
cabal-install/tests/IntegrationTests2/sdist/projects-default-no/r/r.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 @@ | ||
name: r | ||
version: 0.1 | ||
build-type: Simple | ||
cabal-version: >= 1.2 | ||
|
||
library | ||
exposed-modules: R | ||
build-depends: base |
4 changes: 4 additions & 0 deletions
4
cabal-install/tests/IntegrationTests2/sdist/projects-default-no/repro.txt
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 @@ | ||
cabal sdist all | ||
cabal sdist all --project-file=cabal.sub-pq.project | ||
cabal sdist all --project-file=cabal.sub-rs.project | ||
cabal sdist all --project-file=cabal.dot-uv.project |
8 changes: 8 additions & 0 deletions
8
cabal-install/tests/IntegrationTests2/sdist/projects-default-no/s/s.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 @@ | ||
name: s | ||
version: 0.1 | ||
build-type: Simple | ||
cabal-version: >= 1.2 | ||
|
||
library | ||
exposed-modules: S | ||
build-depends: base |
14 changes: 14 additions & 0 deletions
14
cabal-install/tests/IntegrationTests2/sdist/projects-default-no/uv.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,14 @@ | ||
name: uv | ||
version: 0.1 | ||
build-type: Simple | ||
cabal-version: >= 1.2 | ||
|
||
library U | ||
visibility: public | ||
exposed-modules: U.u | ||
build-depends: base | ||
|
||
library V | ||
visibility: public | ||
exposed-modules: V.v | ||
build-depends: base |
1 change: 1 addition & 0 deletions
1
cabal-install/tests/IntegrationTests2/sdist/projects-default-yes/cabal.dot-uv.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 @@ | ||
packages: . |
1 change: 1 addition & 0 deletions
1
cabal-install/tests/IntegrationTests2/sdist/projects-default-yes/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 @@ | ||
packages: p/ q/ |
1 change: 1 addition & 0 deletions
1
cabal-install/tests/IntegrationTests2/sdist/projects-default-yes/cabal.sub-rs.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 @@ | ||
packages: r/ s/ |
8 changes: 8 additions & 0 deletions
8
cabal-install/tests/IntegrationTests2/sdist/projects-default-yes/p/p.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 @@ | ||
name: p | ||
version: 0.1 | ||
build-type: Simple | ||
cabal-version: >= 1.2 | ||
|
||
library | ||
exposed-modules: P | ||
build-depends: base |
8 changes: 8 additions & 0 deletions
8
cabal-install/tests/IntegrationTests2/sdist/projects-default-yes/q/q.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 @@ | ||
name: q | ||
version: 0.1 | ||
build-type: Simple | ||
cabal-version: >= 1.2 | ||
|
||
library | ||
exposed-modules: Q | ||
build-depends: base |
8 changes: 8 additions & 0 deletions
8
cabal-install/tests/IntegrationTests2/sdist/projects-default-yes/r/r.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 @@ | ||
name: r | ||
version: 0.1 | ||
build-type: Simple | ||
cabal-version: >= 1.2 | ||
|
||
library | ||
exposed-modules: R | ||
build-depends: base |
4 changes: 4 additions & 0 deletions
4
cabal-install/tests/IntegrationTests2/sdist/projects-default-yes/repro.txt
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 @@ | ||
cabal sdist all | ||
cabal sdist all --project-file=cabal.project | ||
cabal sdist all --project-file=cabal.sub-rs.project | ||
cabal sdist all --project-file=cabal.dot-uv.project |
8 changes: 8 additions & 0 deletions
8
cabal-install/tests/IntegrationTests2/sdist/projects-default-yes/s/s.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 @@ | ||
name: s | ||
version: 0.1 | ||
build-type: Simple | ||
cabal-version: >= 1.2 | ||
|
||
library | ||
exposed-modules: S | ||
build-depends: base |
14 changes: 14 additions & 0 deletions
14
cabal-install/tests/IntegrationTests2/sdist/projects-default-yes/uv.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,14 @@ | ||
name: uv | ||
version: 0.1 | ||
build-type: Simple | ||
cabal-version: >= 1.2 | ||
|
||
library U | ||
visibility: public | ||
exposed-modules: U.u | ||
build-depends: base | ||
|
||
library V | ||
visibility: public | ||
exposed-modules: V.v | ||
build-depends: base |