From 3dcd0e458456b34cd6ece59ebb5d863cfc5d2caa Mon Sep 17 00:00:00 2001 From: Yorick Peterse <yorickpeterse@gmail.com> Date: Tue, 2 Sep 2014 10:06:09 +0200 Subject: [PATCH] Compare results of the XML pull parser benchmark. --- benchmark/xml/pull_parser/pull_parser_bench.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/benchmark/xml/pull_parser/pull_parser_bench.rb b/benchmark/xml/pull_parser/pull_parser_bench.rb index def32b9..13e9d4f 100644 --- a/benchmark/xml/pull_parser/pull_parser_bench.rb +++ b/benchmark/xml/pull_parser/pull_parser_bench.rb @@ -10,4 +10,6 @@ Benchmark.ips do |bench| bench.report '10MB as an IO' do Oga::XML::PullParser.new(big_xml_file).parse { } end + + bench.compare! end