File tree 3 files changed +7
-5
lines changed
3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -222,11 +222,11 @@ test-suite test-grapesy
222
222
Test.Driver.Dialogue.Generation
223
223
Test.Driver.Dialogue.TestClock
224
224
Test.Prop.Dialogue
225
+ Test.Regression.Issue102
225
226
Test.Sanity.BrokenDeployments
226
227
Test.Sanity.Compression
227
228
Test.Sanity.Disconnect
228
229
Test.Sanity.EndOfStream
229
- Test.Sanity.Exception
230
230
Test.Sanity.Interop
231
231
Test.Sanity.StreamingType.CustomFormat
232
232
Test.Sanity.StreamingType.NonStreaming
Original file line number Diff line number Diff line change @@ -14,11 +14,11 @@ import GHC.Conc.Sync (threadLabel)
14
14
#endif
15
15
16
16
import Test.Prop.Dialogue qualified as Dialogue
17
+ import Test.Regression.Issue102 qualified as Issue102
17
18
import Test.Sanity.BrokenDeployments qualified as BrokenDeployments
18
19
import Test.Sanity.Compression qualified as Compression
19
20
import Test.Sanity.Disconnect qualified as Disconnect
20
21
import Test.Sanity.EndOfStream qualified as EndOfStream
21
- import Test.Sanity.Exception qualified as Exception
22
22
import Test.Sanity.Interop qualified as Interop
23
23
import Test.Sanity.StreamingType.CustomFormat qualified as StreamingType.CustomFormat
24
24
import Test.Sanity.StreamingType.NonStreaming qualified as StreamingType.NonStreaming
@@ -36,10 +36,12 @@ main = do
36
36
, StreamingType.CustomFormat. tests
37
37
]
38
38
, Compression. tests
39
- , Exception. tests
40
39
, Interop. tests
41
40
, BrokenDeployments. tests
42
41
]
42
+ , testGroup " Regression" [
43
+ Issue102. tests
44
+ ]
43
45
, testGroup " Prop" [
44
46
Dialogue. tests
45
47
]
Original file line number Diff line number Diff line change 14
14
-- (server), and
15
15
-- 2. future calls are still possible (client), and more handlers can be started
16
16
-- to deal with future calls (server).
17
- module Test.Sanity.Exception (tests ) where
17
+ module Test.Regression.Issue102 (tests ) where
18
18
19
19
import Control.Concurrent.Async
20
20
import Control.Exception
@@ -38,7 +38,7 @@ import Test.Driver.ClientServer
38
38
import Test.Util.Exception
39
39
40
40
tests :: TestTree
41
- tests = testGroup " Test.Sanity.Exception " [
41
+ tests = testGroup " Issue102 " [
42
42
testCase " client" test_clientException
43
43
, testCase " server" test_serverException
44
44
You can’t perform that action at this time.
0 commit comments