summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKai Backman <kaib@golang.org>2010-04-15 12:47:49 +0300
committerKai Backman <kaib@golang.org>2010-04-15 12:47:49 +0300
commitb055d4cc1313b6c551773a3385476a332b02cabf (patch)
treedad42691085436182ae19ef8814e4c9b85de5b9b
parent9e5434735bd6aad2e2a0b4b4e64e335a1f0515c1 (diff)
downloadgolang-b055d4cc1313b6c551773a3385476a332b02cabf.tar.gz
synchronize ARM runner environment variable with run-arm
R=rsc CC=golang-dev http://codereview.appspot.com/912041
-rwxr-xr-xsrc/cmd/gotest/gotest2
-rwxr-xr-xtest/run2
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
diff --git a/test/run b/test/run
index 473bef147..78014c867 100755
--- a/test/run
+++ b/test/run
@@ -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'