diff options
author | Evan Shaw <chickencha@gmail.com> | 2010-04-19 15:41:40 -0700 |
---|---|---|
committer | Evan Shaw <chickencha@gmail.com> | 2010-04-19 15:41:40 -0700 |
commit | 9e9230327b4b6da0356a5d1ee9a80b77618ec718 (patch) | |
tree | a4d9be25ccdd24bd59d48bf5a1db51db21af1d6c | |
parent | bad0272a944169212192226a879098c43c802f5e (diff) | |
download | golang-9e9230327b4b6da0356a5d1ee9a80b77618ec718.tar.gz |
gc benchmark: Update package list
Some old packages on the list were preventing this benchmark from working.
R=golang-dev, r
CC=golang-dev
http://codereview.appspot.com/820045
Committer: Rob Pike <r@golang.org>
-rw-r--r-- | test/garbage/parser.go | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/test/garbage/parser.go b/test/garbage/parser.go index 2485908e8..e8e049474 100644 --- a/test/garbage/parser.go +++ b/test/garbage/parser.go @@ -118,6 +118,7 @@ var packages = []string{ "bignum", "bufio", "bytes", + "cmath", "compress/flate", "compress/gzip", "compress/zlib", @@ -127,13 +128,16 @@ var packages = []string{ "container/vector", "crypto/aes", "crypto/block", + "crypto/blowfish", "crypto/hmac", "crypto/md4", "crypto/md5", + "crypto/rand", "crypto/rc4", "crypto/rsa", "crypto/sha1", "crypto/sha256", + "crypto/sha512", "crypto/subtle", "crypto/tls", "crypto/x509", @@ -154,9 +158,7 @@ var packages = []string{ "exp/datafmt", "exp/draw", "exp/eval", - "exp/exception", "exp/iterable", - "exp/parser", "expvar", "flag", "fmt", @@ -170,6 +172,7 @@ var packages = []string{ "hash", "hash/adler32", "hash/crc32", + "hash/crc64", "http", "image", "image/jpeg", @@ -179,7 +182,9 @@ var packages = []string{ "json", "log", "math", + "mime", "net", + "nntp", "once", "os", "os/signal", @@ -206,7 +211,7 @@ var packages = []string{ "time", "unicode", "utf8", + "utf16", "websocket", - "xgb", "xml", } |