File tree Expand file tree Collapse file tree 5 files changed +1407
-488
lines changed Expand file tree Collapse file tree 5 files changed +1407
-488
lines changed Original file line number Diff line number Diff line change @@ -78,9 +78,10 @@ test-suite test
78
78
type : exitcode-stdio-1.0
79
79
hs-source-dirs : test
80
80
main-is : Main.hs
81
- other-modules : Test.IOSim
82
- Test.STM
83
- Test.Control.Monad.IOSimPOR
81
+ other-modules : Test.STM
82
+ Test.Control.Monad.Common
83
+ Test.Control.Monad.IOSim.Test
84
+ Test.Control.Monad.IOSimPOR.Test
84
85
Test.Control.Monad.Class.MonadMVar
85
86
default-language : Haskell2010
86
87
build-depends : base,
Original file line number Diff line number Diff line change @@ -3,14 +3,16 @@ module Main (main) where
3
3
import Test.Tasty
4
4
5
5
import qualified Test.Control.Monad.Class.MonadMVar (tests )
6
- import qualified Test.IOSim (tests )
6
+ import qualified Test.Control.Monad.IOSim.Test (tests )
7
+ import qualified Test.Control.Monad.IOSimPOR.Test (tests )
7
8
8
9
main :: IO ()
9
10
main = defaultMain tests
10
11
11
12
tests :: TestTree
12
13
tests =
13
14
testGroup " IO Sim"
14
- [ Test.IOSim. tests
15
- , Test.Control.Monad.Class.MonadMVar. tests
15
+ [ Test.Control.Monad.Class.MonadMVar. tests
16
+ , Test.Control.Monad.IOSim.Test. tests
17
+ , Test.Control.Monad.IOSimPOR.Test. tests
16
18
]
You can’t perform that action at this time.
0 commit comments