diff options
author | nobody <nobody@localhost> | 2001-10-25 06:17:05 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 2001-10-25 06:17:05 +0800 |
commit | d926a5044cc190b0e6f3b53d7be13096a79990c8 (patch) | |
tree | 75a31cb1cb19b4266322f9427b0641c1b53aca24 /camel/tests/folder/test2.c | |
parent | dcc99c020b6a58e174091b32585159edfae18dd4 (diff) | |
download | gsoc2013-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/test2.c')
-rw-r--r-- | camel/tests/folder/test2.c | 58 |
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; -} |