aboutsummaryrefslogtreecommitdiff
path: root/test/recover2.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2010-10-25 21:25:13 -0700
committerRuss Cox <rsc@golang.org>2010-10-25 21:25:13 -0700
commit8fff9166f6bfd7444fe8722f7e79c358f125c4e8 (patch)
tree0966a323edd45dabd743749581eab84c720e48fb /test/recover2.go
parentc97146608aa733fd137d4cd78ce2290d41311250 (diff)
downloadgo-8fff9166f6bfd7444fe8722f7e79c358f125c4e8.tar.gz
go-8fff9166f6bfd7444fe8722f7e79c358f125c4e8.zip
arm: enable all tests
ARM functionality is now completely working. (Or if it's not, we'll fix it.) R=ken2 CC=golang-dev https://golang.org/cl/2738041
Diffstat (limited to 'test/recover2.go')
-rw-r--r--test/recover2.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/recover2.go b/test/recover2.go
index c95af8f62f..48b0503309 100644
--- a/test/recover2.go
+++ b/test/recover2.go
@@ -83,8 +83,8 @@ func test6() {
}
func test7() {
- if syscall.ARCH == "arm" || syscall.OS == "nacl" {
- // ARM doesn't have integer divide trap yet
+ if syscall.OS == "nacl" {
+ // NaCl cannot handle traps
return
}
defer mustRecover("divide by zero")