From 555a9bc80653597a5c5c82fe84222813dfe5aff8 Mon Sep 17 00:00:00 2001 From: Anthony Fok Date: Thu, 27 Jul 2017 23:28:43 -0600 Subject: [PATCH] tpl: Accommodate gccgo in TestMethodToName Fixes #3744 --- tpl/internal/templatefuncRegistry_test.go | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tpl/internal/templatefuncRegistry_test.go b/tpl/internal/templatefuncRegistry_test.go index dfc4ba09b..c21948077 100644 --- a/tpl/internal/templatefuncRegistry_test.go +++ b/tpl/internal/templatefuncRegistry_test.go @@ -14,6 +14,7 @@ package internal import ( + "runtime" "testing" "github.com/stretchr/testify/require" @@ -29,5 +30,9 @@ func (t *Test) MyTestMethod() string { func TestMethodToName(t *testing.T) { test := &Test{} - require.Equal(t, "MyTestMethod", methodToName(test.MyTestMethod)) + if runtime.Compiler == "gccgo" { + require.Equal(t, "$thunk0", methodToName(test.MyTestMethod)) + } else { + require.Equal(t, "MyTestMethod", methodToName(test.MyTestMethod)) + } }