summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rwxr-xr-xtest/disable-tethering4
-rwxr-xr-xtest/enable-tethering4
2 files changed, 8 insertions, 0 deletions
diff --git a/test/disable-tethering b/test/disable-tethering
index e275b2b6..87435232 100755
--- a/test/disable-tethering
+++ b/test/disable-tethering
@@ -24,6 +24,8 @@ def technology_disable_tethering(path, tech_type):
tech.SetProperty("Tethering", dbus.Boolean(0))
return tech_type
+ else:
+ return None
properties = manager.GetProperties()
@@ -31,6 +33,8 @@ for key in properties.keys():
if key in ["Technologies"]:
for path in properties[key]:
tech = technology_disable_tethering(path, sys.argv[1])
+ if tech != None:
+ break;
if tech == None:
print "Failed to disable %s tethering" % (sys.argv[1])
diff --git a/test/enable-tethering b/test/enable-tethering
index 6bb1a9ae..cdb037fb 100755
--- a/test/enable-tethering
+++ b/test/enable-tethering
@@ -33,6 +33,8 @@ def technology_enable_tethering(path, tech_type, ssid, psk):
tech.SetProperty("Tethering", dbus.Boolean(1))
return tech_type
+ else:
+ return None
properties = manager.GetProperties()
@@ -46,6 +48,8 @@ for key in properties.keys():
tech = technology_enable_tethering(path,
sys.argv[1], "", "")
+ if tech != None:
+ break;
if tech == None:
print "Failed to enable %s tethering" % (sys.argv[1])