X-Git-Url: http://git.meshlink.io/?p=meshlink;a=blobdiff_plain;f=test%2Ftrio.c;h=c82821f1caf9dfb174f49066e79dc6a42f311de5;hp=2cb14bd301af273c37c9948a6efc58cd80be96c8;hb=5c7be85686db219955e1af592b32d0d4108625cb;hpb=13ef38b7a24efc84122b4d2bfc86cddbc359b94f 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]));