aboutsummaryrefslogtreecommitdiff
path: root/bytesconv_32.go
diff options
context:
space:
mode:
authorGravatar Nick Rosbrook <nr@enr0n.net> 2022-03-16 12:31:04 -0400
committerGravatar GitHub <noreply@github.com> 2022-03-16 17:31:04 +0100
commitd1753f75a7a479433e2c4f3b16ebf32682f7a483 (patch)
tree44f0bb529b4ebbaa4c82866d81e61ce091cf6b94 /bytesconv_32.go
parentAdd connection pool queuing strategies in HostClient. (#1238) (diff)
downloadfasthttp-d1753f75a7a479433e2c4f3b16ebf32682f7a483.tar.gz
fasthttp-d1753f75a7a479433e2c4f3b16ebf32682f7a483.tar.bz2
fasthttp-d1753f75a7a479433e2c4f3b16ebf32682f7a483.zip
bytesconv: add appropriate build tags for s390x (#1250)
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.
Diffstat (limited to 'bytesconv_32.go')
-rw-r--r--bytesconv_32.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/bytesconv_32.go b/bytesconv_32.go
index 6a6fec2..b574883 100644
--- a/bytesconv_32.go
+++ b/bytesconv_32.go
@@ -1,5 +1,5 @@
-//go:build !amd64 && !arm64 && !ppc64 && !ppc64le
-// +build !amd64,!arm64,!ppc64,!ppc64le
+//go:build !amd64 && !arm64 && !ppc64 && !ppc64le && !s390x
+// +build !amd64,!arm64,!ppc64,!ppc64le,!s390x
package fasthttp