-- Run tests using the TCP transport.
module Main where
import TEST_SUITE_MODULE (tests)
import Network.Transport.Test (TestTransport(..))
import Network.Transport.InMemory
import Test.Tasty (defaultMain, localOption)
import Test.Tasty.Runners (NumThreads)
main :: IO ()
main = do
(transport, internals) <- createTransportExposeInternals
ts <- tests TestTransport
{ testTransport = transport
, testBreakConnection = \addr1 addr2 -> breakConnection internals addr1 addr2 "user error"
}
-- Tests are time sensitive. Running the tests concurrently can slow them
-- down enough that threads using threadDelay would wake up later than
-- expected, thus changing the order in which messages were expected.
-- Therefore we run the tests sequentially
--
-- The problem was first detected with
-- 'Control.Distributed.Process.Tests.CH.testMergeChannels'
-- in particular.
defaultMain (localOption (1::NumThreads) ts)