From a3b97e7628680984ae6f29e5af945c11a30e6bdc Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Wed, 27 Jan 2021 01:01:18 -0500 Subject: [PATCH] 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 --- test/nilptr.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/nilptr.go b/test/nilptr.go index c9a044dd362edc..b296c88c99408a 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