mirror of
https://github.com/barrucadu/dejafu.git
synced 2024-11-23 14:14:36 +03:00
26 lines
769 B
Haskell
Executable File
26 lines
769 B
Haskell
Executable File
module Cases where
|
|
|
|
import qualified Cases.SingleThreaded as S
|
|
import qualified Cases.MultiThreaded as M
|
|
import qualified Cases.Refinement as R
|
|
import qualified Cases.Regressions as G
|
|
import qualified Cases.Litmus as L
|
|
import qualified Cases.Async as A
|
|
import qualified Cases.Discard as D
|
|
import qualified Cases.Properties as P
|
|
|
|
import Common
|
|
|
|
-- | Run all the test cases.
|
|
testCases :: [TestTree]
|
|
testCases =
|
|
[ testGroup "Single Threaded" S.tests
|
|
, testGroup "Multi Threaded" M.tests
|
|
, testGroup "Refinement" R.tests
|
|
, testGroup "Litmus" L.tests
|
|
, testGroup "Async" A.tests
|
|
, testGroup "Discard" D.tests
|
|
, testGroup "Properties" P.tests
|
|
, testGroup "Regressions" G.tests
|
|
]
|