Skip to content

Commit a58da2f

Browse files
committed
Merge pull request haskell-distributed#141 from mboes/separate-tests-package
Remove tests from .cabal file, adding a note that they are now in distributed-process-test.
2 parents 99f1e69 + b2d28df commit a58da2f

File tree

1 file changed

+2
-128
lines changed

1 file changed

+2
-128
lines changed

distributed-process.cabal

Lines changed: 2 additions & 128 deletions
Original file line numberDiff line numberDiff line change
@@ -103,133 +103,9 @@ Library
103103
Exposed-modules: Control.Distributed.Process.Internal.Closure.TH
104104
CPP-Options: -DTemplateHaskellSupport
105105

106-
Test-Suite TestCH
107-
Type: exitcode-stdio-1.0
108-
Main-Is: TestCH.hs
109-
Build-Depends: base >= 4.4 && < 5,
110-
random >= 1.0 && < 1.1,
111-
ansi-terminal >= 0.5 && < 0.6,
112-
distributed-process,
113-
network-transport >= 0.3 && < 0.4,
114-
network-transport-tcp >= 0.3 && < 0.4,
115-
binary >= 0.5 && < 0.8,
116-
network >= 2.3 && < 2.5,
117-
HUnit >= 1.2 && < 1.3,
118-
test-framework >= 0.6 && < 0.9,
119-
test-framework-hunit >= 0.2.0 && < 0.4,
120-
rematch >= 0.1.2.1
121-
Extensions: CPP,
122-
ScopedTypeVariables,
123-
DeriveDataTypeable,
124-
GeneralizedNewtypeDeriving
125-
ghc-options: -Wall -threaded -debug -eventlog -rtsopts -with-rtsopts=-N -fno-warn-unused-do-bind
126-
HS-Source-Dirs: tests
127-
128-
Test-Suite TestClosure
129-
Type: exitcode-stdio-1.0
130-
Main-Is: TestClosure.hs
131-
Build-Depends: base >= 4.4 && < 5,
132-
random >= 1.0 && < 1.1,
133-
ansi-terminal >= 0.5 && < 0.6,
134-
distributed-static >= 0.2 && < 0.3,
135-
distributed-process,
136-
network-transport >= 0.3 && < 0.4,
137-
network-transport-tcp >= 0.3 && < 0.4,
138-
bytestring >= 0.9 && < 0.11,
139-
network >= 2.3 && < 2.5,
140-
HUnit >= 1.2 && < 1.3,
141-
test-framework >= 0.6 && < 0.9,
142-
test-framework-hunit >= 0.2.0 && < 0.4
143-
Extensions: CPP,
144-
ScopedTypeVariables
145-
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N -fno-warn-unused-do-bind
146-
HS-Source-Dirs: tests
106+
-- Tests are in distributed-process-test package, for convenience.
147107

148-
Test-Suite TestStats
149-
Type: exitcode-stdio-1.0
150-
Main-Is: TestStats.hs
151-
Build-Depends: base >= 4.4 && < 5,
152-
random >= 1.0 && < 1.1,
153-
ansi-terminal >= 0.5 && < 0.6,
154-
containers >= 0.4 && < 0.6,
155-
stm >= 2.4 && < 2.5,
156-
distributed-process,
157-
network-transport >= 0.3 && < 0.4,
158-
network-transport-tcp >= 0.3 && < 0.4,
159-
binary >= 0.5 && < 0.8,
160-
network >= 2.3 && < 2.5,
161-
HUnit >= 1.2 && < 1.3,
162-
test-framework >= 0.6 && < 0.9,
163-
test-framework-hunit >= 0.2.0 && < 0.4
164-
Extensions: CPP,
165-
ScopedTypeVariables,
166-
DeriveDataTypeable,
167-
GeneralizedNewtypeDeriving
168-
ghc-options: -Wall -debug -eventlog -threaded -rtsopts -with-rtsopts=-N -fno-warn-unused-do-bind
169-
HS-Source-Dirs: tests
170-
171-
172-
Test-Suite TestMx
173-
Type: exitcode-stdio-1.0
174-
Main-Is: TestMx.hs
175-
Build-Depends: base >= 4.4 && < 5,
176-
random >= 1.0 && < 1.1,
177-
ansi-terminal >= 0.5 && < 0.6,
178-
containers >= 0.4 && < 0.6,
179-
stm >= 2.4 && < 2.5,
180-
distributed-process,
181-
network-transport >= 0.3 && < 0.4,
182-
network-transport-tcp >= 0.3 && < 0.4,
183-
binary >= 0.5 && < 0.7,
184-
network >= 2.3 && < 2.5,
185-
HUnit >= 1.2 && < 1.3,
186-
test-framework >= 0.6 && < 0.9,
187-
test-framework-hunit >= 0.2.0 && < 0.4,
188-
unix >= 2.5.0.0
189-
Extensions: RankNTypes,
190-
ScopedTypeVariables,
191-
FlexibleInstances,
192-
UndecidableInstances,
193-
ExistentialQuantification,
194-
GADTs,
195-
GeneralizedNewtypeDeriving,
196-
DeriveDataTypeable,
197-
CPP,
198-
BangPatterns
199-
ghc-options: -Wall -debug -threaded -rtsopts -with-rtsopts=-N -fno-warn-unused-do-bind
200-
HS-Source-Dirs: tests
201-
202-
Test-Suite TestTracing
203-
Type: exitcode-stdio-1.0
204-
Main-Is: TestTracing.hs
205-
Build-Depends: base >= 4.4 && < 5,
206-
random >= 1.0 && < 1.1,
207-
ansi-terminal >= 0.5 && < 0.6,
208-
containers >= 0.4 && < 0.6,
209-
stm >= 2.4 && < 2.5,
210-
distributed-process,
211-
network-transport >= 0.3 && < 0.4,
212-
network-transport-tcp >= 0.3 && < 0.4,
213-
binary >= 0.5 && < 0.7,
214-
network >= 2.3 && < 2.5,
215-
HUnit >= 1.2 && < 1.3,
216-
test-framework >= 0.6 && < 0.9,
217-
test-framework-hunit >= 0.2.0 && < 0.4,
218-
unix >= 2.5.0.0
219-
Extensions: RankNTypes,
220-
ScopedTypeVariables,
221-
FlexibleInstances,
222-
UndecidableInstances,
223-
ExistentialQuantification,
224-
GADTs,
225-
GeneralizedNewtypeDeriving,
226-
DeriveDataTypeable,
227-
CPP,
228-
BangPatterns
229-
ghc-options: -Wall -debug -eventlog -threaded -rtsopts -with-rtsopts=-N -fno-warn-unused-do-bind
230-
HS-Source-Dirs: tests
231-
232-
Executable distributed-process-throughput
108+
Executable distributed-process-throughput
233109
if flag(benchmarks)
234110
Build-Depends: base >= 4.4 && < 5,
235111
distributed-process,
@@ -297,5 +173,3 @@ Executable distributed-process-ring
297173
ghc-options: -Wall -threaded -O2 -rtsopts
298174
Extensions: BangPatterns,
299175
ScopedTypeVariables
300-
301-

0 commit comments

Comments
 (0)