mirror of
https://github.com/barrucadu/dejafu.git
synced 2024-12-18 11:01:50 +03:00
94e22a765e
New coverage report, as there have been a bunch of new tests since the one in the CONTRIBUTING file was generated: 54% expressions used (4311/7948) 51% boolean coverage (67/131) 47% guards (50/106), 31 always True, 6 always False, 19 unevaluated 57% 'if' conditions (11/19), 2 always True, 1 always False, 5 unevaluated 100% qualifiers (6/6) 61% alternatives used (413/671) 83% local declarations used (212/254) 28% top-level declarations used (313/1099)
56 lines
1.8 KiB
Plaintext
56 lines
1.8 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
|
|
|
|
executable dejafu-tests
|
|
main-is: Main.hs
|
|
|
|
other-modules: Cases
|
|
, Cases.Async
|
|
, Cases.SingleThreaded
|
|
, Cases.MultiThreaded
|
|
, Cases.Refinement
|
|
, Cases.Litmus
|
|
|
|
, Examples
|
|
, Examples.AutoUpdate
|
|
, Examples.ClassLaws
|
|
, Examples.ClassLaws.Impredicative
|
|
, Examples.Logger
|
|
, Examples.Philosophers
|
|
, Examples.SearchParty
|
|
, Examples.SearchParty.Impredicative
|
|
|
|
, QSemN
|
|
, Utils
|
|
|
|
-- other-extensions:
|
|
build-depends: base
|
|
, concurrency
|
|
, containers
|
|
, dejafu
|
|
, exceptions
|
|
, HUnit
|
|
, hunit-dejafu
|
|
, QuickCheck
|
|
, random
|
|
, test-framework
|
|
, test-framework-hunit
|
|
, test-framework-quickcheck2
|
|
-- hs-source-dirs:
|
|
default-language: Haskell2010
|