tpl/tplimpl: Skip TestTemplateFuncsExamples on s390x

Closes #13204
This commit is contained in:
Bjørn Erik Pedersen 2025-01-23 10:18:43 +01:00
parent 43307b07f8
commit 51bb2fedab
No known key found for this signature in database

View file

@ -15,6 +15,7 @@ package tplimpl_test
import ( import (
"fmt" "fmt"
"runtime"
"strings" "strings"
"testing" "testing"
@ -24,6 +25,9 @@ import (
) )
func TestTemplateFuncsExamples(t *testing.T) { func TestTemplateFuncsExamples(t *testing.T) {
if runtime.GOARCH == "s390x" {
t.Skip("Skip on s390x, see https://github.com/gohugoio/hugo/issues/13204")
}
t.Parallel() t.Parallel()
files := ` files := `