erlang: modified wrong testcase.

This commit is contained in:
UENISHI Kota 2010-07-09 23:23:00 +09:00
parent ba4a971bfa
commit a4258505a9

@ -282,10 +282,11 @@ basic_test()->
port_test()->
Port = open_port({spawn, "ruby ../test/crosslang.rb"}, [binary]),
Tests = test_data(),
{[Tests],<<>>} = msgpack:unpack(msgpack:pack([Tests])),
true = port_command(Port, msgpack:pack(Tests) ),
S=msgpack:pack([Tests]),
true = port_command(Port, S),
{[Tests],<<>>} = msgpack:unpack(S),
receive
{Port, {data, Data}}-> {Tests, <<>>}=msgpack:unpack(Data)
{Port, {data, Data}}-> {[Tests], <<>>}=msgpack:unpack(Data)
after 1024-> ?assert(false) end,
port_close(Port).