dejafu/dejafu-tests/lib/Cases.hs

26 lines
769 B
Haskell
Raw Normal View History

2016-03-31 16:45:55 +03:00
module Cases where
import qualified Cases.SingleThreaded as S
import qualified Cases.MultiThreaded as M
import qualified Cases.Refinement as R
2017-09-20 22:45:47 +03:00
import qualified Cases.Regressions as G
2016-03-31 16:45:55 +03:00
import qualified Cases.Litmus as L
import qualified Cases.Async as A
2017-08-10 22:22:03 +03:00
import qualified Cases.Discard as D
import qualified Cases.Properties as P
2016-03-31 16:45:55 +03:00
import Common
2016-03-31 16:45:55 +03:00
-- | 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
2017-09-20 22:45:47 +03:00
, testGroup "Regressions" G.tests
2016-03-31 16:45:55 +03:00
]