diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2010-09-22 12:48:28 +0900 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2010-09-22 12:48:28 +0900 |
commit | 908cef92eb166148b50e6b5a647a586b79aa259c (patch) | |
tree | a69ab9587c37ffa97a8b4b0471a3450352c41626 /test | |
parent | f51b128435835e903b54f07a7e96449260b5f371 (diff) | |
download | connman-908cef92eb166148b50e6b5a647a586b79aa259c.tar.gz connman-908cef92eb166148b50e6b5a647a586b79aa259c.tar.bz2 connman-908cef92eb166148b50e6b5a647a586b79aa259c.zip |
Add support for setting proxy configuration method
Diffstat (limited to 'test')
-rwxr-xr-x | test/list-services | 3 | ||||
-rwxr-xr-x | test/monitor-services | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/test/list-services b/test/list-services index a8940921..88eea693 100755 --- a/test/list-services +++ b/test/list-services @@ -38,7 +38,8 @@ for path in properties["Services"]: for key in properties.keys(): if key in ["IPv4", "IPv4.Configuration", "IPv6", "IPv6.Configuration", - "Proxy", "Ethernet", "Provider"]: + "Proxy", "Proxy.Configuration", + "Ethernet", "Provider"]: val = extract_values(properties[key]) elif key in ["Nameservers", "Nameservers.Configuration", "Domains", "Domains.Configuration"]: diff --git a/test/monitor-services b/test/monitor-services index 05d1e1d9..ceeba790 100755 --- a/test/monitor-services +++ b/test/monitor-services @@ -29,8 +29,8 @@ def property_changed(name, value, path): val = val + " " + i[i.rfind("/") + 1:] val = val + " ]" elif name in ["IPv4", "IPv4.Configuration", - "IPv6", "IPv6.Configuration", - "Proxy", "Ethernet"]: + "IPv6", "IPv6.Configuration", + "Proxy", "Proxy.Configuration", "Ethernet"]: val = extract_values(value) elif name in ["Nameservers", "Nameservers.Configuration", "Domains", "Domains.Configuration"]: |