summaryrefslogtreecommitdiff
path: root/test/env.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2009-06-04 11:16:03 -0700
committerRuss Cox <rsc@golang.org>2009-06-04 11:16:03 -0700
commitd335e6b92457f7d7ec302e11e34b0af0cfeb1b57 (patch)
tree93ccc52d7ec8faec7c4604dee258e7bbc7d8165e /test/env.go
parent1936e9ff959dfbad0e59a12baf2988797de84bac (diff)
downloadgo-d335e6b92457f7d7ec302e11e34b0af0cfeb1b57.tar.gz
more 386 runtime fixes.
can pass many tests; current stumbling block is an 8l bug. R=r DELTA=122 (83 added, 8 deleted, 31 changed) OCL=29872 CL=29876
Diffstat (limited to 'test/env.go')
-rw-r--r--test/env.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/env.go b/test/env.go
index 88cec4546..db76ee49f 100644
--- a/test/env.go
+++ b/test/env.go
@@ -14,7 +14,7 @@ func main() {
print("$GOARCH: ", e0.String(), "\n");
os.Exit(1);
}
- if ga != "amd64" {
+ if ga != "amd64" && ga != "386" && ga != "arm" {
print("$GOARCH=", ga, "\n");
os.Exit(1);
}