diff options
Diffstat (limited to 'camel/tests')
-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 |
3 files changed, 7 insertions, 4 deletions
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 + |