From: Jouni Malinen Date: Thu, 26 Nov 2015 21:42:30 +0000 (+0200) Subject: tests: Clean up frequency list in scan_dfs X-Git-Tag: hostap_2_6~1323 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b25f04d44a9482681afa48959ba9c9caf1cb1f7b;p=thirdparty%2Fhostap.git tests: Clean up frequency list in scan_dfs This makes the test log more readable by converting the values to integers and sorting the array. Signed-off-by: Jouni Malinen --- diff --git a/tests/hwsim/test_scan.py b/tests/hwsim/test_scan.py index bb96033ae..ff7e69c19 100644 --- a/tests/hwsim/test_scan.py +++ b/tests/hwsim/test_scan.py @@ -940,10 +940,11 @@ def _test_scan_dfs(dev, apdev, params): "wlan.fc.type_subtype == 4", [ "radiotap.channel.freq" ]) if out is not None: freq = out.splitlines() + freq = [int(f) for f in freq] freq = list(set(freq)) + freq.sort() logger.info("Active scan seen on channels: " + str(freq)) - for ff in freq: - f = int(ff) + for f in freq: if (f >= 5260 and f <= 5320) or (f >= 5500 and f <= 5700): raise Exception("Active scan on DFS channel: %d" % f)