aboutsummaryrefslogtreecommitdiff
path: root/tests/src-repo
diff options
context:
space:
mode:
authorDaniel Gröber <dxld@darkboxed.org>2020-03-25 18:40:15 +0100
committerDaniel Gröber <dxld@darkboxed.org>2020-05-02 03:15:31 +0200
commit262231a8f28feb711a8b164c62d9b89bcc11df47 (patch)
tree8b9f2812eb5c0516823d81eec9fc0e5e2b13cd7c /tests/src-repo
parenta5cb011fccf6d06a229b83052150f4accabdac0d (diff)
Fix cabal projects using source-repository-package
Apparently we can get source-repo-packages in plan.json even when filtering for `"style": "local"`(`UnitTypeLocal`). It's possible the root cause here is a cabal bug as source-repository-package should really be treated more like a tarball than a local package. Regardless we simply filter units by actually checking for `uPkgSrc=Just LocalUnpackedPackage` instead of relying on "style". This fixes #99
Diffstat (limited to 'tests/src-repo')
-rw-r--r--tests/src-repo/Exe.hs5
-rw-r--r--tests/src-repo/Setup.hs2
-rw-r--r--tests/src-repo/cabal.project7
-rw-r--r--tests/src-repo/packages.list1
-rw-r--r--tests/src-repo/src-repo.cabal19
5 files changed, 34 insertions, 0 deletions
diff --git a/tests/src-repo/Exe.hs b/tests/src-repo/Exe.hs
new file mode 100644
index 0000000..7655927
--- /dev/null
+++ b/tests/src-repo/Exe.hs
@@ -0,0 +1,5 @@
+module Main where
+
+import Lib
+
+main = print foo
diff --git a/tests/src-repo/Setup.hs b/tests/src-repo/Setup.hs
new file mode 100644
index 0000000..9a994af
--- /dev/null
+++ b/tests/src-repo/Setup.hs
@@ -0,0 +1,2 @@
+import Distribution.Simple
+main = defaultMain
diff --git a/tests/src-repo/cabal.project b/tests/src-repo/cabal.project
new file mode 100644
index 0000000..8c4d704
--- /dev/null
+++ b/tests/src-repo/cabal.project
@@ -0,0 +1,7 @@
+packages: .
+
+source-repository-package
+ type: git
+ location: ${topdir}
+ tag: HEAD
+ subdir: tests/exelib
diff --git a/tests/src-repo/packages.list b/tests/src-repo/packages.list
new file mode 100644
index 0000000..80e52ce
--- /dev/null
+++ b/tests/src-repo/packages.list
@@ -0,0 +1 @@
+./
diff --git a/tests/src-repo/src-repo.cabal b/tests/src-repo/src-repo.cabal
new file mode 100644
index 0000000..086a696
--- /dev/null
+++ b/tests/src-repo/src-repo.cabal
@@ -0,0 +1,19 @@
+name: src-repo
+version: 0
+build-type: Simple
+cabal-version: >=1.10
+
+executable src-repo
+ main-is: Exe.hs
+ build-depends: base, exelib
+ default-language: Haskell2010
+
+test-suite exe-test
+ type: exitcode-stdio-1.0
+ main-is: Exe.hs
+ build-depends: base, exelib
+
+benchmark exe-bench
+ type: exitcode-stdio-1.0
+ main-is: Exe.hs
+ build-depends: base, exelib