aboutsummaryrefslogtreecommitdiff
path: root/src/run.bash
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2011-10-12 13:23:34 -0400
committerRuss Cox <rsc@golang.org>2011-10-12 13:23:34 -0400
commit8219cc9af8a53fa22af2e12631108c85a14b166b (patch)
tree62e1b03bc505fc86bac27c22ae34abd2257e127a /src/run.bash
parentaf1232fe38b1decdeceaf7dc0050622a79c04b10 (diff)
downloadgo-8219cc9af8a53fa22af2e12631108c85a14b166b.tar.xz
runtime: fix memory leak in parallel garbage collector
The work buffer management used by the garbage collector during parallel collections leaks buffers. This CL tests for and fixes the leak. R=golang-dev, dvyukov, r CC=golang-dev https://golang.org/cl/5254059
Diffstat (limited to 'src/run.bash')
-rwxr-xr-xsrc/run.bash4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/run.bash b/src/run.bash
index d3d2c69bf5..927e193e0a 100755
--- a/src/run.bash
+++ b/src/run.bash
@@ -41,6 +41,10 @@ fi
gomake testshort
) || exit $?
+(xcd pkg/runtime;
+gotest -short -cpu=1,2,4
+) || exit $?
+
(xcd pkg/sync;
GOMAXPROCS=10 gomake testshort
) || exit $?