aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-04-20 13:16:14 -0500
committerTed Gould <ted@canonical.com>2009-04-20 13:16:14 -0500
commitc5cc32d7fa7c6abe909f3d19a7e1deb529bcc4a9 (patch)
treee7c3c4804a00a503831fc3574bc50d3584f1fd50
parent76d5d0d2ad09b22fd49ca49761a12554a1d6383c (diff)
downloadlibayatana-indicator-c5cc32d7fa7c6abe909f3d19a7e1deb529bcc4a9.tar.gz
libayatana-indicator-c5cc32d7fa7c6abe909f3d19a7e1deb529bcc4a9.tar.bz2
libayatana-indicator-c5cc32d7fa7c6abe909f3d19a7e1deb529bcc4a9.zip
Expanding range of interest test and not checking to see if we got none, we shouldn't get it.
-rw-r--r--tests/test-interests-client.c4
-rw-r--r--tests/test-interests-server.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/tests/test-interests-client.c b/tests/test-interests-client.c
index 0fe8587..bde3b26 100644
--- a/tests/test-interests-client.c
+++ b/tests/test-interests-client.c
@@ -12,7 +12,7 @@ static gboolean
check_interests (void)
{
guint i;
- for (i = INDICATE_INTEREST_NONE; i < INDICATE_INTEREST_LAST; i++) {
+ for (i = INDICATE_INTEREST_NONE + 1; i < INDICATE_INTEREST_LAST; i++) {
if (!interests[i]) {
return FALSE;
}
@@ -54,7 +54,7 @@ main (int argc, char * argv)
IndicateServer * server = indicate_server_ref_default();
g_signal_connect(G_OBJECT(server), INDICATE_SERVER_SIGNAL_INTEREST_ADDED, G_CALLBACK(interest_added), NULL);
- g_timeout_add_seconds(10, done_timeout_cb, indicator);
+ g_timeout_add_seconds(2, done_timeout_cb, indicator);
mainloop = g_main_loop_new(NULL, FALSE);
g_main_loop_run(mainloop);
diff --git a/tests/test-interests-server.c b/tests/test-interests-server.c
index 82cab3c..e1433d8 100644
--- a/tests/test-interests-server.c
+++ b/tests/test-interests-server.c
@@ -10,8 +10,8 @@ server_added (IndicateListener * listener, IndicateListenerServer * server, gcha
{
g_debug("Indicator Server Added: %s %s", INDICATE_LISTENER_SERVER_DBUS_NAME(server), type);
- guint i;
- for (i = INDICATE_INTEREST_NONE; i < INDICATE_INTEREST_LAST; i++) {
+ gint i;
+ for (i = INDICATE_INTEREST_NONE - 2; i < INDICATE_INTEREST_LAST + 2; i++) {
g_debug("Indicating Interests: %d", i);
indicate_listener_server_show_interest(listener, server, i);
}