From 217cb1c2c1b369d2c9d0939516e240f27cbe75fa Mon Sep 17 00:00:00 2001 From: Samuel Ortiz Date: Mon, 21 Feb 2011 21:26:19 +0100 Subject: test: Fix tethering scripts Check for the enabling/disabling python return values. --- test/enable-tethering | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'test/enable-tethering') 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]) -- cgit v1.2.3