tpl: Fix test to pass with gccgo - hugo - [fork] hugo port for 9front
HTML git clone git@git.drkhsh.at/hugo.git
DIR Log
DIR Files
DIR Refs
DIR Submodules
DIR README
DIR LICENSE
---
DIR commit a8cb1b07b4cf7fcf0e949657cb03c1a4838f975e
DIR parent 2900801acfdc06ec5631fc5772d1b82d0d671915
HTML Author: Ian Lance Taylor <iant@golang.org>
Date: Fri, 9 Nov 2018 02:54:08 -0500
tpl: Fix test to pass with gccgo
When run under gccgo, the test looks for the name that gccgo gives to
a thunk method. This name is not normally visible, but can be seen
when using reflect.FuncForPC as this code does. That name changed in
https://golang.org/cl/89555. Change the test to work with both the
old name "$thunk0" and the new name "thunk0".
Fixes golang/go#28669
Diffstat:
M tpl/internal/templatefuncRegistry_… | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
DIR diff --git a/tpl/internal/templatefuncRegistry_test.go b/tpl/internal/templatefuncRegistry_test.go
@@ -31,7 +31,7 @@ func TestMethodToName(t *testing.T) {
test := &Test{}
if runtime.Compiler == "gccgo" {
- require.Equal(t, "$thunk0", methodToName(test.MyTestMethod))
+ require.Contains(t, methodToName(test.MyTestMethod), "thunk")
} else {
require.Equal(t, "MyTestMethod", methodToName(test.MyTestMethod))
}