summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2009-03-11 20:39:37 +0100
committerMarcel Holtmann <marcel@holtmann.org>2009-03-11 20:39:37 +0100
commit64e21423a7872663e23bb369af56c6d0776b3658 (patch)
tree606af74b436d9bdbb2955644384e411c31b040be /test
parent306c84e60b5779356addbbeff7084c0c7478a056 (diff)
downloadconnman-64e21423a7872663e23bb369af56c6d0776b3658.tar.gz
connman-64e21423a7872663e23bb369af56c6d0776b3658.tar.bz2
connman-64e21423a7872663e23bb369af56c6d0776b3658.zip
Add more helpers for handling profile/service support
Diffstat (limited to 'test')
-rwxr-xr-xtest/test-manager4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/test-manager b/test/test-manager
index 7915eaf5..4b056f9f 100755
--- a/test/test-manager
+++ b/test/test-manager
@@ -16,6 +16,8 @@ def print_properties(key, value):
interface = "org.moblin.connman.Device"
elif key == "Connections":
interface = "org.moblin.connman.Connection"
+ elif key == "Services":
+ interface = "org.moblin.connman.Service"
else:
return
@@ -52,7 +54,7 @@ def print_properties(key, value):
print " Networks = [ %s]" % (list)
for key in properties.keys():
- if key in ["Profiles", "Devices", "Connections"]:
+ if key in ["Profiles", "Devices", "Connections", "Services"]:
print_properties(key, properties[key])
elif key in ["OfflineMode"]:
print "%s" % (key)