File tree Expand file tree Collapse file tree 1 file changed +12
-12
lines changed
distributed-process/tests Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change 2
2
{-# OPTIONS_GHC -fno-warn-orphans #-}
3
3
module Main where
4
4
5
- import Prelude hiding ( catch , log )
6
- import Test.Framework
7
- ( Test
8
- , defaultMain
9
- , testGroup
5
+ import Control.Concurrent.MVar
6
+ ( MVar
7
+ , newEmptyMVar
8
+ , putMVar
9
+ , takeMVar
10
10
)
11
- import Network.Transport.TCP
12
11
import Control.Distributed.Process
13
12
import Control.Distributed.Process.Node
14
13
( forkProcess
15
14
, newLocalNode
16
15
, initRemoteTable
17
16
, closeLocalNode
18
17
, LocalNode )
19
- import Control.Concurrent.MVar
20
- ( MVar
21
- , newEmptyMVar
22
- , putMVar
23
- , takeMVar
24
- )
25
18
import Data.Binary ()
26
19
import Data.Typeable ()
20
+ import Network.Transport.TCP
21
+ import Prelude hiding (catch , log )
22
+ import Test.Framework
23
+ ( Test
24
+ , defaultMain
25
+ , testGroup
26
+ )
27
27
import Test.HUnit (Assertion )
28
28
import Test.HUnit.Base (assertBool )
29
29
import Test.Framework.Providers.HUnit (testCase )
You can’t perform that action at this time.
0 commit comments