summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2010-02-09 13:33:00 -0800
committerRuss Cox <rsc@golang.org>2010-02-09 13:33:00 -0800
commitef991ed97b19c46207f9ab8f0cd3a6fc47c28c13 (patch)
treeb9344afe4e8f577987d99537fa489366cd3c169a /src
parent5a0e5bbb1ed3016382ee64cba44e604575d7dbae (diff)
downloadgo-ef991ed97b19c46207f9ab8f0cd3a6fc47c28c13.tar.gz
add simple garbage collector benchmarks to dashboard
R=agl1 CC=golang-dev http://codereview.appspot.com/207043
Diffstat (limited to 'src')
-rwxr-xr-xsrc/clean.bash2
-rw-r--r--src/pkg/Makefile2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/clean.bash b/src/clean.bash
index 90bad1f5f..567e6e319 100755
--- a/src/clean.bash
+++ b/src/clean.bash
@@ -16,7 +16,7 @@ rm -rf "$GOROOT"/pkg/${GOOS}_$GOARCH
rm -f "$GOROOT"/lib/*.a
for i in lib9 libbio libcgo libmach cmd pkg \
../misc/cgo/gmp ../misc/cgo/stdio \
- ../test/bench
+ ../test/bench ../test/garbage
do(
cd "$GOROOT"/src/$i || exit 1
if test -f clean.bash; then
diff --git a/src/pkg/Makefile b/src/pkg/Makefile
index f057769ec..7130c66e6 100644
--- a/src/pkg/Makefile
+++ b/src/pkg/Makefile
@@ -169,7 +169,7 @@ install: install.dirs
test: test.dirs
-bench: bench.dirs
+bench: bench.dirs ../../test/garbage.bench
nuke: nuke.dirs
rm -rf "$(GOROOT)"/pkg/*