nacltest.bash: set GOROOT before invoking cmd/go
The builder builds with GOROOT_FINAL=/usr/local/go set.

TBR=rsc
R=golang-codereviews
CC=golang-codereviews
https://golang.org/cl/112100043
diff --git a/src/nacltest.bash b/src/nacltest.bash
index 2b62830..154d99a 100755
--- a/src/nacltest.bash
+++ b/src/nacltest.bash
@@ -67,6 +67,9 @@
 fi
 GOOS=$GOHOSTOS GOARCH=$GOHOSTARCH ./make.bash
 
+# the builder might have set GOROOT_FINAL.
+export GOROOT=$(pwd)/..
+
 # Build zip file embedded in package syscall.
 gobin=${GOBIN:-$(pwd)/../bin}
 rm -f pkg/syscall/fstest_nacl.go