diff options
| author | David Crawshaw <david.crawshaw@zentus.com> | 2014-07-09 06:56:49 -0400 |
|---|---|---|
| committer | David Crawshaw <david.crawshaw@zentus.com> | 2014-07-09 06:56:49 -0400 |
| commit | a5f8e8f99cbac0cfecd3baa869d111bacfbaeac4 (patch) | |
| tree | 243a73661f2060d7efbe8654746a86fd80dcb0f5 /src/androidtest.bash | |
| parent | 29aac3d91bc0ecc1aa5c03321cc0549dda436a4e (diff) | |
| download | go-a5f8e8f99cbac0cfecd3baa869d111bacfbaeac4.tar.xz | |
androidtest.bash, misc/android: build scripts for android
LGTM=minux
R=minux
CC=golang-codereviews
https://golang.org/cl/107640044
Diffstat (limited to 'src/androidtest.bash')
| -rwxr-xr-x | src/androidtest.bash | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/src/androidtest.bash b/src/androidtest.bash new file mode 100755 index 0000000000..ede085ef83 --- /dev/null +++ b/src/androidtest.bash @@ -0,0 +1,54 @@ +#/usr/bin/env bash +# Copyright 2014 The Go Authors. All rights reserved. +# Use of this source code is governed by a BSD-style +# license that can be found in the LICENSE file. + +# For testing Android. +# The compiler runs locally, then a copy of the GOROOT is pushed to a +# target device using adb, and the tests are run there. + +set -e +ulimit -c 0 # no core files + +if [ ! -f make.bash ]; then + echo 'nacl.bash must be run from $GOROOT/src' 1>&2 + exit 1 +fi + +if [ -z $GOOS ]; then + export GOOS=android +fi +if [ "$GOOS" != "android" ]; then + echo "androidtest.bash requires GOOS=android, got GOOS=$GOOS" 1>&2 + exit 1 +fi + +export CGO_ENABLED=1 + +# Run the build for the host bootstrap, so we can build go_android_exec. +# Also lets us fail early before the (slow) adb push if the build is broken. +./make.bash +export GOROOT=$(dirname $(pwd)) +export PATH=$GOROOT/bin:$PATH +GOOS=$GOHOSTOS GOARCH=$GOHOSTARCH go build \ + -o ../bin/go_android_${GOARCH}_exec \ + ../misc/android/go_android_exec.go + +# Push GOROOT to target device. +# +# The adb sync command will sync either the /system or /data +# directories of an android device from a similar directory +# on the host. So we fake one with symlinks to push the GOROOT +# into a subdirectory of /data. +export ANDROID_PRODUCT_OUT=/tmp/androidtest-$$ +FAKE_GOROOT=$ANDROID_PRODUCT_OUT/data/local/tmp/goroot +mkdir -p $FAKE_GOROOT/src +ln -s $GOROOT/src/cmd $FAKE_GOROOT/src/cmd +ln -s $GOROOT/src/pkg $FAKE_GOROOT/src/pkg +ln -s $GOROOT/test $FAKE_GOROOT/test +ln -s $GOROOT/lib $FAKE_GOROOT/lib +adb sync data +rm -rf "$ANDROID_PRODUCT_OUT" + +# Run standard build and tests. +./all.bash --no-clean |
