@@ -1513,9 +1513,7 @@ tests testtrans = return [
1513
1513
, testCase " Timeout0" (testTimeout0 testtrans)
1514
1514
, testCase " SendToTerminated" (testSendToTerminated testtrans)
1515
1515
, testCase " TypedChannnels" (testTypedChannels testtrans)
1516
- , testCase " MergeChannels" (testMergeChannels testtrans)
1517
1516
, testCase " Terminate" (testTerminate testtrans)
1518
- , testCase " Registry" (testRegistry testtrans)
1519
1517
, testCase " RegistryRemoteProcess" (testRegistryRemoteProcess testtrans)
1520
1518
, testCase " RemoteRegistry" (testRemoteRegistry testtrans)
1521
1519
, testCase " RemoteRegistryRemoteProcess" (testRemoteRegistryRemoteProcess testtrans)
@@ -1556,8 +1554,7 @@ tests testtrans = return [
1556
1554
-- The "missing" combinations in the list below don't make much sense, as
1557
1555
-- we cannot guarantee that the monitor reply or link exception will not
1558
1556
-- happen before the unmonitor or unlink
1559
- testCase " MonitorUnreachable" (testMonitorUnreachable testtrans True False )
1560
- , testCase " MonitorNormalTermination" (testMonitorNormalTermination testtrans True False )
1557
+ testCase " MonitorNormalTermination" (testMonitorNormalTermination testtrans True False )
1561
1558
, testCase " MonitorAbnormalTermination" (testMonitorAbnormalTermination testtrans True False )
1562
1559
, testCase " MonitorLocalDeadProcess" (testMonitorLocalDeadProcess testtrans True False )
1563
1560
, testCase " MonitorRemoteDeadProcess" (testMonitorRemoteDeadProcess testtrans True False )
@@ -1579,7 +1576,14 @@ tests testtrans = return [
1579
1576
, testCase " MonitorLiveNode" (testMonitorLiveNode testtrans)
1580
1577
, testCase " MonitorChannel" (testMonitorChannel testtrans)
1581
1578
-- Reconnect
1582
- , testCase " Reconnect" (testReconnect testtrans)
1579
+ ]
1580
+
1581
+ -- Tests that fail occasionally and should be revised
1582
+ , testGroup " Flaky" [
1583
+ testCase " Reconnect" (testReconnect testtrans)
1584
+ , testCase " Registry" (testRegistry testtrans)
1585
+ , testCase " MergeChannels" (testMergeChannels testtrans)
1586
+ , testCase " MonitorUnreachable" (testMonitorUnreachable testtrans True False )
1583
1587
]
1584
1588
]
1585
1589
0 commit comments