Skip to content
Snippets Groups Projects
Unverified Commit 5a8511fe authored by Lennart Kolmodin's avatar Lennart Kolmodin
Browse files

Add other-modules for the tests and benchmarks.

GHC gave a warning that we needed modules but didn't explicitly depend
on them in the .cabal file.
parent ecf48c45
No related branches found
No related tags found
No related merge requests found
......@@ -64,6 +64,16 @@ test-suite qc
other-modules:
Action
Arbitrary
other-modules:
Data.Binary
Data.Binary.Builder
Data.Binary.Class
Data.Binary.FloatCast
Data.Binary.Generic
Data.Binary.Get
Data.Binary.Get.Internal
Data.Binary.Internal
Data.Binary.Put
build-depends:
base >= 4.5.0.0 && < 5,
bytestring >= 0.10.4,
......@@ -84,6 +94,16 @@ test-suite read-write-file
type: exitcode-stdio-1.0
hs-source-dirs: src tests
main-is: File.hs
other-modules:
Data.Binary
Data.Binary.Builder
Data.Binary.Class
Data.Binary.FloatCast
Data.Binary.Generic
Data.Binary.Get
Data.Binary.Get.Internal
Data.Binary.Internal
Data.Binary.Put
build-depends:
base >= 4.5.0.0 && < 5,
bytestring >= 0.10.4,
......@@ -104,7 +124,17 @@ benchmark bench
type: exitcode-stdio-1.0
hs-source-dirs: src benchmarks
main-is: Benchmark.hs
other-modules: MemBench
other-modules:
MemBench
Data.Binary
Data.Binary.Builder
Data.Binary.Class
Data.Binary.FloatCast
Data.Binary.Generic
Data.Binary.Get
Data.Binary.Get.Internal
Data.Binary.Internal
Data.Binary.Put
build-depends:
base >= 4.5.0.0 && < 5,
bytestring >= 0.10.4
......@@ -122,6 +152,16 @@ benchmark get
type: exitcode-stdio-1.0
hs-source-dirs: src benchmarks
main-is: Get.hs
other-modules:
Data.Binary
Data.Binary.Builder
Data.Binary.Class
Data.Binary.FloatCast
Data.Binary.Generic
Data.Binary.Get
Data.Binary.Get.Internal
Data.Binary.Internal
Data.Binary.Put
build-depends:
attoparsec,
base >= 4.5.0.0 && < 5,
......@@ -142,6 +182,16 @@ benchmark put
type: exitcode-stdio-1.0
hs-source-dirs: src benchmarks
main-is: Put.hs
other-modules:
Data.Binary
Data.Binary.Builder
Data.Binary.Class
Data.Binary.FloatCast
Data.Binary.Generic
Data.Binary.Get
Data.Binary.Get.Internal
Data.Binary.Internal
Data.Binary.Put
build-depends:
base >= 4.5.0.0 && < 5,
bytestring >= 0.10.4,
......@@ -159,6 +209,16 @@ benchmark generics-bench
type: exitcode-stdio-1.0
hs-source-dirs: src benchmarks
main-is: GenericsBench.hs
other-modules:
Data.Binary
Data.Binary.Builder
Data.Binary.Class
Data.Binary.FloatCast
Data.Binary.Generic
Data.Binary.Get
Data.Binary.Get.Internal
Data.Binary.Internal
Data.Binary.Put
build-depends:
base >= 4.5.0.0 && < 5,
bytestring >= 0.10.4,
......@@ -188,6 +248,16 @@ benchmark builder
type: exitcode-stdio-1.0
hs-source-dirs: src benchmarks
main-is: Builder.hs
other-modules:
Data.Binary
Data.Binary.Builder
Data.Binary.Class
Data.Binary.FloatCast
Data.Binary.Generic
Data.Binary.Get
Data.Binary.Get.Internal
Data.Binary.Internal
Data.Binary.Put
build-depends:
base >= 4.5.0.0 && < 5,
bytestring >= 0.10.4,
......
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