aboutsummaryrefslogtreecommitdiffstats
path: root/camel/tests/folder/test2.c
diff options
context:
space:
mode:
authornobody <nobody@localhost>2001-08-02 23:43:54 +0800
committernobody <nobody@localhost>2001-08-02 23:43:54 +0800
commitdb171b24325a1ce9b39e3606dd1e72c27cb27e0a (patch)
tree94acb43d14c571e8ec432fa3650277178741f531 /camel/tests/folder/test2.c
parentea4315435238149d387701ed2940bf8c97d4d319 (diff)
downloadgsoc2013-evolution-gnomoku-1_2.tar
gsoc2013-evolution-gnomoku-1_2.tar.gz
gsoc2013-evolution-gnomoku-1_2.tar.bz2
gsoc2013-evolution-gnomoku-1_2.tar.lz
gsoc2013-evolution-gnomoku-1_2.tar.xz
gsoc2013-evolution-gnomoku-1_2.tar.zst
gsoc2013-evolution-gnomoku-1_2.zip
This commit was manufactured by cvs2svn to create tag 'gnomoku-1_2'.gnomoku-1_2
svn path=/tags/gnomoku-1_2/; revision=11577
Diffstat (limited to 'camel/tests/folder/test2.c')
-rw-r--r--camel/tests/folder/test2.c58
1 files changed, 0 insertions, 58 deletions
diff --git a/camel/tests/folder/test2.c b/camel/tests/folder/test2.c
deleted file mode 100644
index 50a89f89e8..0000000000
--- a/camel/tests/folder/test2.c
+++ /dev/null
@@ -1,58 +0,0 @@
-/* folder testing */
-
-#include <sys/types.h>
-#include <sys/stat.h>
-#include <fcntl.h>
-
-#include "camel-test.h"
-#include "messages.h"
-#include "folders.h"
-#include "session.h"
-
-#include <camel/camel-exception.h>
-#include <camel/camel-service.h>
-#include <camel/camel-store.h>
-
-#include <camel/camel-folder.h>
-#include <camel/camel-folder-summary.h>
-#include <camel/camel-mime-message.h>
-
-#define ARRAY_LEN(x) (sizeof(x)/sizeof(x[0]))
-
-static char *stores[] = {
- "mbox:///tmp/camel-test/mbox",
- "mh:///tmp/camel-test/mh",
- "maildir:///tmp/camel-test/maildir"
-};
-
-int main(int argc, char **argv)
-{
- CamelSession *session;
- CamelException *ex;
- int i;
-
- camel_test_init(argc, argv);
-
- /* clear out any camel-test data */
- system("/bin/rm -rf /tmp/camel-test");
-
- ex = camel_exception_new();
-
- session = camel_test_session_new ("/tmp/camel-test");
-
- /* we iterate over all stores we want to test, with indexing or indexing turned on or off */
- for (i=0;i<ARRAY_LEN(stores);i++) {
- char *name = stores[i];
-
- test_folder_message_ops(session, name, TRUE, FALSE);
- }
-
- /* create a pseudo-spool file, and check that */
- creat("/tmp/camel-test/testbox", 0600);
- test_folder_message_ops(session, "spool:///tmp/camel-test/testbox", FALSE, TRUE);
-
- check_unref(session, 1);
- camel_exception_free(ex);
-
- return 0;
-}