aboutsummaryrefslogtreecommitdiffstats
path: root/camel/tests/lib/camel-test.h
diff options
context:
space:
mode:
authorNot Zed <NotZed@HelixCode.com>2000-12-08 06:28:59 +0800
committerMichael Zucci <zucchi@src.gnome.org>2000-12-08 06:28:59 +0800
commita791b442b56b3b807362eb711469c06b513a5f21 (patch)
tree0fa4d57ef14248bb708f296188f06b7de643025b /camel/tests/lib/camel-test.h
parent92708e6f44956ebcb0dc616922f8ec844c6027cc (diff)
downloadgsoc2013-evolution-a791b442b56b3b807362eb711469c06b513a5f21.tar
gsoc2013-evolution-a791b442b56b3b807362eb711469c06b513a5f21.tar.gz
gsoc2013-evolution-a791b442b56b3b807362eb711469c06b513a5f21.tar.bz2
gsoc2013-evolution-a791b442b56b3b807362eb711469c06b513a5f21.tar.lz
gsoc2013-evolution-a791b442b56b3b807362eb711469c06b513a5f21.tar.xz
gsoc2013-evolution-a791b442b56b3b807362eb711469c06b513a5f21.tar.zst
gsoc2013-evolution-a791b442b56b3b807362eb711469c06b513a5f21.zip
Change line no format so that emacs can detect it.
2000-12-06 Not Zed <NotZed@HelixCode.com> * tests/lib/camel-test.h (check): Change line no format so that emacs can detect it. svn path=/trunk/; revision=6848
Diffstat (limited to 'camel/tests/lib/camel-test.h')
-rw-r--r--camel/tests/lib/camel-test.h4
1 files changed, 2 insertions, 2 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, ...)
{