X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=test%2Ftrio.c;h=c82821f1caf9dfb174f49066e79dc6a42f311de5;hb=2610a548bbeef7a10172889f8aa41d8bfa797c71;hp=2cb14bd301af273c37c9948a6efc58cd80be96c8;hpb=dc0e52cb3e42620c3139e713b373d130aa30b698;p=meshlink diff --git a/test/trio.c b/test/trio.c index 2cb14bd3..c82821f1 100644 --- a/test/trio.c +++ b/test/trio.c @@ -59,6 +59,8 @@ int main() { mesh[i] = meshlink_open(path, name[i], "trio", DEV_CLASS_BACKBONE); assert(mesh[i]); + meshlink_add_address(mesh[i], "localhost"); + data[i] = meshlink_export(mesh[i]); assert(data[i]); } @@ -81,7 +83,7 @@ int main() { // start the nodes for(int i = 0; i < 3; i++) { - meshlink_start(mesh[i]); + assert(meshlink_start(mesh[i])); } // the nodes should now learn about each other @@ -122,7 +124,7 @@ int main() { meshlink_set_log_cb(mesh[1], MESHLINK_DEBUG, log_cb); for(int i = 1; i < 3; i++) { - meshlink_start(mesh[i]); + assert(meshlink_start(mesh[i])); } assert(meshlink_get_node(mesh[1], name[2]));