diff options
author | nobody <nobody@localhost> | 2003-12-09 09:57:09 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 2003-12-09 09:57:09 +0800 |
commit | 4ef7d31cb740e45d402fa986aea2449fc1e1ed02 (patch) | |
tree | 75bb0caf9afd4b94842023406d6a7938c5d8b2b7 /smime/tests | |
parent | 0031a7166cd0f3fc0cec0b60c468ca22a8c45b0b (diff) | |
download | gsoc2013-evolution-LIBGLADE_2_4_0.tar.gz gsoc2013-evolution-LIBGLADE_2_4_0.tar.zst gsoc2013-evolution-LIBGLADE_2_4_0.zip |
This commit was manufactured by cvs2svn to create tagLIBGLADE_2_4_0
'LIBGLADE_2_4_0'.
svn path=/tags/LIBGLADE_2_4_0/; revision=23842
Diffstat (limited to 'smime/tests')
-rw-r--r-- | smime/tests/.cvsignore | 3 | ||||
-rw-r--r-- | smime/tests/Makefile.am | 17 | ||||
-rw-r--r-- | smime/tests/import-cert.c | 38 |
3 files changed, 0 insertions, 58 deletions
diff --git a/smime/tests/.cvsignore b/smime/tests/.cvsignore deleted file mode 100644 index db5ae49ffb..0000000000 --- a/smime/tests/.cvsignore +++ /dev/null @@ -1,3 +0,0 @@ -Makefile -Makefile.in -import-cert diff --git a/smime/tests/Makefile.am b/smime/tests/Makefile.am deleted file mode 100644 index 2c0c54a88e..0000000000 --- a/smime/tests/Makefile.am +++ /dev/null @@ -1,17 +0,0 @@ - -noinst_PROGRAMS=import-cert - -INCLUDES= \ - -I$(top_srcdir)/smime/lib \ - $(EVOLUTION_ADDRESSBOOK_CFLAGS) \ - $(CERT_UI_CFLAGS) - -TEST_LIBS= \ - $(top_builddir)/smime/lib/libessmime.la \ - -L/home/toshok/src/mozilla/mozilla/dist/lib \ - $(CERT_UI_LIBS) \ - $(top_builddir)/e-util/libeutil.la \ - $(GNOME_FULL_LIBS) - - -import_cert_LDADD=$(TEST_LIBS)
\ No newline at end of file diff --git a/smime/tests/import-cert.c b/smime/tests/import-cert.c deleted file mode 100644 index e30b085317..0000000000 --- a/smime/tests/import-cert.c +++ /dev/null @@ -1,38 +0,0 @@ - -#include <gtk/gtk.h> -#include <libgnomeui/gnome-ui-init.h> - -#include "e-cert-db.h" -#include "e-pkcs12.h" - -int -main (int argc, char **argv) -{ - ECertDB *db; - EPKCS12 *pkcs12; - - gnome_program_init("import-cert-test", "0.0", LIBGNOMEUI_MODULE, argc, argv, NULL); - - db = e_cert_db_peek (); - - if (!e_cert_db_import_certs_from_file (db, "ca.crt", E_CERT_CA, NULL /* XXX */)) { - g_warning ("CA cert import failed"); - } - - if (!e_cert_db_import_certs_from_file (db, "", E_CERT_CONTACT, NULL /* XXX */)) { - g_warning ("contact cert import failed"); - } - - if (!e_cert_db_import_certs_from_file (db, "", E_CERT_SITE, NULL /* XXX */)) { - g_warning ("server cert import failed"); - } - - pkcs12 = e_pkcs12_new (); - if (!e_pkcs12_import_from_file (pkcs12, "newcert.p12", NULL /* XXX */)) { - g_warning ("PKCS12 import failed"); - } - - e_cert_db_shutdown (); - - return 0; -} |