summaryrefslogtreecommitdiff
path: root/test/monitor-services
diff options
context:
space:
mode:
authorTomasz Bursztyka <tomasz.bursztyka@nokia.com>2010-10-07 10:40:05 +0300
committerMarcel Holtmann <marcel@holtmann.org>2010-10-07 13:31:47 +0200
commit8e273c5f42e72158da0a11529dcdad11a7079d95 (patch)
tree27d92e3a0c587453cf33f9628ead29f1a35f389b /test/monitor-services
parent2aed7a549e25e099431e0543e19eca8175452141 (diff)
downloadconnman-8e273c5f42e72158da0a11529dcdad11a7079d95.tar.gz
connman-8e273c5f42e72158da0a11529dcdad11a7079d95.tar.bz2
connman-8e273c5f42e72158da0a11529dcdad11a7079d95.zip
Pretty printers for proxy settings in various test tool.
Diffstat (limited to 'test/monitor-services')
-rwxr-xr-xtest/monitor-services5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/monitor-services b/test/monitor-services
index ceeba790..b7c95de8 100755
--- a/test/monitor-services
+++ b/test/monitor-services
@@ -9,7 +9,10 @@ def extract_values(values):
val = "{"
for key in values.keys():
val += " " + key + "="
- val += str(values[key])
+ if key in ["Servers", "Excludes"]:
+ val += extract_list(values[key])
+ else:
+ val += str(values[key])
val += " }"
return val