← Back to team overview

ayatana-commits team mailing list archive

[Merge] lp:~ted/dbus-test-runner/kill-dbus into lp:dbus-test-runner

 

Ted Gould has proposed merging lp:~ted/dbus-test-runner/kill-dbus into lp:dbus-test-runner.

    Requested reviews:
    Indicator Applet Developers (indicator-applet-developers)


Explicitly ensuring the dbus-daemon goes away.
-- 
https://code.launchpad.net/~ted/dbus-test-runner/kill-dbus/+merge/15614
Your team ayatana-commits is subscribed to branch lp:dbus-test-runner.
=== modified file 'po/Makefile.in.in'
--- po/Makefile.in.in	2009-08-19 16:59:30 +0000
+++ po/Makefile.in.in	2009-12-03 16:25:24 +0000
@@ -129,7 +129,7 @@
 	done
 
 # Empty stubs to satisfy archaic automake needs
-dvi info tags TAGS ID:
+dvi info ctags tags CTAGS TAGS ID:
 
 # Define this as empty until I found a useful application.
 install-exec installcheck:

=== modified file 'src/dbus-test-runner.c'
--- src/dbus-test-runner.c	2009-12-02 22:58:02 +0000
+++ src/dbus-test-runner.c	2009-12-03 16:25:24 +0000
@@ -331,5 +331,9 @@
 	global_mainloop = g_main_loop_new(NULL, FALSE);
 	g_main_loop_run(global_mainloop);
 
+	gchar * killline = g_strdup_printf("kill -9 %d", dbus);
+	g_spawn_command_line_sync(killline, NULL, NULL, NULL, NULL);
+	g_free(killline);
+
 	return !global_success;
 }


Follow ups