Parcourir la source

tests: Fix scan_reqs_with_non_scan_radio_work error reporting

Raise an exception instead of printing out to stdout if scan fails to
complete.

Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
Jouni Malinen il y a 8 ans
Parent
commit
0aca60b84c
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      tests/hwsim/test_scan.py

+ 1 - 1
tests/hwsim/test_scan.py

@@ -620,7 +620,7 @@ def test_scan_reqs_with_non_scan_radio_work(dev, apdev):
 
     ev = dev[0].wait_event(["CTRL-EVENT-SCAN-RESULTS"], timeout=10)
     if ev is None:
-        print "Scan did not complete"
+        raise Exception("Scan did not complete")
     ev = dev[0].wait_event(["CTRL-EVENT-SCAN-STARTED"], timeout=0.2)
     if ev is not None:
         raise Exception("Unexpected scan started")