yaml-cpp/yaml-reader/main.cpp

12 lines
158 B
C++
Raw Normal View History

2009-10-27 17:45:14 +03:00
#include "tests.h"
int main()
{
#ifdef WINDOWS
_CrtSetDbgFlag(_CRTDBG_LEAK_CHECK_DF|_CRTDBG_ALLOC_MEM_DF);
#endif // WINDOWS
Test::RunAll();
return 0;
}