diff options
author | Kai Backman <kaib@golang.org> | 2010-04-15 12:47:49 +0300 |
---|---|---|
committer | Kai Backman <kaib@golang.org> | 2010-04-15 12:47:49 +0300 |
commit | b055d4cc1313b6c551773a3385476a332b02cabf (patch) | |
tree | dad42691085436182ae19ef8814e4c9b85de5b9b | |
parent | 9e5434735bd6aad2e2a0b4b4e64e335a1f0515c1 (diff) | |
download | golang-b055d4cc1313b6c551773a3385476a332b02cabf.tar.gz |
synchronize ARM runner environment variable with run-arm
R=rsc
CC=golang-dev
http://codereview.appspot.com/912041
-rwxr-xr-x | src/cmd/gotest/gotest | 2 | ||||
-rwxr-xr-x | test/run | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/cmd/gotest/gotest b/src/cmd/gotest/gotest index b5a21e746..3fca81b6a 100755 --- a/src/cmd/gotest/gotest +++ b/src/cmd/gotest/gotest @@ -38,7 +38,7 @@ esac # TODO(kaib): proper emulator strategy case x"$GOARCH" in xarm) - export E=${EMU_arm:-qemu-arm -cpu cortex-a8} + export E=${GORUN:-qemu-arm -cpu cortex-a8} esac # Allow overrides @@ -13,7 +13,7 @@ X386) ;; Xarm) export A=5 - export E=${EMU_arm:-qemu-arm -cpu cortex-a8} + export E=${GORUN:-qemu-arm -cpu cortex-a8} ;; *) echo 1>&2 run: unsupported '$GOARCH' |