Commit c1c9a74a authored by Jeromy Johnson's avatar Jeromy Johnson

fix too many FD error on osx

License: MIT
Signed-off-by: default avatarJeromy Johnson <why@ipfs.io>
parent 1c2223de
package swarm
import (
"runtime"
"sync"
"testing"
"time"
......@@ -49,7 +50,8 @@ func TestSimultOpenMany(t *testing.T) {
addrs := 20
rounds := 10
if ci.IsRunning() {
if ci.IsRunning() || runtime.GOOS == "darwin" {
// osx has a limit of 256 file descriptors
addrs = 10
rounds = 5
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment