]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
tests: Recognize more test SKIP reasons
authorJouni Malinen <j@w1.fi>
Sun, 26 Jan 2020 14:03:31 +0000 (16:03 +0200)
committerJouni Malinen <j@w1.fi>
Sun, 26 Jan 2020 14:03:31 +0000 (16:03 +0200)
Signed-off-by: Jouni Malinen <j@w1.fi>
tests/hwsim/vm/parallel-vm.py

index d509a041ef90224235ea52f96c247b854d59f6f2..714b8746cfe7fdd0a7f0b69f87f91110b4d3d75c 100755 (executable)
@@ -592,6 +592,14 @@ def main():
     missing['wmediumd not available'] = 'wmediumd'
     missing['DPP not supported'] = 'CONFIG_DPP'
     missing['DPP version 2 not supported'] = 'CONFIG_DPP2'
+    missing['EAP method PWD not supported in the build'] = 'CONFIG_EAP_PWD'
+    missing['EAP method TEAP not supported in the build'] = 'CONFIG_EAP_TEAP'
+    missing['FILS not supported'] = 'CONFIG_FILS'
+    missing['FILS-SK-PFS not supported'] = 'CONFIG_FILS_SK_PFS'
+    missing['OWE not supported'] = 'CONFIG_OWE'
+    missing['SAE not supported'] = 'CONFIG_SAE'
+    missing['Not using OpenSSL'] = 'CONFIG_TLS=openssl'
+    missing['wpa_supplicant TLS library is not OpenSSL: internal'] = 'CONFIG_TLS=openssl'
     missing_items = []
     other_reasons = []
     for reason in sorted(set(skip_reason)):