Disable Windows hanging test cases (#2314)

This commit is contained in:
Ranjeet Ranjan 2023-03-08 00:55:13 +05:30 committed by GitHub
parent f50f7eb832
commit 5946791774
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 1 deletions

View File

@ -11,7 +11,7 @@ description:
exceptions, and networking. For unified documentation visit
<https://streamly.composewell.com the streamly website>.
.
Streamly provides unified, modular building blocks to build
Streamly provides unified, modular building blocks to build
high-performance, concurrent, scalable applications in Haskell. Stream
fusion optimizations in streamly enable exceptional modularity with
high performance comparable to C. Streamly complements the Haskell

View File

@ -365,6 +365,11 @@ test-suite Network.Inet.TCP
main-is: Streamly/Test/Network/Inet/TCP.hs
if flag(use-streamly-core)
buildable: False
-- XXX on Windows these test cases are hanging for ever
-- need to be investigated.
-- https://github.com/composewell/streamly/issues/2315
if os(windows)
buildable: False
test-suite Network.Socket
import: test-options
@ -372,6 +377,11 @@ test-suite Network.Socket
main-is: Streamly/Test/Network/Socket.hs
if flag(use-streamly-core)
buildable: False
-- XXX on Windows these test cases are hanging for ever
-- need to be investigated.
-- https://github.com/composewell/streamly/issues/2315
if os(windows)
buildable: False
test-suite Prelude
import: test-options