FST: Mark wpa_supplicant callback functions get_peer_{first,next} static
[mech_eap.git] / wpa_supplicant / wpas_module_tests.c
index 86b70a9..6af1678 100644 (file)
@@ -86,5 +86,23 @@ int wpas_module_tests(void)
        }
 #endif /* CONFIG_WPS */
 
+       {
+               int utils_module_tests(void);
+               if (utils_module_tests() < 0)
+                       ret = -1;
+       }
+
+       {
+               int common_module_tests(void);
+               if (common_module_tests() < 0)
+                       ret = -1;
+       }
+
+       {
+               int crypto_module_tests(void);
+               if (crypto_module_tests() < 0)
+                       ret = -1;
+       }
+
        return ret;
 }