From 47353752e9f468e625fa3ff19c4bad8cbf290f7c Mon Sep 17 00:00:00 2001 From: iamqizhao Date: Thu, 25 Feb 2016 14:03:22 -0800 Subject: [PATCH] add more uninteresting goroutines for the leak detector --- test/end2end_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/end2end_test.go b/test/end2end_test.go index c577725f..0690bf25 100644 --- a/test/end2end_test.go +++ b/test/end2end_test.go @@ -1806,7 +1806,8 @@ func interestingGoroutines() (gs []string) { strings.Contains(stack, "interestingGoroutines") || strings.Contains(stack, "runtime.MHeap_Scavenger") || strings.Contains(stack, "signal.signal_recv") || - strings.Contains(stack, "sigterm.handler") { + strings.Contains(stack, "sigterm.handler") || + strings.Contains(stack, "created by mgc") { continue } gs = append(gs, g)