Skip to content

Commit

Permalink
Reenable test against dev/dmz
Browse files Browse the repository at this point in the history
  • Loading branch information
kanshi committed Aug 13, 2024
1 parent fee10ff commit 2874d7c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/test/test_bwmgt.c
Original file line number Diff line number Diff line change
Expand Up @@ -402,10 +402,10 @@ test_bwmgt_dir_conn_global_write_low(void *arg)

/* Now, lets try with a connection address from ATORDAeucdev. It should
* always pass even though our limit is too low. */
// addr_family = tor_addr_parse(&conn->addr, "49.13.145.234");
// tt_int_op(addr_family, OP_EQ, AF_INET);
// ret = connection_dir_is_global_write_low(conn, INT_MAX);
// tt_int_op(ret, OP_EQ, 0);
addr_family = tor_addr_parse(&conn->addr, "88.99.219.105");
tt_int_op(addr_family, OP_EQ, AF_INET);
ret = connection_dir_is_global_write_low(conn, INT_MAX);
tt_int_op(ret, OP_EQ, 0);

/* IPv6 testing of ATORDAeucdev. */
// TODO(ator): uncoment once we have DA with ipv6
Expand Down

0 comments on commit 2874d7c

Please sign in to comment.