File: AllTests.hs

package info (click to toggle)
haskell-monad-par 0.3.6-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 208 kB
  • sloc: haskell: 1,583; makefile: 19
file content (20 lines) | stat: -rw-r--r-- 519 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

-- | Combine individual test modules into a single module.

module Main where 

import Test.Framework (defaultMain, testGroup)
import qualified AListTest 
import qualified AsyncTest
import qualified ParTests1
import qualified ParTests2

main = defaultMain $ concat $ 
       [ AListTest.tests
       , ParTests1.tests
--       , ParTests2.tests -- [2013.09.08] Temporarily disabling till we get back to debugging Direct.
-- Not working right now:
--       , AsyncTests.tests
       ]

-- main = AsyncTests.manual_main