From 5f93ca09cdb802e57ba80c5e3273bfc74fe6e0bd Mon Sep 17 00:00:00 2001 From: Derek Collison Date: Thu, 10 Jun 2021 07:28:20 -0700 Subject: [PATCH] Bumped memory ceiling Signed-off-by: Derek Collison --- test/norace_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/norace_test.go b/test/norace_test.go index 46880f23..24330ed2 100644 --- a/test/norace_test.go +++ b/test/norace_test.go @@ -330,11 +330,11 @@ func TestNoRaceLargeClusterMem(t *testing.T) { checkClusterFormed(t, servers...) // Calculate in MB what we are using now. - const max = 64 * 1024 * 1024 // 64MB + const max = 80 * 1024 * 1024 // 80MB runtime.ReadMemStats(&m) used := m.TotalAlloc - pta if used > max { - t.Fatalf("Cluster using too much memory, expect < 60MB, got %dMB", used/(1024*1024)) + t.Fatalf("Cluster using too much memory, expect < 80MB, got %dMB", used/(1024*1024)) } for _, s := range servers {