@@ -6,7 +6,7 @@ description: Tests and test suite for Cloud Haskell libraries.
6
6
license : BSD3
7
7
license-file : LICENSE
8
8
Author : Duncan Coutts, Nicolas Wu, Edsko de Vries
9
- Maintainer :
Facundo Domínguez <[email protected] >
9
+ Maintainer :
Tim Watson <[email protected] >
10
10
copyright : Well-Typed LLP
11
11
category : Control, Cloud Haskell
12
12
build-type : Simple
@@ -31,9 +31,10 @@ library
31
31
bytestring >= 0.9 && < 0.12 ,
32
32
distributed-process >= 0.6.0 && < 0.8 ,
33
33
distributed-static,
34
+ exceptions >= 0.5 ,
34
35
HUnit >= 1.2 && < 1.7 ,
35
36
network-transport >= 0.4.1.0 && < 0.6 ,
36
- network >= 2.5 && < 2.7 ,
37
+ network >= 2.5 && < 2.9 ,
37
38
random >= 1.0 && < 1.2 ,
38
39
rematch >= 0.1.2.1 ,
39
40
setenv >= 0.1.1.3 ,
@@ -60,7 +61,7 @@ Test-Suite TestCHInMemory
60
61
CPP-Options : -DTEST_SUITE_MODULE=Control.Distributed.Process.Tests.CH
61
62
Build-Depends : base >= 4.4 && < 5 ,
62
63
distributed-process-tests,
63
- network >= 2.3 && < 2.7 ,
64
+ network >= 2.3 && < 2.9 ,
64
65
network-transport >= 0.4.1.0 && < 0.6 ,
65
66
network-transport-inmemory >= 0.5 ,
66
67
test-framework >= 0.6 && < 0.9
@@ -75,7 +76,7 @@ Test-Suite TestCHInTCP
75
76
if flag(tcp)
76
77
Build-Depends : base >= 4.4 && < 5 ,
77
78
distributed-process-tests,
78
- network >= 2.3 && < 2.7 ,
79
+ network >= 2.3 && < 2.9 ,
79
80
network-transport >= 0.4.1.0 && < 0.6 ,
80
81
network-transport-tcp >= 0.5 && < 0.7 ,
81
82
test-framework >= 0.6 && < 0.9
@@ -92,7 +93,7 @@ Test-Suite TestClosure
92
93
CPP-Options : -DTEST_SUITE_MODULE=Control.Distributed.Process.Tests.Closure
93
94
Build-Depends : base >= 4.4 && < 5 ,
94
95
distributed-process-tests,
95
- network >= 2.3 && < 2.7 ,
96
+ network >= 2.3 && < 2.9 ,
96
97
network-transport >= 0.4.1.0 && < 0.6 ,
97
98
network-transport-inmemory >= 0.5 ,
98
99
test-framework >= 0.6 && < 0.9
@@ -106,39 +107,52 @@ Test-Suite TestStats
106
107
CPP-Options : -DTEST_SUITE_MODULE=Control.Distributed.Process.Tests.Stats
107
108
Build-Depends : base >= 4.4 && < 5 ,
108
109
distributed-process-tests,
109
- network >= 2.3 && < 2.7 ,
110
+ network >= 2.3 && < 2.9 ,
110
111
network-transport >= 0.4.1.0 && < 0.6 ,
111
112
network-transport-inmemory >= 0.5 ,
112
113
test-framework >= 0.6 && < 0.9
113
114
Extensions : CPP
114
115
ghc-options : -Wall -eventlog -threaded -rtsopts -with-rtsopts=-N -fno-warn-unused-do-bind
115
116
HS-Source-Dirs : tests
116
117
117
-
118
- Test-Suite TestMx
118
+ Test-Suite TestMxInMemory
119
119
Type : exitcode-stdio-1.0
120
120
Main-Is : runInMemory.hs
121
121
CPP-Options : -DTEST_SUITE_MODULE=Control.Distributed.Process.Tests.Mx
122
122
Build-Depends : base >= 4.4 && < 5 ,
123
123
distributed-process-tests,
124
- network >= 2.3 && < 2.7 ,
124
+ network >= 2.3 && < 2.9 ,
125
125
network-transport >= 0.4.1.0 && < 0.6 ,
126
126
network-transport-inmemory >= 0.5 ,
127
127
test-framework >= 0.6 && < 0.9
128
128
Extensions : CPP
129
- ghc-options : -Wall - threaded -rtsopts -with-rtsopts=-N -fno-warn-unused-do-bind
129
+ ghc-options : -threaded -rtsopts -with-rtsopts=-N -fno-warn-unused-do-bind
130
130
HS-Source-Dirs : tests
131
131
132
- Test-Suite TestTracing
132
+ Test-Suite TestTracingInMemory
133
133
Type : exitcode-stdio-1.0
134
134
Main-Is : runInMemory.hs
135
135
CPP-Options : -DTEST_SUITE_MODULE=Control.Distributed.Process.Tests.Tracing
136
136
Build-Depends : base >= 4.4 && < 5 ,
137
137
distributed-process-tests,
138
- network >= 2.3 && < 2.7 ,
138
+ network >= 2.3 && < 2.9 ,
139
139
network-transport >= 0.4.1.0 && < 0.6 ,
140
140
network-transport-inmemory >= 0.5 ,
141
141
test-framework >= 0.6 && < 0.9
142
142
Extensions : CPP
143
- ghc-options : -Wall -eventlog -threaded -rtsopts -with-rtsopts=-N -fno-warn-unused-do-bind
143
+ ghc-options : -eventlog -threaded -rtsopts -with-rtsopts=-N -fno-warn-unused-do-bind
144
+ HS-Source-Dirs : tests
145
+
146
+ Test-Suite TestMxInTCP
147
+ Type : exitcode-stdio-1.0
148
+ Main-Is : runInMemory.hs
149
+ CPP-Options : -DTEST_SUITE_MODULE=Control.Distributed.Process.Tests.Mx
150
+ Build-Depends : base >= 4.4 && < 5 ,
151
+ distributed-process-tests,
152
+ network >= 2.3 && < 2.9 ,
153
+ network-transport >= 0.4.1.0 && < 0.6 ,
154
+ network-transport-inmemory >= 0.5 ,
155
+ test-framework >= 0.6 && < 0.9
156
+ Extensions : CPP
157
+ ghc-options : -Wall -threaded -rtsopts -with-rtsopts=-N -fno-warn-unused-do-bind
144
158
HS-Source-Dirs : tests
0 commit comments