aboutsummaryrefslogtreecommitdiffstats
path: root/camel/tests/folder/test1.c
diff options
context:
space:
mode:
authornobody <nobody@localhost>2001-10-25 06:17:05 +0800
committernobody <nobody@localhost>2001-10-25 06:17:05 +0800
commitd926a5044cc190b0e6f3b53d7be13096a79990c8 (patch)
tree75a31cb1cb19b4266322f9427b0641c1b53aca24 /camel/tests/folder/test1.c
parentdcc99c020b6a58e174091b32585159edfae18dd4 (diff)
downloadgsoc2013-evolution-GNOME_2.tar
gsoc2013-evolution-GNOME_2.tar.gz
gsoc2013-evolution-GNOME_2.tar.bz2
gsoc2013-evolution-GNOME_2.tar.lz
gsoc2013-evolution-GNOME_2.tar.xz
gsoc2013-evolution-GNOME_2.tar.zst
gsoc2013-evolution-GNOME_2.zip
This commit was manufactured by cvs2svn to create tag 'GNOME_2'.GNOME_2
svn path=/tags/GNOME_2/; revision=14021
Diffstat (limited to 'camel/tests/folder/test1.c')
-rw-r--r--camel/tests/folder/test1.c50
1 files changed, 0 insertions, 50 deletions
diff --git a/camel/tests/folder/test1.c b/camel/tests/folder/test1.c
deleted file mode 100644
index c1d3809852..0000000000
--- a/camel/tests/folder/test1.c
+++ /dev/null
@@ -1,50 +0,0 @@
-/* store testing */
-
-#include "camel-test.h"
-#include "folders.h"
-#include "session.h"
-
-#include <camel/camel-exception.h>
-#include <camel/camel-service.h>
-#include <camel/camel-store.h>
-
-#define ARRAY_LEN(x) (sizeof(x)/sizeof(x[0]))
-
-static char *local_providers[] = {
- "mbox",
- "mh",
- "maildir"
-};
-
-int main(int argc, char **argv)
-{
- CamelSession *session;
- CamelException *ex;
- int i;
- char *path;
-
- camel_test_init(argc, argv);
-
- ex = camel_exception_new();
-
- /* clear out any camel-test data */
- system("/bin/rm -rf /tmp/camel-test");
-
- session = camel_test_session_new ("/tmp/camel-test");
-
- /* todo: cross-check everything with folder_info checks as well */
- /* todo: subscriptions? */
- /* todo: work out how to do imap/pop/nntp tests */
- for (i=0;i<ARRAY_LEN(local_providers);i++) {
- path = g_strdup_printf("%s:///tmp/camel-test/%s", local_providers[i], local_providers[i]);
-
- test_folder_basic(session, path, TRUE, FALSE);
-
- g_free(path);
- }
-
- camel_object_unref((CamelObject *)session);
- camel_exception_free(ex);
-
- return 0;
-}