aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test10.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test10.c')
-rw-r--r--tests/test10.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/test10.c b/tests/test10.c
index a8835861d6..d8a8090138 100644
--- a/tests/test10.c
+++ b/tests/test10.c
@@ -81,8 +81,12 @@ main (int argc, char**argv)
camel_provider_register_as_module ("../camel/providers/mbox/.libs/libcamelmbox.so");
session = camel_session_new ();
- store = camel_session_get_store (session, store_url);
-
+ store = camel_session_get_store (session, store_url, ex);
+ if (camel_exception_get_id (ex)) {
+ printf ("Exception caught in camel_session_get_store\n"
+ "Full description : %s\n", camel_exception_get_description (ex));
+ return -1;
+ }
folder = camel_store_get_folder (store, "Inbox", ex);
if (camel_exception_get_id (ex)) {