From c99616fc6795123ec1a6b4d742099789865bd939 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Sun, 9 Nov 2014 21:10:49 -0500 Subject: [PATCH] test: fix nacl build Disable linkx_run.go and sinit_run.go, because they exec subprocesses, which NaCl cannot. TBR=r CC=golang-codereviews https://golang.org/cl/171350043 --- test/linkx_run.go | 1 + test/sinit_run.go | 1 + 2 files changed, 2 insertions(+) diff --git a/test/linkx_run.go b/test/linkx_run.go index abfc342a6c7..5b67ce7d3de 100644 --- a/test/linkx_run.go +++ b/test/linkx_run.go @@ -1,3 +1,4 @@ +// +build !nacl // run // Copyright 2014 The Go Authors. All rights reserved. diff --git a/test/sinit_run.go b/test/sinit_run.go index a21bd1077db..b0a91ce5b18 100644 --- a/test/sinit_run.go +++ b/test/sinit_run.go @@ -1,3 +1,4 @@ +// +build !nacl // run // Copyright 2014 The Go Authors. All rights reserved.