aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/Makefile.am3
-rw-r--r--tests/test7.c22
2 files changed, 24 insertions, 1 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 55ef5048dd..77f5b37090 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -22,4 +22,5 @@ noinst_PROGRAMS = \
test1 \
test2 \
test3 \
- test4
+ test4 \
+ test7
diff --git a/tests/test7.c b/tests/test7.c
new file mode 100644
index 0000000000..aaf256f64b
--- /dev/null
+++ b/tests/test7.c
@@ -0,0 +1,22 @@
+/* -*- 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;
+
+ camel_debug_level = CAMEL_LOG_LEVEL_FULL_DEBUG;
+
+ gtk_init (&argc, &argv);
+ camel_init ();
+
+
+ new_provider = camel_provider_register_as_module ("../camel/providers/MH/.libs/libcamelmh.so");
+
+}