summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJens Georg <mail@jensge.org>2021-12-29 16:58:44 +0100
committerJens Georg <mail@jensge.org>2021-12-30 10:12:10 +0100
commitd39232a1d9c089c251339ba20fdc97639b0808a0 (patch)
tree075e39cc60ba313fbc889124959eabe86d61be16 /tests
parent88419ce7df41ed25cd5d4a972dbe5fca8a86e0d5 (diff)
downloadgupnp-d39232a1d9c089c251339ba20fdc97639b0808a0.tar.gz
tests: No need to check for error on gupnp0 detect
Diffstat (limited to 'tests')
-rw-r--r--tests/test-acl.c4
-rw-r--r--tests/test-context.c8
2 files changed, 8 insertions, 4 deletions
diff --git a/tests/test-acl.c b/tests/test-acl.c
index 321171a..25e2b42 100644
--- a/tests/test-acl.c
+++ b/tests/test-acl.c
@@ -407,7 +407,7 @@ main (int argc, char *argv[])
// Detect if there is a special network device with "proper" ip addresses to check also link-local addresses
GUPnPContext *c = g_initable_new (GUPNP_TYPE_CONTEXT,
NULL,
- &error,
+ NULL,
"interface",
"gupnp0",
"address-family",
@@ -423,7 +423,7 @@ main (int argc, char *argv[])
c = g_initable_new (GUPNP_TYPE_CONTEXT,
NULL,
- &error,
+ NULL,
"interface",
"gupnp0",
"address-family",
diff --git a/tests/test-context.c b/tests/test-context.c
index 8fefdc7..e72ec70 100644
--- a/tests/test-context.c
+++ b/tests/test-context.c
@@ -1106,7 +1106,7 @@ main (int argc, char *argv[])
// Detect if there is a special network device with "proper" ip addresses to check also link-local addresses
GUPnPContext *c = g_initable_new (GUPNP_TYPE_CONTEXT,
NULL,
- &error,
+ NULL,
"interface",
"gupnp0",
"address-family",
@@ -1114,6 +1114,8 @@ main (int argc, char *argv[])
NULL);
if (c != NULL) {
+ g_debug ("Adding address %s from device gupnp0",
+ gssdp_client_get_host_ip (GSSDP_CLIENT (c)));
g_ptr_array_add (
addresses,
g_strdup (gssdp_client_get_host_ip (GSSDP_CLIENT (c))));
@@ -1122,7 +1124,7 @@ main (int argc, char *argv[])
c = g_initable_new (GUPNP_TYPE_CONTEXT,
NULL,
- &error,
+ NULL,
"interface",
"gupnp0",
"address-family",
@@ -1130,6 +1132,8 @@ main (int argc, char *argv[])
NULL);
if (c != NULL) {
+ g_debug ("Adding address %s from device gupnp0",
+ gssdp_client_get_host_ip (GSSDP_CLIENT (c)));
g_ptr_array_add (
addresses,
g_strdup (gssdp_client_get_host_ip (GSSDP_CLIENT (c))));