From 31a3d4c23444a66b9d1a7f454b23e69d062208ed Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Sun, 26 Jan 2020 16:03:31 +0200 Subject: [PATCH] tests: Recognize more test SKIP reasons Signed-off-by: Jouni Malinen --- tests/hwsim/vm/parallel-vm.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/hwsim/vm/parallel-vm.py b/tests/hwsim/vm/parallel-vm.py index d509a041e..714b8746c 100755 --- a/tests/hwsim/vm/parallel-vm.py +++ b/tests/hwsim/vm/parallel-vm.py @@ -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)): -- 2.47.2