diff options
author | Ted Gould <ted@gould.cx> | 2009-12-09 14:00:40 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2009-12-09 14:00:40 -0600 |
commit | bc29c3e31adbed4dd2b93c1a461da9936b54456c (patch) | |
tree | ba158f590b58b85e15779918931d8318e2ed087f | |
parent | f8b95bdab9579b19b59a5ece923f0aac79f99390 (diff) | |
download | libdbusmenu-bc29c3e31adbed4dd2b93c1a461da9936b54456c.tar.gz libdbusmenu-bc29c3e31adbed4dd2b93c1a461da9936b54456c.tar.bz2 libdbusmenu-bc29c3e31adbed4dd2b93c1a461da9936b54456c.zip |
Adding in support for bustling the 'test-glib-layout' test results.
-rw-r--r-- | tests/Makefile.am | 5 | ||||
-rw-r--r-- | tests/test-glib-layout-client.c | 2 |
2 files changed, 4 insertions, 3 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index fa85d7f..36b870d 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -42,7 +42,7 @@ glib_server_nomenu_LDADD = \ test-glib-layout: test-glib-layout-client test-glib-layout-server Makefile.am @echo "#!/bin/bash" > $@ - @echo $(DBUS_RUNNER) --task ./test-glib-layout-client --task-name Client --task ./test-glib-layout-server --task-name Server --ignore-return >> $@ + @echo $(DBUS_RUNNER) -b test-glib-layout.bustle --task ./test-glib-layout-client --task-name Client --task ./test-glib-layout-server --task-name Server --ignore-return >> $@ @chmod +x $@ test_glib_layout_server_SOURCES = \ @@ -238,4 +238,5 @@ distclean-local: -rm -rf $(builddir)/mago.results DISTCLEANFILES = \ - $(TESTS) + $(TESTS) \ + test-glib-layout.bustle diff --git a/tests/test-glib-layout-client.c b/tests/test-glib-layout-client.c index a7dd683..6a79321 100644 --- a/tests/test-glib-layout-client.c +++ b/tests/test-glib-layout-client.c @@ -111,7 +111,7 @@ main (int argc, char ** argv) g_usleep(500000); - DbusmenuClient * client = dbusmenu_client_new(":1.0", "/org/test"); + DbusmenuClient * client = dbusmenu_client_new(":1.1", "/org/test"); g_signal_connect(G_OBJECT(client), DBUSMENU_CLIENT_SIGNAL_LAYOUT_UPDATED, G_CALLBACK(layout_updated), NULL); g_timeout_add_seconds(10, timer_func, client); |