diff options
-rw-r--r-- | camel/ChangeLog | 5 | ||||
-rw-r--r-- | camel/tests/lib/camel-test.h | 4 | ||||
-rw-r--r-- | camel/tests/message/Makefile.am | 5 | ||||
-rw-r--r-- | camel/tests/message/README | 2 |
4 files changed, 12 insertions, 4 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index 3d6ed1274e..e6b598579f 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,8 @@ +2000-12-06 Not Zed <NotZed@HelixCode.com> + + * tests/lib/camel-test.h (check): Change line no format so that + emacs can detect it. + 2000-12-06 Jeffrey Stedfast <fejj@helixcode.com> * providers/imap/camel-imap-folder.c (imap_refresh_info): We want diff --git a/camel/tests/lib/camel-test.h b/camel/tests/lib/camel-test.h index 6ff8281aeb..986a943fa3 100644 --- a/camel/tests/lib/camel-test.h +++ b/camel/tests/lib/camel-test.h @@ -9,10 +9,10 @@ void camel_test_failv(const char *why, va_list ap); /* perform a check assertion */ -#define check(x) do {if (!(x)) { camel_test_fail("%s (%d): %s", __FILE__, __LINE__, #x); } } while (0) +#define check(x) do {if (!(x)) { camel_test_fail("%s:%d: %s", __FILE__, __LINE__, #x); } } while (0) /* check with message */ #ifdef __GNUC__ -#define check_msg(x, y, z...) do {if (!(x)) { camel_test_fail("%s (%d): %s\n\t" #y, __FILE__, __LINE__, #x, ##z); } } while (0) +#define check_msg(x, y, z...) do {if (!(x)) { camel_test_fail("%s:%d: %s\n\t" #y, __FILE__, __LINE__, #x, ##z); } } while (0) #else static void check_msg(int truth, char *fmt, ...) { diff --git a/camel/tests/message/Makefile.am b/camel/tests/message/Makefile.am index 2656a007d9..aa430fa409 100644 --- a/camel/tests/message/Makefile.am +++ b/camel/tests/message/Makefile.am @@ -14,9 +14,10 @@ LDADD = \ check_PROGRAMS = \ test1 \ - test2 + test2 \ + test3 -TESTS = test1 test2 +TESTS = test1 test2 test3 diff --git a/camel/tests/message/README b/camel/tests/message/README index 51e519cb5c..280344ce9b 100644 --- a/camel/tests/message/README +++ b/camel/tests/message/README @@ -1,3 +1,5 @@ test1 creating, saving, loading simple messages test2 camelinternetaddress tests, internationalised addresses, etc. +test3 multipart messages + |