update test/README.md

This commit is contained in:
frsyuki 2010-06-01 15:58:44 +09:00
parent fb3e11408c
commit 989b14b519

View File

@ -22,17 +22,11 @@ as comparing that implementations.
or
$ port install msgpack # MacPorts
$ g++ -Wall -lmsgpack crosslang.cc
$ g++ -Wall -lmsgpack crosslang.cc -o crosslang
$ ./crosslang
Usage: ./crosslang [in-file] [out-file]
This tool is for testing of MessagePack implementation.
This does following behavior:
1. Reads objects serialized by MessagePack from <in-file> (default: stdin)
2. Re-serializes the objects using C++ implementation of MessagePack (Note that C++ implementation is considered valid)
3. Writes the re-serialized objects into <out-file> (default: stdout)
### Ruby version
$ gem install msgpack
@ -42,10 +36,3 @@ as comparing that implementations.
$ ruby crosslang.rb
Usage: crosslang.rb [in-file] [out-file]
This tool is for testing of MessagePack implementation.
This does following behavior:
1. Reads objects serialized by MessagePack from <in-file> (default: stdin)
2. Re-serializes the objects using Ruby implementation of MessagePack (Note that Ruby implementation is considered valid)
3. Writes the re-serialized objects into <out-file> (default: stdout)