# HG changeset patch # User Jan Vrany # Date 1395937991 -3600 # Node ID a38d8f5208fdfb00ed5509611bdba09641081b62 # Parent ad8866ade2738f3a68caa40b980a71cd20c270e2 class: RegressionTests::PipeStreamTest changed: #testPipeWriteRead - limit number of thread on Windows (there's limit in BCC5.5 libc) diff -r ad8866ade273 -r a38d8f5208fd RegressionTests__PipeStreamTest.st --- a/RegressionTests__PipeStreamTest.st Thu Mar 27 17:26:13 2014 +0100 +++ b/RegressionTests__PipeStreamTest.st Thu Mar 27 17:33:11 2014 +0100 @@ -17,6 +17,10 @@ count := 1000. threads := 200. + "/ There's limit to 50 open files in BCC5.5 libc, sigh. + OperatingSystem isMSWINDOWSlike ifTrue:[ + threads := 20. + ]. ok := true. blocker := Semaphore new: threads negated + 1. makeReader := [ :stream |