From e688e7128d6e8b345dcc5fd7b06086008ad329fb Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Wed, 9 Apr 2014 10:02:55 -0400 Subject: [PATCH] runtime: fix flaky linux/386 build TBR=iant CC=golang-codereviews https://golang.org/cl/86030043 --- src/pkg/runtime/runtime_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pkg/runtime/runtime_test.go b/src/pkg/runtime/runtime_test.go index 67d39218d4..a14e06e7ad 100644 --- a/src/pkg/runtime/runtime_test.go +++ b/src/pkg/runtime/runtime_test.go @@ -157,7 +157,7 @@ var faultAddrs = []uint64{ 0xffffffffffffffff, 0xfffffffffffff001, // no 0xffffffffffff0001; 0xffff0001 is mapped for 32-bit user space on OS X - 0xfffffffffff00001, + // no 0xfffffffffff00001; 0xfff00001 is mapped for 32-bit user space sometimes on Linux 0xffffffffff000001, 0xfffffffff0000001, 0xffffffff00000001, -- 2.50.0