int wpas_module_tests(void) { int ret = 0; wpa_printf(MSG_INFO, "wpa_supplicant module tests"); if (wpas_blacklist_module_tests() < 0) ret = -1; #ifdef CONFIG_WPS if (wps_module_tests() < 0) ret = -1; #endif /* CONFIG_WPS */ if (utils_module_tests() < 0) ret = -1; if (common_module_tests() < 0) ret = -1; if (crypto_module_tests() < 0) ret = -1; return ret; }
int wpas_module_tests(void) { int ret = 0; wpa_printf(MSG_INFO, "wpa_supplicant module tests"); if (wpas_blacklist_module_tests() < 0) ret = -1; #ifdef CONFIG_WPS { int wps_module_tests(void); if (wps_module_tests() < 0) ret = -1; } #endif /* CONFIG_WPS */ return ret; }