int main (int argc, char **argv) { nmtst_init (&argc, &argv, TRUE); g_test_add_func ("/libnm/defaults", defaults); return g_test_run (); }
int main (int argc, char **argv) { GError *error = NULL; nmtst_init (&argc, &argv, TRUE); if (!crypto_init (&error)) FAIL ("crypto-init", "failed to initialize crypto: %s", error->message); g_test_add_data_func ("/libnm/crypto/cert/pem", "test_ca_cert.pem", test_cert); g_test_add_data_func ("/libnm/crypto/cert/pem-2", "test2_ca_cert.pem", test_cert); g_test_add_data_func ("/libnm/crypto/cert/der", "test_ca_cert.der", test_cert); g_test_add_data_func ("/libnm/crypto/cert/pem-no-ending-newline", "ca-no-ending-newline.pem", test_cert); g_test_add_data_func ("/libnm/crypto/cert/pem-combined", "test_key_and_cert.pem", test_cert); g_test_add_data_func ("/libnm/crypto/cert/pem-combined-2", "test2_key_and_cert.pem", test_cert); g_test_add_data_func ("/libnm/crypto/key/padding-6", "test_key_and_cert.pem, test, test-key-only-decrypted.der", test_key); g_test_add_data_func ("/libnm/crypto/key/key-only", "test-key-only.pem, test, test-key-only-decrypted.der", test_key); g_test_add_data_func ("/libnm/crypto/key/padding-8", "test2_key_and_cert.pem, 12345testing", test_key); g_test_add_data_func ("/libnm/crypto/key/aes", "test-aes-key.pem, test-aes-password", test_key); g_test_add_data_func ("/libnm/crypto/PKCS#12/1", "test-cert.p12, test", test_pkcs12); g_test_add_data_func ("/libnm/crypto/PKCS#12/2", "test2-cert.p12, 12345testing", test_pkcs12); g_test_add_data_func ("/libnm/crypto/PKCS#8", "pkcs8-enc-key.pem, 1234567890", test_pkcs8); return g_test_run (); }
int main (int argc, char **argv) { char *base; nmtst_init (&argc, &argv, TRUE); /* The tests */ test_wifi_open (); test_wifi_wep (); test_wifi_wpa_psk_types (); base = g_path_get_basename (argv[0]); fprintf (stdout, "%s: SUCCESS\n", base); g_free (base); return 0; }