diff options
-rw-r--r-- | tests/Makefile.am | 1 | ||||
-rw-r--r-- | tests/test-movemail.c | 1 | ||||
-rw-r--r-- | tests/test10.c | 1 | ||||
-rw-r--r-- | tests/test11.c | 1 | ||||
-rw-r--r-- | tests/test7.c | 22 |
5 files changed, 0 insertions, 26 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index 20b0a82a76..bce09185fb 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -56,7 +56,6 @@ endif noinst_PROGRAMS = \ test1 \ test2 \ - test7 \ test10 \ test11 \ test13 \ diff --git a/tests/test-movemail.c b/tests/test-movemail.c index 679e71ec7a..bcd5334b5a 100644 --- a/tests/test-movemail.c +++ b/tests/test-movemail.c @@ -49,7 +49,6 @@ int main (int argc, char **argv) exit (1); } e_setup_base_dir (); - camel_provider_scan (); session = camel_session_new (auth_callback); ex = camel_exception_new (); diff --git a/tests/test10.c b/tests/test10.c index 5e20d2f6db..efe069242a 100644 --- a/tests/test10.c +++ b/tests/test10.c @@ -83,7 +83,6 @@ main (int argc, char**argv) gtk_init (&argc, &argv); camel_init (); ex = camel_exception_new (); - camel_provider_register_as_module ("../camel/providers/mbox/.libs/libcamelmbox.so"); session = camel_session_new (auth_callback); store = camel_session_get_store (session, store_url, ex); diff --git a/tests/test11.c b/tests/test11.c index c7a8a5c1b5..1cc778bda1 100644 --- a/tests/test11.c +++ b/tests/test11.c @@ -78,7 +78,6 @@ main (int argc, char**argv) gtk_init (&argc, &argv); camel_init (); ex = camel_exception_new (); - camel_provider_register_as_module ("../camel/providers/mbox/.libs/libcamelmbox.so.0"); sd = g_malloc0(sizeof(*sd)); sd->ex = ex; diff --git a/tests/test7.c b/tests/test7.c deleted file mode 100644 index b3e32efb10..0000000000 --- a/tests/test7.c +++ /dev/null @@ -1,22 +0,0 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ - -/* test provider stuff */ - - -#include "camel.h" - - -int -main (int argc, char**argv) -{ - const CamelProvider *new_provider; - - gtk_init (&argc, &argv); - camel_init (); - - - new_provider = camel_provider_register_as_module ("../camel/providers/MH/.libs/libcamelmh.so"); - - - return 1; -} |