diff options
author | Ludovic Courtès <ludo@gnu.org> | 2010-08-27 15:44:55 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2010-08-27 18:59:43 +0200 |
commit | d3cc00f65d8d792024ffcd5f63ab1512f21ee25d (patch) | |
tree | 23e04b6cce801c8d4d0db9df77403c88c6eb4aae /benchmark-suite | |
parent | b86d23093284512a6a3c1780e9e5547c9ab34c25 (diff) |
SRFI-1: Choose better benchmark names.
* benchmark-suite/benchmarks/srfi-1.bm ("fold"): Rename sub-tests to
"big" and "small".
Diffstat (limited to 'benchmark-suite')
-rw-r--r-- | benchmark-suite/benchmarks/srfi-1.bm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/benchmark-suite/benchmarks/srfi-1.bm b/benchmark-suite/benchmarks/srfi-1.bm index 2888934c5..e07d3b95f 100644 --- a/benchmark-suite/benchmarks/srfi-1.bm +++ b/benchmark-suite/benchmarks/srfi-1.bm @@ -31,8 +31,8 @@ (with-benchmark-prefix "fold" - (benchmark "fold" 30 + (benchmark "big" 30 (fold (lambda (x y) y) #f %big-list)) - (benchmark "fold" 2000000 + (benchmark "small" 2000000 (fold (lambda (x y) y) #f %small-list))) |