mirror of
https://github.com/valyala/fasthttp.git
synced 2026-06-14 15:56:44 +03:00
d1753f75a7
The bytesconv 32-bit tests fail on s390x, because it is a 64-bit architecture. Add the appropriate build flags so that 32-bit tests do not run on this architecture.
9 lines
147 B
Go
9 lines
147 B
Go
//go:build amd64 || arm64 || ppc64 || ppc64le || s390x
|
|
// +build amd64 arm64 ppc64 ppc64le s390x
|
|
|
|
package fasthttp
|
|
|
|
const (
|
|
maxHexIntChars = 15
|
|
)
|