1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +02:00

SRFI-1: Choose better benchmark names.

* benchmark-suite/benchmarks/srfi-1.bm ("fold"): Rename sub-tests to
  "big" and "small".
This commit is contained in:
Ludovic Courtès 2010-08-27 15:44:55 +02:00
parent b86d230932
commit d3cc00f65d

View file

@ -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)))