dht test skips
Juan Batiz-Benet committed
Jan 5, 2015 at 04:48 UTC
41af4f4ea1039a1b17ade71029425ccf9045f8b3
2 files changed
+7
routing/dht/dht_test.go
+5
@@ -231,6 +231,7 @@ func TestProvides(t *testing.T) {
231
}
232
233
func TestBootstrap(t *testing.T) {
234
+ // t.Skip("skipping test to debug another")
235
if testing.Short() {
236
t.SkipNow()
237
}
@@ -388,6 +389,7 @@ func TestProvidesMany(t *testing.T) {
389
}
390
391
func TestProvidesAsync(t *testing.T) {
392
+ // t.Skip("skipping test to debug another")
393
if testing.Short() {
394
t.SkipNow()
395
}
@@ -442,6 +444,7 @@ func TestProvidesAsync(t *testing.T) {
444
}
445
446
func TestLayeredGet(t *testing.T) {
447
+ // t.Skip("skipping test to debug another")
448
if testing.Short() {
449
t.SkipNow()
450
}
@@ -482,6 +485,7 @@ func TestLayeredGet(t *testing.T) {
485
}
486
487
func TestFindPeer(t *testing.T) {
488
+ // t.Skip("skipping test to debug another")
489
if testing.Short() {
490
t.SkipNow()
491
}
@@ -596,6 +600,7 @@ func testPeerListsMatch(t *testing.T, p1, p2 []peer.ID) {
600
}
601
602
func TestConnectCollision(t *testing.T) {
603
+ // t.Skip("skipping test to debug another")
604
if testing.Short() {
605
t.SkipNow()
606
}
routing/dht/ext_test.go
+2
@@ -136,6 +136,7 @@ func TestGetFailures(t *testing.T) {
136
}
137
138
func TestNotFound(t *testing.T) {
139
+ // t.Skip("skipping test to debug another")
140
if testing.Short() {
141
t.SkipNow()
142
}
@@ -210,6 +211,7 @@ func TestNotFound(t *testing.T) {
211
// If less than K nodes are in the entire network, it should fail when we make
212
// a GET rpc and nobody has the value
213
func TestLessThanKResponses(t *testing.T) {
214
+ // t.Skip("skipping test to debug another")
215
// t.Skip("skipping test because it makes a lot of output")
216
217
ctx := context.Background()