]> Cypherpunks repositories - gostls13.git/commitdiff
list untested packages instead of tested
authorRuss Cox <rsc@golang.org>
Mon, 31 Aug 2009 02:21:32 +0000 (19:21 -0700)
committerRuss Cox <rsc@golang.org>
Mon, 31 Aug 2009 02:21:32 +0000 (19:21 -0700)
R=r
DELTA=68  (12 added, 55 deleted, 1 changed)
OCL=34095
CL=34102

src/pkg/Makefile

index d14183a5eb4897f7131703f35aa51a22c270a3a7..8f5bee31bd774e774f2b4be65d02fd9e622757f2 100644 (file)
@@ -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))