summaryrefslogtreecommitdiff
path: root/bench
diff options
context:
space:
mode:
authormurphy <murphy@rubychan.de>2010-06-27 00:50:15 +0000
committermurphy <murphy@rubychan.de>2010-06-27 00:50:15 +0000
commitd9344bf169a641e7e1738a5fd04bcf3cb7c17022 (patch)
tree8b5d0c635ca1241ad7f3bbb286400836223833f4 /bench
parentce0a3ceb5d6903a4cbc491f96135d27987a3b4ce (diff)
downloadcoderay-d9344bf169a641e7e1738a5fd04bcf3cb7c17022.tar.gz
Benchmark script uses -Ofull option for pygmentize.
Diffstat (limited to 'bench')
-rw-r--r--bench/bench.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/bench/bench.rb b/bench/bench.rb
index 10b76ad..5647edd 100644
--- a/bench/bench.rb
+++ b/bench/bench.rb
@@ -167,7 +167,7 @@ Benchmark.bm(20) do |bm|
Dir.chdir File.expand_path('~/Python/pygments') do
File.open('input-data', 'wb') { |f| f.write data }
N.times do
- `pygmentize -O encoding=utf-8 -l#{lang} -fhtml input-data > /dev/null`
+ `pygmentize -O encoding=utf-8 -l#{lang} -fhtml -Ofull input-data > /dev/null`
end
end
end