Change line no format so that emacs can detect it.
authorNot Zed <NotZed@HelixCode.com>
Thu, 7 Dec 2000 22:28:59 +0000 (22:28 +0000)
committerMichael Zucci <zucchi@src.gnome.org>
Thu, 7 Dec 2000 22:28:59 +0000 (22:28 +0000)
2000-12-06  Not Zed  <NotZed@HelixCode.com>

        * tests/lib/camel-test.h (check): Change line no format so that
        emacs can detect it.

camel/ChangeLog
camel/tests/lib/camel-test.h
camel/tests/message/Makefile.am
camel/tests/message/README

index 3d6ed12..e6b5985 100644 (file)
@@ -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
index 6ff8281..986a943 100644 (file)
@@ -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, ...)
 {
index 2656a00..aa430fa 100644 (file)
@@ -14,9 +14,10 @@ LDADD = \
 
 check_PROGRAMS =       \
        test1           \
-       test2
+       test2           \
+       test3
 
-TESTS = test1 test2
+TESTS = test1 test2 test3
 
 
 
index 51e519c..280344c 100644 (file)
@@ -1,3 +1,5 @@
 
 test1  creating, saving, loading simple messages
 test2  camelinternetaddress tests, internationalised addresses, etc.
+test3  multipart messages
+