]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
tests: Show ifname in country code not cleared messages
authorJouni Malinen <j@w1.fi>
Sat, 13 Apr 2019 09:06:09 +0000 (12:06 +0300)
committerJouni Malinen <j@w1.fi>
Sat, 13 Apr 2019 09:06:09 +0000 (12:06 +0300)
Signed-off-by: Jouni Malinen <j@w1.fi>
tests/hwsim/run-tests.py

index 940448180a380fcc476059507ad43b0977f9c68a..4bb7f1b5e95ef8196b620b4b8412732494ea809e 100755 (executable)
@@ -511,8 +511,8 @@ def main():
                         country = d.get_driver_status_field("country")
                         if country != "00":
                             d.dump_monitor()
-                            logger.info("Country code not reset back to 00: is " + country)
-                            print("Country code not reset back to 00: is " + country)
+                            logger.info(d.ifname + ": Country code not reset back to 00: is " + country)
+                            print(d.ifname + ": Country code not reset back to 00: is " + country)
                             result = "FAIL"
 
                             # Try to wait for cfg80211 regulatory state to
@@ -524,8 +524,8 @@ def main():
                                 if country == "00":
                                     break
                             if country == "00":
-                                print("Country code cleared back to 00")
-                                logger.info("Country code cleared back to 00")
+                                print(d.ifname + ": Country code cleared back to 00")
+                                logger.info(d.ifname + ": Country code cleared back to 00")
                             else:
                                 print("Country code remains set - expect following test cases to fail")
                                 logger.info("Country code remains set - expect following test cases to fail")