diff options
author | Conor Curran <conor.curran@canonical.com> | 2010-03-24 15:47:37 +0000 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2010-03-24 15:47:37 +0000 |
commit | d7fbeccff7687eb1e50f6c35355a19e5433246c6 (patch) | |
tree | 45a7404fde9e8402c47779e9d5450d36e1680760 /tests/test-indicator-sound-dbus-server.c | |
parent | 65fde4c4a871479a5e9b58fb5e1c0e880b71b784 (diff) | |
parent | 017109c083b207d4a2bfb1d7d17e09aafc123b55 (diff) | |
download | ayatana-indicator-sound-d7fbeccff7687eb1e50f6c35355a19e5433246c6.tar.gz ayatana-indicator-sound-d7fbeccff7687eb1e50f6c35355a19e5433246c6.tar.bz2 ayatana-indicator-sound-d7fbeccff7687eb1e50f6c35355a19e5433246c6.zip |
Tests branch finally makes its way into trunk - more testing needed
Diffstat (limited to 'tests/test-indicator-sound-dbus-server.c')
-rw-r--r-- | tests/test-indicator-sound-dbus-server.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/tests/test-indicator-sound-dbus-server.c b/tests/test-indicator-sound-dbus-server.c index 21d7dfe..6912dc4 100644 --- a/tests/test-indicator-sound-dbus-server.c +++ b/tests/test-indicator-sound-dbus-server.c @@ -43,13 +43,17 @@ gint main (gint argc, gchar * argv[]) { g_type_init(); - g_debug("DBus ID: %s", dbus_connection_get_server_id(dbus_g_connection_get_connection(dbus_g_bus_get(DBUS_BUS_SESSION, NULL)))); + + //g_debug("DBus ID: %s", dbus_connection_get_server_id(dbus_g_connection_get_connection(dbus_g_bus_get(DBUS_BUS_SESSION, NULL)))); dbus_interface = g_object_new(SOUND_SERVICE_DBUS_TYPE, NULL); // Set the mute value - sound_service_dbus_update_sink_mute(dbus_interface, TEST_MUTE); - g_timeout_add_seconds(2, kill_func, NULL); + sound_service_dbus_update_sink_mute(dbus_interface, TEST_MUTE_VALUE); + sound_service_dbus_update_sink_volume(dbus_interface, TEST_VOLUME_VALUE); + sound_service_dbus_update_sink_availability(dbus_interface, TEST_AVAILABLE_VALUE); + + g_timeout_add_seconds(4, kill_func, NULL); // Run the loop mainloop = g_main_loop_new(NULL, FALSE); |