server/tests: test_util.h: fix double ASSERT definition

This commit is contained in:
Alon Levy 2011-07-19 11:08:16 +03:00
parent a3cde2d971
commit 0378df6254

View File

@ -4,6 +4,9 @@
#define TRUE 1
#define FALSE 0
#ifdef ASSERT
#undef ASSERT
#endif
#define ASSERT(x) if (!(x)) { \
printf("%s: ASSERT %s failed\n", __FUNCTION__, #x); \
abort(); \