Browse Source

tests: Fix a typo on a wpas_config_file error path

In addition, print the config files in error case to the debug log.

Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
Jouni Malinen 11 years ago
parent
commit
3cf48c4f2e
1 changed files with 5 additions and 1 deletions
  1. 5 1
      tests/hwsim/test_wpas_config.py

+ 5 - 1
tests/hwsim/test_wpas_config.py

@@ -4,6 +4,8 @@
 # This software may be distributed under the terms of the BSD license.
 # See README for more details.
 
+import logging
+logger = logging.getLogger()
 import os
 import subprocess
 
@@ -105,7 +107,9 @@ def test_wpas_config_file(dev):
         data2 = check_config(config)
 
         if data1 != data2:
-            raise Esception("Unexpected configuration change")
+            logger.debug(data1)
+            logger.debug(data2)
+            raise Exception("Unexpected configuration change")
 
     finally:
         subprocess.call(['sudo', 'rm', config])