From 78a37200f8336f3e509d7165e89caf132ced2d90 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Fri, 23 Sep 2016 16:01:36 +0300 Subject: [PATCH] tests: Reset wlan5 device before RELOG command This moves the wpa_supplicant debug entries from the end of a test case using a dynamically added wlan5 interface to the correct test case, i.e., the test case that added the interface instead of whatever test case happens to follow this. Signed-off-by: Jouni Malinen --- tests/hwsim/run-tests.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/hwsim/run-tests.py b/tests/hwsim/run-tests.py index 9361e3a..499263f 100755 --- a/tests/hwsim/run-tests.py +++ b/tests/hwsim/run-tests.py @@ -473,6 +473,10 @@ def main(): logger.info("Failed to issue TEST-STOP after {} for {}".format(name, d.ifname)) logger.info(e) result = "FAIL" + if args.no_reset: + print "Leaving devices in current state" + else: + reset_ok = reset_devs(dev, apdev) wpas = None try: wpas = WpaSupplicant(global_iface="/tmp/wpas-wlan5") @@ -483,10 +487,6 @@ def main(): pass if wpas: wpas.close_ctrl() - if args.no_reset: - print "Leaving devices in current state" - else: - reset_ok = reset_devs(dev, apdev) for i in range(0, 3): rename_log(args.logdir, 'log' + str(i), name, dev[i]) -- 2.1.4