mirror of
https://github.com/barrucadu/dejafu.git
synced 2024-11-22 21:50:51 +03:00
91 lines
2.9 KiB
Plaintext
91 lines
2.9 KiB
Plaintext
-- Initial dejafu-tests.cabal generated by cabal init. For further
|
|
-- documentation, see http://haskell.org/cabal/users-guide/
|
|
|
|
name: dejafu-tests
|
|
version: 0.4.0.0
|
|
synopsis: The test suite for dejafu
|
|
-- description:
|
|
homepage: https://github.com/barrucadu/dejafu
|
|
license: MIT
|
|
license-file: LICENSE
|
|
author: Michael Walker
|
|
maintainer: mike@barrucadu.co.uk
|
|
-- copyright:
|
|
-- category:
|
|
build-type: Simple
|
|
-- extra-source-files:
|
|
cabal-version: >=1.10
|
|
|
|
library
|
|
exposed-modules: Unit
|
|
, Unit.Predicates
|
|
, Unit.Properties
|
|
|
|
, Integration
|
|
, Integration.Async
|
|
, Integration.Litmus
|
|
, Integration.MonadDejaFu
|
|
, Integration.MultiThreaded
|
|
, Integration.Names
|
|
, Integration.Refinement
|
|
, Integration.Regressions
|
|
, Integration.SCT
|
|
, Integration.SingleThreaded
|
|
|
|
, Examples
|
|
, Examples.AutoUpdate
|
|
, Examples.ClassLaws
|
|
, Examples.Logger
|
|
, Examples.ParMonad
|
|
, Examples.ParMonad.Direct
|
|
, Examples.ParMonad.DirectInternal
|
|
, Examples.Philosophers
|
|
, Examples.SearchParty
|
|
, Examples.SearchParty.Impredicative
|
|
|
|
, Common
|
|
, QSemN
|
|
|
|
build-depends: base
|
|
, abstract-deque
|
|
, concurrency
|
|
, containers
|
|
, contravariant
|
|
, deepseq
|
|
, dejafu
|
|
, exceptions
|
|
, hedgehog
|
|
, mtl
|
|
, mwc-random
|
|
, random
|
|
, tasty
|
|
, tasty-expected-failure
|
|
, tasty-dejafu
|
|
, tasty-hedgehog
|
|
, tasty-hunit
|
|
, vector
|
|
hs-source-dirs: lib
|
|
default-language: Haskell2010
|
|
ghc-options: -Wall
|
|
|
|
executable dejafu-tests
|
|
main-is: MainTest.hs
|
|
other-modules: Util
|
|
build-depends: base
|
|
, dejafu-tests
|
|
, tasty
|
|
hs-source-dirs: exe
|
|
default-language: Haskell2010
|
|
ghc-options: -Wall -threaded -rtsopts
|
|
|
|
executable dejafu-bench
|
|
main-is: MainBench.hs
|
|
other-modules: Util
|
|
build-depends: base
|
|
, criterion
|
|
, dejafu-tests
|
|
, tasty
|
|
hs-source-dirs: exe
|
|
default-language: Haskell2010
|
|
ghc-options: -Wall -threaded -rtsopts
|