From: Russ Cox Date: Mon, 10 Nov 2014 02:10:49 +0000 (-0500) Subject: test: fix nacl build X-Git-Tag: go1.4rc1~19 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=c99616fc6795123ec1a6b4d742099789865bd939;p=gostls13.git 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 --- diff --git a/test/linkx_run.go b/test/linkx_run.go index abfc342a6c..5b67ce7d3d 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 a21bd1077d..b0a91ce5b1 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.