summaryrefslogtreecommitdiff
path: root/test/monitor-manager
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2012-04-30 01:27:43 +0200
committerMarcel Holtmann <marcel@holtmann.org>2012-04-30 01:27:43 +0200
commitc02dcd0d1bef975742601820837ee5c7ef673f73 (patch)
treee3cc3f83d4af8b6ced9508e893d74d41ce0218b7 /test/monitor-manager
parent179477e695107425c9e47177beb5957327b52021 (diff)
downloadconnman-c02dcd0d1bef975742601820837ee5c7ef673f73.tar.gz
connman-c02dcd0d1bef975742601820837ee5c7ef673f73.tar.bz2
connman-c02dcd0d1bef975742601820837ee5c7ef673f73.zip
test: Remove script to monitor manager
Diffstat (limited to 'test/monitor-manager')
-rwxr-xr-xtest/monitor-manager31
1 files changed, 0 insertions, 31 deletions
diff --git a/test/monitor-manager b/test/monitor-manager
deleted file mode 100755
index 7620b35c..00000000
--- a/test/monitor-manager
+++ /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()