Commit 9edbb2d9 authored by Jeromy's avatar Jeromy
Browse files

test cleanup

parent 84d4e76e
...@@ -3,7 +3,6 @@ package swarm ...@@ -3,7 +3,6 @@ package swarm
import ( import (
"fmt" "fmt"
"math/rand" "math/rand"
"runtime"
"strconv" "strconv"
"testing" "testing"
"time" "time"
...@@ -263,7 +262,6 @@ func TestTokenRedistribution(t *testing.T) { ...@@ -263,7 +262,6 @@ func TestTokenRedistribution(t *testing.T) {
func TestStressLimiter(t *testing.T) { func TestStressLimiter(t *testing.T) {
df := func(ctx context.Context, p peer.ID, a ma.Multiaddr) (conn.Conn, error) { df := func(ctx context.Context, p peer.ID, a ma.Multiaddr) (conn.Conn, error) {
fmt.Println("dial for peer: ", string(p))
if tcpPortOver(a, 1000) { if tcpPortOver(a, 1000) {
return conn.Conn(nil), nil return conn.Conn(nil), nil
} else { } else {
...@@ -307,8 +305,6 @@ func TestStressLimiter(t *testing.T) { ...@@ -307,8 +305,6 @@ func TestStressLimiter(t *testing.T) {
}(peer.ID(fmt.Sprintf("testpeer%d", i))) }(peer.ID(fmt.Sprintf("testpeer%d", i)))
} }
time.Sleep(time.Millisecond * 1000)
fmt.Println("NUM GOROS: ", runtime.NumGoroutine())
for i := 0; i < 20; i++ { for i := 0; i < 20; i++ {
select { select {
case <-success: case <-success:
......
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