Skip to content

Commit

Permalink
testing if the mac testrunner fails due to 127.0.0.[234] addresses
Browse files Browse the repository at this point in the history
  • Loading branch information
jthomas43 committed Sep 7, 2023
1 parent 08aee47 commit 8bd00b9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/stream-change-remote.c
Original file line number Diff line number Diff line change
Expand Up @@ -93,15 +93,15 @@ main () {
e = udx_socket_bind(&asock, (struct sockaddr *) &aaddr, 0);
assert(e == 0);

uv_ip4_addr("127.0.0.2", 8082, &baddr);
uv_ip4_addr("127.0.0.1", 8082, &baddr);
e = udx_socket_bind(&bsock, (struct sockaddr *) &baddr, 0);
assert(e == 0);

uv_ip4_addr("127.0.0.3", 8083, &caddr);
uv_ip4_addr("127.0.0.1", 8083, &caddr);
e = udx_socket_bind(&csock, (struct sockaddr *) &caddr, 0);
assert(e == 0);

uv_ip4_addr("127.0.0.4", 8084, &daddr);
uv_ip4_addr("127.0.0.1", 8084, &daddr);
e = udx_socket_bind(&dsock, (struct sockaddr *) &daddr, 0);
assert(e == 0);

Expand Down

0 comments on commit 8bd00b9

Please sign in to comment.