mirror of https://github.com/yandex/odyssey.git
machinarium: update test_cancel_connect_2 test
This commit is contained in:
parent
62df15e121
commit
7857042e20
|
@ -6,6 +6,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <machinarium.h>
|
#include <machinarium.h>
|
||||||
|
#include <uv.h>
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
@ -15,8 +16,10 @@ test_connect(void *arg)
|
||||||
assert(mm_is_cancel(env));
|
assert(mm_is_cancel(env));
|
||||||
printf("child started\n");
|
printf("child started\n");
|
||||||
mm_io_t client = mm_io_new(env);
|
mm_io_t client = mm_io_new(env);
|
||||||
|
struct sockaddr_in sa;
|
||||||
|
uv_ip4_addr("8.8.8.8", 1324, &sa);
|
||||||
int rc;
|
int rc;
|
||||||
rc = mm_connect(client, "8.8.8.16", 1324, 0);
|
rc = mm_connect(client, (struct sockaddr*)&sa, 0);
|
||||||
printf("child resumed\n");
|
printf("child resumed\n");
|
||||||
assert(rc < 0);
|
assert(rc < 0);
|
||||||
mm_close(client);
|
mm_close(client);
|
||||||
|
|
Loading…
Reference in New Issue