1
0
Fork 1
mirror of https://github.com/distribution/distribution synced 2024-09-22 02:19:42 +00:00

In testsuites.go, enlarge the size of randomBytes to 128M to fix the crash of running TestConcurrentStreamReads

Signed-off-by: yuzou <zouyu7@huawei.com>
This commit is contained in:
yuzou 2016-01-15 17:22:43 +08:00
parent 7378e21678
commit cc82b0d48e

View file

@ -1144,7 +1144,7 @@ func randomFilename(length int64) string {
// randomBytes pre-allocates all of the memory sizes needed for the test. If
// anything panics while accessing randomBytes, just make this number bigger.
var randomBytes = make([]byte, 96<<20)
var randomBytes = make([]byte, 128<<20)
func init() {
// increase the random bytes to the required maximum