]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
tests: mgmt_group_cipher in STATUS
authorJouni Malinen <jouni@qca.qualcomm.com>
Mon, 3 Jul 2017 11:29:10 +0000 (14:29 +0300)
committerJouni Malinen <j@w1.fi>
Mon, 3 Jul 2017 11:29:10 +0000 (14:29 +0300)
Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
tests/hwsim/test_suite_b.py

index 8ee4da7f390ca22318a2c97e0e7c2788163d8705..eed52dce541790c727241ce21b39713fd8d69f7e 100644 (file)
@@ -173,6 +173,9 @@ def test_suite_b_192(dev, apdev):
     tls_cipher = dev[0].get_status_field("EAP TLS cipher")
     if tls_cipher != "ECDHE-ECDSA-AES256-GCM-SHA384":
         raise Exception("Unexpected TLS cipher: " + tls_cipher)
+    cipher = dev[0].get_status_field("mgmt_group_cipher")
+    if cipher != "BIP-GMAC-256":
+        raise Exception("Unexpected mgmt_group_cipher: " + cipher)
 
     bss = dev[0].get_bss(apdev[0]['bssid'])
     if 'flags' not in bss: