summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTokuhiro Matsuno <tokuhirom@users.sourceforge.jp>2009-04-15 23:02:27 +0900
committerTokuhiro Matsuno <tokuhirom@users.sourceforge.jp>2009-04-15 23:02:27 +0900
commitea41db4cc7b2e7434b5268233d7e31de07c64517 (patch)
treeead3e42c66034f9a20499732b7a52d1ade60b41a
parent5a201be8447892bab7d706b50bbeadf51bc7e573 (diff)
downloadmsgpack-python-ea41db4cc7b2e7434b5268233d7e31de07c64517.tar.gz
perl: renamed benchmark script
-rw-r--r--perl/benchmark/serialize.pl (renamed from perl/benchmark/p1.pl)2
1 files changed, 2 insertions, 0 deletions
diff --git a/perl/benchmark/p1.pl b/perl/benchmark/serialize.pl
index 257932e..626ae03 100644
--- a/perl/benchmark/p1.pl
+++ b/perl/benchmark/serialize.pl
@@ -7,6 +7,8 @@ use Benchmark ':all';
my $a = [0..2**24];
print "-- serialize\n";
+print "JSON::XS: $JSON::XS::VERSION\n";
+print "Data::MessagePack: $Data::MessagePack::VERSION\n";
cmpthese(
-1 => {
json => sub { JSON::XS::encode_json($a) },