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
|
|
|
|
|
|
|
|
executable dejafu-tests
|
|
|
|
main-is: Main.hs
|
|
|
|
|
2016-03-31 16:45:55 +03:00
|
|
|
other-modules: Cases
|
2017-03-04 01:06:09 +03:00
|
|
|
, Cases.Async
|
2016-03-31 16:45:55 +03:00
|
|
|
, Cases.SingleThreaded
|
2015-12-01 08:03:31 +03:00
|
|
|
, Cases.MultiThreaded
|
2017-06-07 16:03:00 +03:00
|
|
|
, Cases.Refinement
|
2015-12-01 08:03:31 +03:00
|
|
|
, Cases.Litmus
|
2017-08-10 22:22:03 +03:00
|
|
|
, Cases.Discard
|
2017-09-20 22:45:47 +03:00
|
|
|
, Cases.Regressions
|
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
|
2016-05-26 15:54:13 +03:00
|
|
|
, Examples.ClassLaws.Impredicative
|
2015-12-01 08:03:31 +03:00
|
|
|
, Examples.Logger
|
|
|
|
, 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
|
2015-12-01 08:03:31 +03:00
|
|
|
|
|
|
|
-- other-extensions:
|
|
|
|
build-depends: base
|
2016-06-20 23:45:34 +03:00
|
|
|
, concurrency
|
2015-12-01 08:03:31 +03:00
|
|
|
, containers
|
|
|
|
, dejafu
|
|
|
|
, exceptions
|
|
|
|
, HUnit
|
|
|
|
, hunit-dejafu
|
|
|
|
, QuickCheck
|
2017-02-20 06:23:46 +03:00
|
|
|
, random
|
2015-12-01 08:03:31 +03:00
|
|
|
, test-framework
|
|
|
|
, test-framework-hunit
|
|
|
|
, test-framework-quickcheck2
|
|
|
|
-- hs-source-dirs:
|
2016-06-20 23:45:34 +03:00
|
|
|
default-language: Haskell2010
|