diff options
author | Dan Winship <danw@src.gnome.org> | 2001-05-28 03:52:07 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2001-05-28 03:52:07 +0800 |
commit | 618ce2988e65058388fb9581ea427f11399de5a2 (patch) | |
tree | c534cbdbb1f55b81b2705839d37c8cb8b0b86b95 /camel/tests/lib/folders.c | |
parent | 8b06ce05ebb8d110542eb21cdafa039c0ae03c4b (diff) | |
download | gsoc2013-evolution-618ce2988e65058388fb9581ea427f11399de5a2.tar gsoc2013-evolution-618ce2988e65058388fb9581ea427f11399de5a2.tar.gz gsoc2013-evolution-618ce2988e65058388fb9581ea427f11399de5a2.tar.bz2 gsoc2013-evolution-618ce2988e65058388fb9581ea427f11399de5a2.tar.lz gsoc2013-evolution-618ce2988e65058388fb9581ea427f11399de5a2.tar.xz gsoc2013-evolution-618ce2988e65058388fb9581ea427f11399de5a2.tar.zst gsoc2013-evolution-618ce2988e65058388fb9581ea427f11399de5a2.zip |
Fix an fd leak
* tests/lib/messages.c (test_message_read_file): Fix an fd leak
* tests/lib/session.c, tests/lib/session.h: a CamelSession
subclass for the test programs.
* tests/lib/Makefile.am: include session.[ch]
* tests/folder/test*.c: Use a CamelTestSession from libcameltest
instead of cut+pasting everywhere.
* tests/misc/url.c (main): Update for a camel_url_new change at
some point.
* tests/*/.cvsignore: Add stuff.
* camel-mime-utils.c (rfc2047_encode_word): Fix a silly ==/!=
mixup.
svn path=/trunk/; revision=10023
Diffstat (limited to 'camel/tests/lib/folders.c')
-rw-r--r-- | camel/tests/lib/folders.c | 28 |
1 files changed, 7 insertions, 21 deletions
diff --git a/camel/tests/lib/folders.c b/camel/tests/lib/folders.c index ba02001bcc..31d242070d 100644 --- a/camel/tests/lib/folders.c +++ b/camel/tests/lib/folders.c @@ -193,7 +193,7 @@ test_folder_basic(CamelSession *session, const char *storename, int local) { CamelStore *store; CamelException *ex = camel_exception_new(); - CamelFolder *folder, *root; + CamelFolder *folder; char *what = g_strdup_printf("testing store: %s", storename); camel_test_start(what); @@ -205,31 +205,17 @@ test_folder_basic(CamelSession *session, const char *storename, int local) check(store != NULL); pull(); - /* local providers == no root folder */ - push("getting root folder"); - root = camel_store_get_root_folder(store, ex); + /* local providers == no inbox */ + push("getting inbox folder"); + folder = camel_store_get_inbox(store, ex); if (local) { check(camel_exception_is_set(ex)); - check(root == NULL); + check(folder == NULL); camel_exception_clear(ex); } else { check_msg(!camel_exception_is_set(ex), "%s", camel_exception_get_description(ex)); - check(root != NULL); - check_unref(root, 1); - } - pull(); - - /* same for default folder */ - push("getting default folder"); - root = camel_store_get_root_folder(store, ex); - if (local) { - check(camel_exception_is_set(ex)); - check(root == NULL); - camel_exception_clear(ex); - } else { - check_msg(!camel_exception_is_set(ex), "%s", camel_exception_get_description(ex)); - check(root != NULL); - check_unref(root, 1); + check(folder != NULL); + check_unref(folder, 1); } pull(); |