aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/test1.c26
1 files changed, 20 insertions, 6 deletions
diff --git a/tests/test1.c b/tests/test1.c
index c19da0ff7c..90004cfd5c 100644
--- a/tests/test1.c
+++ b/tests/test1.c
@@ -1,14 +1,28 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
#include "camel-mime-message.h"
-
+#include "stdio.h"
void
main (int argc, char**argv)
{
- CamelMimeMessage *message;
+ CamelMimeMessage *message;
+ FILE *output_file;
+
+ gtk_init (&argc, &argv);
+ message = camel_mime_message_new_with_session( (CamelSession *)NULL);
+ camel_mime_part_set_description (CAMEL_MIME_PART (message), g_string_new ("a test"));
+ camel_mime_message_set_received_date (message, g_string_new ("a date"));
- gtk_init (&argc, &argv);
- message = camel_mime_message_new_with_session (CAMEL_SESSION (NULL));
-
- gtk_main();
+ output_file = fopen ("mail.test", "w");
+ if (!output_file) {
+ perror("could not open output file");
+ exit(2);
+ }
+ camel_data_wrapper_write_to_file (CAMEL_DATA_WRAPPER (message), output_file);
+ fclose (output_file);
+
+
+
+ gtk_main();
}
bsd-ports-gnome/commit/japanese/iiimf-le-canna?h=gstreamer0.10-removal&id=52a9ad99d9581d49a45d5e5beba9049037715163'>SHA256ifyedwin2006-01-221-0/+1 * eplace ugly "@unexec rmdir %D... 2>/dev/null || true" with @dirrmtryedwin2006-01-221-1/+1 * Mass-conversion to the USE_AUTOTOOLS New World Order. The code presentade2005-11-151-3/+1 * Bump PORTREVISION to chase the glib20 shared library update.marcus2005-11-051-0/+1 * IIIMF-related ports:daichi2005-05-249-160/+110 * At Kris's request, back out the MACHINE_ARCH spelling correction untilobrien2005-04-121-1/+1 * Assist getting more ports working on AMD64 by obeying theobrien2005-04-111-1/+1 * Fixed iiimf-related ports build faildaichi2005-03-252-7/+23 * IIIMF-related ports some changes:daichi2005-03-048-131/+80 * fixed to build IIIMF-related ports on 4-stabledaichi2005-02-281-0/+1