Commit 6a13b408 authored by Matthias Vallentin's avatar Matthias Vallentin

Also test remote_actor() with std::string.

parent 42c44511
......@@ -326,6 +326,9 @@ int main(int argc, char** argv) {
{
auto server2 = remote_actor("localhost", port);
CPPA_CHECK(serv == server2);
std::string localhost("127.0.0.1");
auto server3 = remote_actor(localhost, port);
CPPA_CHECK(serv == server3);
}
auto c = spawn<client, monitored>(serv);
receive (
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment