diff options
Diffstat (limited to 'camel/tests/lib')
-rw-r--r-- | camel/tests/lib/camel-test.h | 4 |
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, ...) { |