do not run epic tests in parallel
@whyrusleeping License: MIT Signed-off-by: Brian Tiger Chow <brian@perfmode.com>
Brian Tiger Chow committed
Dec 17, 2014 at 16:53 UTC
9fafec1256a6eea7f42d8886e0b463a94778b1a6
1 file changed
-16
epictest/addcat_test.go
-16
@@ -26,10 +26,6 @@ import (
26
const kSeed = 1
27
28
func Test100MBInstantaneous(t *testing.T) {
29
- t.Log("a sanity check")
30
-
31
- t.Parallel()
32
-
29
conf := Config{
30
NetworkLatency: 0,
31
RoutingLatency: 0,
@@ -41,10 +37,7 @@ func Test100MBInstantaneous(t *testing.T) {
37
38
func TestDegenerateSlowBlockstore(t *testing.T) {
39
SkipUnlessEpic(t)
44
- t.Parallel()
45
-
40
conf := Config{BlockstoreLatency: 50 * time.Millisecond}
47
-
41
if err := AddCatPowers(conf, 128); err != nil {
42
t.Fatal(err)
43
}
@@ -52,10 +45,7 @@ func TestDegenerateSlowBlockstore(t *testing.T) {
45
46
func TestDegenerateSlowNetwork(t *testing.T) {
47
SkipUnlessEpic(t)
55
- t.Parallel()
56
-
48
conf := Config{NetworkLatency: 400 * time.Millisecond}
58
-
49
if err := AddCatPowers(conf, 128); err != nil {
50
t.Fatal(err)
51
}
@@ -63,10 +53,7 @@ func TestDegenerateSlowNetwork(t *testing.T) {
53
54
func TestDegenerateSlowRouting(t *testing.T) {
55
SkipUnlessEpic(t)
66
- t.Parallel()
67
-
56
conf := Config{RoutingLatency: 400 * time.Millisecond}
69
-
57
if err := AddCatPowers(conf, 128); err != nil {
58
t.Fatal(err)
59
}
@@ -74,10 +61,7 @@ func TestDegenerateSlowRouting(t *testing.T) {
61
62
func Test100MBMacbookCoastToCoast(t *testing.T) {
63
SkipUnlessEpic(t)
77
- t.Parallel()
78
-
64
conf := Config{}.Network_NYtoSF().Blockstore_SlowSSD2014().Routing_Slow()
80
-
65
if err := AddCatBytes(RandomBytes(100*1024*1024), conf); err != nil {
66
t.Fatal(err)
67
}