aboutsummaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2019-02-20 10:39:28 -0500
committerRoger Dingledine <arma@torproject.org>2019-02-20 10:39:28 -0500
commit5ec65be8bff9862d31f612bdd28c0b0d78b1f5cf (patch)
tree6527d9d8e50c3c48fbb0fd7e7545e84c92df429a /src/test
parentccab4347e592116fcbc0faa42dcfaf7eaa6fe715 (diff)
parentd32e4079761f0076cd9e704a7f9996aa5b599f60 (diff)
downloadtor-5ec65be8bff9862d31f612bdd28c0b0d78b1f5cf.tar.gz
tor-5ec65be8bff9862d31f612bdd28c0b0d78b1f5cf.zip
Merge remote-tracking branch 'nickm/ticket29530_040' into maint-0.4.0
Diffstat (limited to 'src/test')
-rw-r--r--src/test/test_address.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/test_address.c b/src/test/test_address.c
index d9304a0cfa..bf9ca047dc 100644
--- a/src/test/test_address.c
+++ b/src/test/test_address.c
@@ -746,7 +746,7 @@ test_address_get_if_addrs_list_internal(void *arg)
(void)arg;
- results = get_interface_address_list(LOG_ERR, 1);
+ results = get_interface_address_list(LOG_WARN, 1);
tt_ptr_op(results, OP_NE, NULL);
/* When the network is down, a system might not have any non-local
@@ -777,7 +777,7 @@ test_address_get_if_addrs_list_no_internal(void *arg)
(void)arg;
- results = get_interface_address_list(LOG_ERR, 0);
+ results = get_interface_address_list(LOG_WARN, 0);
tt_ptr_op(results, OP_NE, NULL);
/* Work even on systems with only internal IPv4 addresses */
@@ -988,7 +988,7 @@ test_address_get_if_addrs(void *arg)
(void)arg;
- rv = get_interface_address(LOG_ERR, &addr_h);
+ rv = get_interface_address(LOG_WARN, &addr_h);
/* When the network is down, a system might not have any non-local
* non-multicast IPv4 addresses, not even internal ones.