Skip to content

Commit 51bb2fe

Browse files
committed
tpl/tplimpl: Skip TestTemplateFuncsExamples on s390x
Closes #13204
1 parent 43307b0 commit 51bb2fe

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tpl/tplimpl/template_funcs_test.go

+4
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ package tplimpl_test
1515

1616
import (
1717
"fmt"
18+
"runtime"
1819
"strings"
1920
"testing"
2021

@@ -24,6 +25,9 @@ import (
2425
)
2526

2627
func TestTemplateFuncsExamples(t *testing.T) {
28+
if runtime.GOARCH == "s390x" {
29+
t.Skip("Skip on s390x, see https://github.com/gohugoio/hugo/issues/13204")
30+
}
2731
t.Parallel()
2832

2933
files := `

0 commit comments

Comments
 (0)