yapf/unittest/unittest.h
author truelight
Sat, 19 Aug 2006 19:45:04 +0000
changeset 4308 391dcafb34e5
parent 3971 77061ae9b534
permissions -rw-r--r--
(svn r5955) -Fix r5728: 2 very important lines for ShowQueryString where removed by excident.
Because of this you couldn't join servers with passwords, and more of those
problems. (tnx Mucht)
/* $Id$ */

#define UNITTEST

extern int num_tests_failed;
extern int num_tests_total;

extern bool _dbg;
#define DBG if(_dbg) printf


#define CHECK_INT(case_num, val, should_be) \
{ \
	if((val) != (should_be)) { \
	res |= (1 << case_num); \
	printf("\n****** ERROR in case %d: " #val " = %d (should be %d)!", case_num, (val), (should_be)); \
	} \
}

typedef int(*TESTPROC)(bool silent);

//#undef FORCEINLINE
//#define FORCEINLINE


#if defined(_WIN32) || defined(_WIN64)
#  include <windows.h>
#else
#endif