From: Russ Cox Date: Wed, 27 Jan 2021 06:01:18 +0000 (-0500) Subject: test: disable nilptr on windows/arm64 X-Git-Tag: go1.17beta1~1495 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=a3b97e7628;p=gostls13.git test: disable nilptr on windows/arm64 The address space starts at 4GB, so dummy is too far out. This CL is part of a stack adding windows/arm64 support (#36439), intended to land in the Go 1.17 cycle. Change-Id: I5f67e268ce729086d9f9fc8541722fabccfd0145 Reviewed-on: https://go-review.googlesource.com/c/go/+/288823 Trust: Russ Cox Trust: Jason A. Donenfeld Reviewed-by: Cherry Zhang Reviewed-by: Alex Brainman Reviewed-by: Jason A. Donenfeld --- diff --git a/test/nilptr.go b/test/nilptr.go index c9a044dd36..b296c88c99 100644 --- a/test/nilptr.go +++ b/test/nilptr.go @@ -9,7 +9,8 @@ // +build !aix // +build !darwin !arm64 -// Address space starts at 1<<32 on AIX and on darwin/arm64, so dummy is too far. +// +build !windows !arm64 +// Address space starts at 1<<32 on AIX and on darwin/arm64 and on windows/arm64, so dummy is too far. package main