test: Remove script to monitor manager
authorMarcel Holtmann <marcel@holtmann.org>
Sun, 29 Apr 2012 23:27:43 +0000 (01:27 +0200)
committerMarcel Holtmann <marcel@holtmann.org>
Sun, 29 Apr 2012 23:27:43 +0000 (01:27 +0200)
Makefile.am
test/monitor-manager [deleted file]

index 8cf3dc69aa95b81fd0b8986d730906374a152b4f..6afc5eca85214c7d2c1750f5f180bc695110c906 100644 (file)
@@ -202,7 +202,7 @@ test_scripts = test/get-state test/list-services \
                test/monitor-services test/test-clock \
                test/simple-agent test/show-introspection test/test-compat \
                test/test-manager test/test-connman test/monitor-connman \
-               test/connect-vpn test/disconnect-vpn test/monitor-manager \
+               test/connect-vpn test/disconnect-vpn \
                test/test-counter test/set-ipv4-method test/set-ipv6-method \
                test/get-services test/get-proxy-autoconfig test/set-proxy \
                test/enable-tethering test/disable-tethering test/backtrace \
diff --git a/test/monitor-manager b/test/monitor-manager
deleted file mode 100755 (executable)
index 7620b35..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/usr/bin/python
-
-import gobject
-
-import dbus
-import dbus.mainloop.glib
-
-def property_changed(name, value):
-       if name in ["Profiles", "Services", "Technologies"]:
-               val = "["
-               for i in value:
-                       val = val + " " + i[i.rfind("/") + 1:]
-               val = val + " ]"
-       elif name in ["Strength", "Priority"]:
-               val = int(value)
-       else:
-               val = str(value)
-       print "%s = %s" % (name, val)
-
-if __name__ == '__main__':
-       dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)
-
-       bus = dbus.SystemBus()
-
-       bus.add_signal_receiver(property_changed,
-                               bus_name="net.connman",
-                               dbus_interface="net.connman.Manager",
-                                       signal_name = "PropertyChanged")
-
-       mainloop = gobject.MainLoop()
-       mainloop.run()