summaryrefslogtreecommitdiff
path: root/src/cmd/gotest
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/gotest')
-rwxr-xr-xsrc/cmd/gotest/gotest8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/cmd/gotest/gotest b/src/cmd/gotest/gotest
index 212abbf75..e274ef9b8 100755
--- a/src/cmd/gotest/gotest
+++ b/src/cmd/gotest/gotest
@@ -22,6 +22,12 @@ nacl)
E="nacl"
esac
+# TODO(kaib): proper emulator strategy
+case x"$GOARCH" in
+xarm)
+ E="qemu-arm -cpu cortex-a8"
+esac
+
# Allow overrides
GC=${_GC:-$GC}
GL=${GL:-$LD}
@@ -131,5 +137,5 @@ importpath=$(make -s importpath)
}>_testmain.go
$GC _testmain.go
-$GL _testmain.$O _test/$importpath.a $xofile
+$GL _testmain.$O
$E ./$O.out "$@"