2008-09-03 22:20:39 +00:00
|
|
|
#include "tests.h"
|
|
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
|
{
|
|
|
|
|
#ifdef WINDOWS
|
|
|
|
|
_CrtSetDbgFlag(_CRTDBG_LEAK_CHECK_DF|_CRTDBG_ALLOC_MEM_DF);
|
|
|
|
|
#endif // WINDOWS
|
2009-05-31 06:36:01 +00:00
|
|
|
Test::RunAll();
|
2008-09-03 22:20:39 +00:00
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|