From 99e80d6ecf06cc60f2734f87bc974bd9479ba139 Mon Sep 17 00:00:00 2001 From: Not Zed Date: Fri, 24 Nov 2000 03:18:20 +0000 Subject: Add tests. 2000-11-24 Not Zed * Makefile.am (SUBDIRS): Add tests. * camel-mime-filter-basic.c (filter): Well, I'll add the extra bytes here too, lathough not strictly needed, might save a re-malloc when we get to complete(). * camel-mime-filter-charset.c (filter): Make sure we have room if we only convert very short data. (complete): and here too. * tests/Makefile.am: Initial test harness & tests. Requires gcc for this. * camel-internet-address.c (d): Turn off debug. * camel-charset-map.c (camel_charset_step): Oops, & masks for set intersection, not | them. Dunno how this got even close to working. 2000-11-23 Not Zed * camel-mime-filter-basic.c (filter): For base64 encoding, the output size for 0, 1, or 2 bytes of input can exceed input*2, so make sure we account for that as well. (complete): And here. (complete): Similarly for qp encoding, if we have a trailing space, we need some extra bytes (not needed for 'filter()', as any such bytes are stored in state/save). * camel-mime-utils.c (quoted_decode_step): Removed fixme not required. (quoted_encode_close): Dont append a trailing afterall. Otherwise a pass through the encode/decode will grow the message each time. svn path=/trunk/; revision=6656 --- camel/ChangeLog | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) (limited to 'camel/ChangeLog') diff --git a/camel/ChangeLog b/camel/ChangeLog index e80ff42226..6e8fb27fd8 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,38 @@ +2000-11-24 Not Zed + + * Makefile.am (SUBDIRS): Add tests. + + * camel-mime-filter-basic.c (filter): Well, I'll add the extra + bytes here too, lathough not strictly needed, might save a + re-malloc when we get to complete(). + + * camel-mime-filter-charset.c (filter): Make sure we have room if + we only convert very short data. + (complete): and here too. + + * tests/Makefile.am: Initial test harness & tests. Requires gcc + for this. + + * camel-internet-address.c (d): Turn off debug. + + * camel-charset-map.c (camel_charset_step): Oops, & masks for set + intersection, not | them. Dunno how this got even close to + working. + +2000-11-23 Not Zed + + * camel-mime-filter-basic.c (filter): For base64 encoding, the + output size for 0, 1, or 2 bytes of input can exceed input*2, so + make sure we account for that as well. + (complete): And here. + (complete): Similarly for qp encoding, if we have a trailing + space, we need some extra bytes (not needed for 'filter()', as any + such bytes are stored in state/save). + + * camel-mime-utils.c (quoted_decode_step): Removed fixme not required. + (quoted_encode_close): Dont append a trailing afterall. Otherwise + a pass through the encode/decode will grow the message each time. + 2000-11-22 Radek Doulik * camel-mime-utils.c (header_msgid_generate): check for return -- cgit