diff options
author | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2011-07-14 18:43:04 +0100 |
---|---|---|
committer | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2011-08-05 12:26:48 +0100 |
commit | 565ae9dea907d2f8677f556bd29a0c3a52f9decc (patch) | |
tree | 3cf4a698b0458ecc1728f7b68a17c14c13841b2a /test/test-shell-service.c | |
parent | 2ccbfb82dcc64cfdb39f52556be8c3402aa9323a (diff) | |
download | dbus-565ae9dea907d2f8677f556bd29a0c3a52f9decc.tar.gz |
test-service, test-shell-service: check what RequestName returned
Bug: https://bugs.freedesktop.org/show_bug.cgi?id=39231
Reviewed-by: Will Thompson <will.thompson@collabora.co.uk>
Diffstat (limited to 'test/test-shell-service.c')
-rw-r--r-- | test/test-shell-service.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/test-shell-service.c b/test/test-shell-service.c index 57c16123..32a88329 100644 --- a/test/test-shell-service.c +++ b/test/test-shell-service.c @@ -176,6 +176,13 @@ main (int argc, exit (1); } + if (result != DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER) + { + fprintf (stderr, "Unable to acquire service: code %d\n", result); + _dbus_verbose ("*** Failed to acquire service: %d\n", result); + exit (1); + } + _dbus_verbose ("*** Test service entering main loop\n"); _dbus_loop_run (loop); |