aboutsummaryrefslogtreecommitdiff
path: root/test/bench
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2012-05-07 10:14:50 -0700
committerIan Lance Taylor <iant@golang.org>2012-05-07 10:14:50 -0700
commitdc6ec74f07e380f7414359acd8e2463fbbf7f0c2 (patch)
tree4dc5057bd55675b32c4ebf2f51003f1450bcf32d /test/bench
parent9d063816ef42f90ae0af001f3348fc535fdef753 (diff)
downloadgo-dc6ec74f07e380f7414359acd8e2463fbbf7f0c2.tar.gz
go-dc6ec74f07e380f7414359acd8e2463fbbf7f0c2.zip
test/bench/shootout: fix gccgo binary-list-freelist test
R=r CC=golang-dev https://golang.org/cl/6202046
Diffstat (limited to 'test/bench')
-rwxr-xr-xtest/bench/shootout/timing.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/bench/shootout/timing.sh b/test/bench/shootout/timing.sh
index dd3e664f4c..e1c5cf2925 100755
--- a/test/bench/shootout/timing.sh
+++ b/test/bench/shootout/timing.sh
@@ -107,7 +107,7 @@ binarytree() {
runonly echo 'binary-tree 15 # too slow to use 20'
run 'gcc -O2 binary-tree.c -lm' a.out 15
run 'gccgo -O2 binary-tree.go' a.out -n 15
- run 'gccgo -O2 binary-tree-freelist.go' $O.out -n 15
+ run 'gccgo -O2 binary-tree-freelist.go' a.out -n 15
run 'gc binary-tree' $O.out -n 15
run 'gc binary-tree-freelist' $O.out -n 15
}