aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/Makefile
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2009-08-30 19:21:32 -0700
committerRuss Cox <rsc@golang.org>2009-08-30 19:21:32 -0700
commit9449e3b02cb18931cd8cb4c0b9407dc1e0f8f80e (patch)
treedf143bbeca0a5c432fa23256ca59620e38f16f8e /src/pkg/Makefile
parent6e8524be1895a9b313f324700ad373e4f70144d7 (diff)
downloadgo-9449e3b02cb18931cd8cb4c0b9407dc1e0f8f80e.tar.xz
list untested packages instead of tested
R=r DELTA=68 (12 added, 55 deleted, 1 changed) OCL=34095 CL=34102
Diffstat (limited to 'src/pkg/Makefile')
-rw-r--r--src/pkg/Makefile64
1 files changed, 13 insertions, 51 deletions
diff --git a/src/pkg/Makefile b/src/pkg/Makefile
index d14183a5eb..8f5bee31bd 100644
--- a/src/pkg/Makefile
+++ b/src/pkg/Makefile
@@ -74,58 +74,20 @@ DIRS=\
unicode\
utf8\
+NOTEST=\
+ go/ast\
+ go/doc\
+ go/token\
+ hash\
+ image\
+ malloc\
+ rand\
+ runtime\
+ syscall\
+ testing/iotest\
+
TEST=\
- archive/tar\
- base64\
- big\
- bignum\
- bufio\
- bytes\
- compress/flate\
- compress/gzip\
- compress/zlib\
- container/list\
- container/ring\
- container/vector\
- crypto/aes\
- crypto/block\
- crypto/hmac\
- crypto/md5\
- crypto/sha1\
- datafmt\
- ebnf\
- exec\
- exvar\
- flag\
- fmt\
- go/parser\
- go/printer\
- go/scanner\
- gob\
- hash/adler32\
- hash/crc32\
- http\
- io\
- json\
- log\
- math\
- net\
- once\
- os\
- path\
- reflect\
- regexp\
- rpc\
- sort\
- strconv\
- strings\
- sync\
- tabwriter\
- template\
- testing\
- time\
- unicode\
- utf8\
+ $(filter-out $(NOTEST),$(DIRS))
clean.dirs: $(addsuffix .clean, $(DIRS))
install.dirs: $(addsuffix .install, $(DIRS))