Browse Source

tests: Report unexpected STATUS lines instead of stopping

It looks like get_status() has failed in some test runs because of a
STATUS command returning an line without '=' on it. Instead of stopping
there on exception, report the unexpected line in the log and ignore it
to allow test to continue.

Signed-hostap: Jouni Malinen <jouni@qca.qualcomm.com>
Jouni Malinen 11 years ago
parent
commit
e01929c668
1 changed files with 5 additions and 2 deletions
  1. 5 2
      tests/hwsim/wpasupplicant.py

+ 5 - 2
tests/hwsim/wpasupplicant.py

@@ -241,8 +241,11 @@ class WpaSupplicant:
         lines = res.splitlines()
         lines = res.splitlines()
         vals = dict()
         vals = dict()
         for l in lines:
         for l in lines:
-            [name,value] = l.split('=', 1)
-            vals[name] = value
+            try:
+                [name,value] = l.split('=', 1)
+                vals[name] = value
+            except ValueError, e:
+                logger.info(self.ifname + ": Ignore unexpected STATUS line: " + l)
         return vals
         return vals
 
 
     def get_status_field(self, field):
     def get_status_field(self, field):