2015-12-01 08:03:31 +03:00
|
|
|
-- Initial dejafu-tests.cabal generated by cabal init. For further
|
|
|
|
-- documentation, see http://haskell.org/cabal/users-guide/
|
|
|
|
|
|
|
|
name: dejafu-tests
|
2016-05-12 16:34:32 +03:00
|
|
|
version: 0.4.0.0
|
2015-12-01 08:03:31 +03:00
|
|
|
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
|
|
|
|
|
2018-02-12 01:28:39 +03:00
|
|
|
library
|
2018-02-13 02:01:00 +03:00
|
|
|
exposed-modules: Unit
|
2018-06-11 00:02:40 +03:00
|
|
|
, Unit.Predicates
|
2018-02-13 02:01:00 +03:00
|
|
|
, Unit.Properties
|
|
|
|
|
|
|
|
, Integration
|
|
|
|
, Integration.Async
|
|
|
|
, Integration.SingleThreaded
|
|
|
|
, Integration.MultiThreaded
|
|
|
|
, Integration.Refinement
|
|
|
|
, Integration.Litmus
|
|
|
|
, Integration.Regressions
|
2018-02-24 00:21:46 +03:00
|
|
|
, Integration.SCT
|
2018-03-02 22:42:09 +03:00
|
|
|
, Integration.Names
|
2015-12-01 08:03:31 +03:00
|
|
|
|
2016-03-31 16:45:55 +03:00
|
|
|
, Examples
|
2016-03-31 16:37:02 +03:00
|
|
|
, Examples.AutoUpdate
|
2015-12-01 08:03:31 +03:00
|
|
|
, Examples.ClassLaws
|
|
|
|
, Examples.Logger
|
2018-02-12 01:35:29 +03:00
|
|
|
, Examples.ParMonad
|
|
|
|
, Examples.ParMonad.Direct
|
|
|
|
, Examples.ParMonad.DirectInternal
|
2015-12-01 08:03:31 +03:00
|
|
|
, Examples.Philosophers
|
2016-03-31 17:08:37 +03:00
|
|
|
, Examples.SearchParty
|
2016-05-26 15:54:13 +03:00
|
|
|
, Examples.SearchParty.Impredicative
|
2015-12-01 08:03:31 +03:00
|
|
|
|
2017-09-20 01:17:02 +03:00
|
|
|
, Common
|
2017-05-04 01:09:56 +03:00
|
|
|
, QSemN
|
2018-03-24 23:10:23 +03:00
|
|
|
, Test.Tasty.Hedgehog
|
2015-12-01 08:03:31 +03:00
|
|
|
|
|
|
|
build-depends: base
|
2018-02-12 01:35:29 +03:00
|
|
|
, abstract-deque
|
2016-06-20 23:45:34 +03:00
|
|
|
, concurrency
|
2015-12-01 08:03:31 +03:00
|
|
|
, containers
|
2018-04-29 01:20:48 +03:00
|
|
|
, contravariant
|
2018-02-12 01:35:29 +03:00
|
|
|
, deepseq
|
2015-12-01 08:03:31 +03:00
|
|
|
, dejafu
|
|
|
|
, exceptions
|
2018-02-16 23:04:52 +03:00
|
|
|
, hedgehog
|
2018-02-12 01:35:29 +03:00
|
|
|
, mtl
|
|
|
|
, mwc-random
|
2017-02-20 06:23:46 +03:00
|
|
|
, random
|
2018-02-12 18:26:02 +03:00
|
|
|
, tasty
|
2018-02-15 14:34:24 +03:00
|
|
|
, tasty-expected-failure
|
2018-02-12 18:26:02 +03:00
|
|
|
, tasty-dejafu
|
2018-02-21 01:07:23 +03:00
|
|
|
, tasty-hunit
|
2018-02-12 01:35:29 +03:00
|
|
|
, vector
|
2018-02-12 01:28:39 +03:00
|
|
|
hs-source-dirs: lib
|
|
|
|
default-language: Haskell2010
|
2018-02-13 03:33:19 +03:00
|
|
|
ghc-options: -Wall
|
2018-02-12 01:28:39 +03:00
|
|
|
|
|
|
|
executable dejafu-tests
|
2018-06-24 11:55:28 +03:00
|
|
|
main-is: MainTest.hs
|
|
|
|
other-modules: Util
|
2018-02-12 01:28:39 +03:00
|
|
|
build-depends: base
|
|
|
|
, dejafu-tests
|
2018-02-12 18:26:02 +03:00
|
|
|
, tasty
|
2018-02-12 01:28:39 +03:00
|
|
|
hs-source-dirs: exe
|
2016-06-20 23:45:34 +03:00
|
|
|
default-language: Haskell2010
|
2018-02-13 03:33:19 +03:00
|
|
|
ghc-options: -Wall -threaded -rtsopts
|
2018-06-24 12:48:38 +03:00
|
|
|
|
|
|
|
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
|