aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2010-10-13 18:16:44 -0400
committerRuss Cox <rsc@golang.org>2010-10-13 18:16:44 -0400
commitd6df3017749bbe4737789c381b50ef71eb11b900 (patch)
tree6b0df7674cd6df1bfef4addeb61e1208c1e5278f
parentb33f5d537f1b1b445b9cd1c3206922acc4196068 (diff)
downloadgo-d6df3017749bbe4737789c381b50ef71eb11b900.tar.gz
go-d6df3017749bbe4737789c381b50ef71eb11b900.zip
arm: enable 8 more packages
The remaining failures include: * something about bit operations? crypto/block encoding/binary * something about file I/O? archive/tar archive/zip debug/dwarf debug/elf debug/macho image/png * floating point cmath expvar flag fmt gob json math strconv template xml * network (maybe fixed by a pending CL) http netchan rpc rpc/jsonrpc syslog websocket * line numbers log * haven't bothered / not sure exp/datafmt exp/eval go/printer os os/signal testing/quick R=ken2 CC=golang-dev https://golang.org/cl/2496041
-rw-r--r--src/pkg/Makefile8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/pkg/Makefile b/src/pkg/Makefile
index e961f37f52..c250fe9e70 100644
--- a/src/pkg/Makefile
+++ b/src/pkg/Makefile
@@ -206,13 +206,8 @@ ifeq ($(GOARCH),arm)
# Disable so that dashboard all.bash can catch regressions.
NOTEST+=archive/tar
NOTEST+=archive/zip
-NOTEST+=big
NOTEST+=cmath
-NOTEST+=compress/gzip
-NOTEST+=compress/zlib
NOTEST+=crypto/block
-NOTEST+=crypto/rsa
-NOTEST+=crypto/subtle
NOTEST+=debug/dwarf
NOTEST+=debug/elf
NOTEST+=debug/macho
@@ -226,7 +221,6 @@ NOTEST+=go/printer
NOTEST+=gob
NOTEST+=http
NOTEST+=image/png
-NOTEST+=io
NOTEST+=json
NOTEST+=log
NOTEST+=math
@@ -234,14 +228,12 @@ NOTEST+=net
NOTEST+=netchan
NOTEST+=os
NOTEST+=os/signal
-NOTEST+=reflect
NOTEST+=rpc
NOTEST+=rpc/jsonrpc
NOTEST+=strconv
NOTEST+=syslog
NOTEST+=template
NOTEST+=testing/quick
-NOTEST+=time
NOTEST+=websocket
NOTEST+=xml
endif