blob: c0dffdb5e04e17c15f45877eb8e2167379ef9bf6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
--- a/lens.cabal
+++ b/lens.cabal
@@ -148,6 +148,11 @@ flag dump-splices
default: False
manual: True
+-- You can disable the templates test suite with -f-test-templates
+flag test-templates
+ default: True
+ manual: True
+
-- You can disable the doctests test suite with -f-test-doctests
flag test-doctests
default: True
@@ -340,6 +345,9 @@ test-suite templates
ghc-options: -Wall -threaded
hs-source-dirs: tests
+ if !flag(test-templates)
+ buildable: False
+
if flag(dump-splices)
ghc-options: -ddump-splices
|