From: Jeremy Whiting Date: Mon, 25 Jun 2012 19:07:49 +0000 (-0600) Subject: Remove GConf stop from eds test harness, since it's not needed. X-Git-Tag: FOLKS_0_7_2~15 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=922e8afea3bec94f6721c9a0cac15f0e935f64fb;p=platform%2Fupstream%2Ffolks.git Remove GConf stop from eds test harness, since it's not needed. --- diff --git a/tests/tools/with-session-bus-eds.sh b/tests/tools/with-session-bus-eds.sh index f1e854b..e525346 100755 --- a/tests/tools/with-session-bus-eds.sh +++ b/tests/tools/with-session-bus-eds.sh @@ -22,16 +22,9 @@ done shift if test "z$1" = "z"; then dbus_usage; fi -gconf_stop () -{ - local pid=$(dbus-send --print-reply --dest=org.freedesktop.DBus /org/freedesktop/DBus org.freedesktop.DBus.GetConnectionUnixProcessID string:org.gnome.GConf | tail -n 1 | awk ' { print $2; } ') - kill -KILL $pid -} - cleanup () { eds_stop - gconf_stop dbus_stop test -d ../data/gconf.d && rm -rf ../data/gconf.d }