tor/src/common/test.h

128 lines
5.9 KiB
C
Raw Normal View History

2003-12-13 23:53:17 +01:00
/* Copyright 2001,2002,2003 Roger Dingledine. */
2003-04-07 15:25:44 +02:00
/* See LICENSE for licensing information */
/* $Id$ */
#ifndef __TEST_H
#define __TEST_H
#include <string.h>
#define STMT_BEGIN do {
#define STMT_END } while (0)
#ifdef __GNUC__
#define PRETTY_FUNCTION __PRETTY_FUNCTION__
#else
#define PRETTY_FUNCTION ""
#endif
2003-04-07 15:25:44 +02:00
#define test_fail() \
STMT_BEGIN \
2003-04-07 15:25:44 +02:00
printf("\nFile %s: line %d (%s): assertion failed.", \
__FILE__, \
__LINE__, \
PRETTY_FUNCTION); \
2003-04-07 15:25:44 +02:00
return; \
STMT_END
2003-04-07 15:25:44 +02:00
#define test_assert(expr) \
STMT_BEGIN \
2003-04-07 15:25:44 +02:00
if(expr) { printf("."); } else { \
printf("\nFile %s: line %d (%s): assertion failed: (%s)\n", \
__FILE__, \
__LINE__, \
PRETTY_FUNCTION, \
2003-04-07 15:25:44 +02:00
#expr); \
return; \
} STMT_END
2003-04-07 15:25:44 +02:00
#define test_eq(expr1, expr2) \
STMT_BEGIN \
long v1=(long)(expr1), v2=(long)(expr2); \
if(v1==v2) { printf("."); } else { \
2003-04-07 15:25:44 +02:00
printf("\nFile %s: line %d (%s): Assertion failed: (%s==%s)\n"\
" (%ld != %ld)\n", \
__FILE__, \
__LINE__, \
PRETTY_FUNCTION, \
2003-04-07 15:25:44 +02:00
#expr1, #expr2, \
v1, v2); \
2003-04-07 15:25:44 +02:00
return; \
} STMT_END
2003-04-07 15:25:44 +02:00
#define test_neq(expr1, expr2) \
STMT_BEGIN \
long v1=(long)(expr1), v2=(long)(expr2); \
if(v1!=v2) { printf("."); } else { \
2003-04-07 15:25:44 +02:00
printf("\nFile %s: line %d (%s): Assertion failed: (%s!=%s)\n"\
" (%ld == %ld)\n", \
__FILE__, \
__LINE__, \
PRETTY_FUNCTION, \
2003-04-07 15:25:44 +02:00
#expr1, #expr2, \
v1, v2); \
2003-04-07 15:25:44 +02:00
return; \
} STMT_END
2003-04-07 15:25:44 +02:00
#define test_streq(expr1, expr2) \
STMT_BEGIN \
char *v1=(expr1), *v2=(expr2); \
if(!strcmp(v1,v2)) { printf("."); } else { \
2003-04-07 15:25:44 +02:00
printf("\nFile %s: line %d (%s): Assertion failed: (%s==%s)\n"\
" (\"%s\" != \"%s\")\n", \
2003-04-07 15:25:44 +02:00
__FILE__, \
__LINE__, \
PRETTY_FUNCTION, \
2003-04-07 15:25:44 +02:00
#expr1, #expr2, \
v1, v2); \
2003-04-07 15:25:44 +02:00
return; \
} STMT_END
2003-04-07 15:25:44 +02:00
#define test_strneq(expr1, expr2) \
STMT_BEGIN \
char *v1=(expr1), *v2=(expr2); \
if(strcmp(v1,v2)) { printf("."); } else { \
2003-04-07 15:25:44 +02:00
printf("\nFile %s: line %d (%s): Assertion failed: (%s!=%s)\n"\
" (\"%s\" == \"%s\")\n", \
2003-04-07 15:25:44 +02:00
__FILE__, \
__LINE__, \
PRETTY_FUNCTION, \
2003-04-07 15:25:44 +02:00
#expr1, #expr2, \
v1, v2); \
2003-04-07 15:25:44 +02:00
return; \
} STMT_END
#define test_memeq(expr1, expr2, len) \
STMT_BEGIN \
void *v1=(expr1), *v2=(expr2); \
if(!memcmp(v1,v2,(len))) { printf("."); } else { \
printf("\nFile %s: line %d (%s): Assertion failed: (%s==%s)\n", \
__FILE__, \
__LINE__, \
PRETTY_FUNCTION, \
#expr1, #expr2); \
return; \
} STMT_END
2003-04-07 15:25:44 +02:00
#define test_memneq(expr1, expr2, len) \
STMT_BEGIN \
void *v1=(expr1), *v2=(expr2); \
if(memcmp(v1,v2,(len))) { printf("."); } else { \
printf("\nFile %s: line %d (%s): Assertion failed: (%s!=%s)\n", \
__FILE__, \
__LINE__, \
PRETTY_FUNCTION, \
#expr1, #expr2); \
return; \
} STMT_END
2003-04-07 15:25:44 +02:00
#endif
/*
Local Variables:
mode:c
indent-tabs-mode:nil
c-basic-offset:2
End:
*/