summaryrefslogtreecommitdiff
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
commit7e20bc75baaf5c71fe76cdcb27dd019a2bbc1dce (patch)
tree3887d5ccd9ed512565f488666c2d94c2b4a955c6 /test/recover2.go
parent65d123eb4b7a9a8160382e6f917a3a270e970301 (diff)
downloadgo-7e20bc75baaf5c71fe76cdcb27dd019a2bbc1dce.tar.gz
arm: enable all tests
ARM functionality is now completely working. (Or if it's not, we'll fix it.) R=ken2 CC=golang-dev http://codereview.appspot.com/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 c95af8f62..48b050330 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")