aboutsummaryrefslogtreecommitdiff
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
commit3a0df4c451b1db1eb8ab178d4cd2522496bc892d (patch)
tree93ccc52d7ec8faec7c4604dee258e7bbc7d8165e /test/env.go
parentf51ca384eba74692315b51b1db99d412f4472e17 (diff)
downloadgo-3a0df4c451b1db1eb8ab178d4cd2522496bc892d.tar.gz
go-3a0df4c451b1db1eb8ab178d4cd2522496bc892d.zip
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 88cec4546b..db76ee49f3 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);
}