File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 19
19
20
20
# We always want coverage and race detection.
21
21
argv+=(
22
+ " -parallel=512"
22
23
" -coverprofile=ci/out/coverage.prof"
23
24
" -coverpkg=./..."
24
25
)
Original file line number Diff line number Diff line change @@ -1768,8 +1768,8 @@ func TestAutobahn(t *testing.T) {
1768
1768
t .Parallel ()
1769
1769
1770
1770
lengths := []int {
1771
- 1 << 16 , // 65536
1772
- 1 << 18 , // 262144
1771
+ 1 << 16 ,
1772
+ 1 << 18 ,
1773
1773
// Anything higher is completely unnecessary.
1774
1774
}
1775
1775
@@ -1791,7 +1791,6 @@ func TestAutobahn(t *testing.T) {
1791
1791
1 << 12 ,
1792
1792
1 << 14 ,
1793
1793
1 << 16 ,
1794
- 1 << 18 ,
1795
1794
}
1796
1795
1797
1796
for _ , l := range fragments {
@@ -1801,7 +1800,7 @@ func TestAutobahn(t *testing.T) {
1801
1800
if err != nil {
1802
1801
return err
1803
1802
}
1804
- b := randBytes (1 << 18 )
1803
+ b := randBytes (1 << 16 )
1805
1804
for i := 0 ; i < len (b ); {
1806
1805
j := i + fragmentLength
1807
1806
if j > len (b ) {
@@ -1835,7 +1834,6 @@ func TestAutobahn(t *testing.T) {
1835
1834
lengths := []int {
1836
1835
0 ,
1837
1836
16 ,
1838
- 64 ,
1839
1837
}
1840
1838
1841
1839
for _ , l := range lengths {
You can’t perform that action at this time.
0 commit comments