More to the point, the yaml-reader program doesn't do any file IO, so it doesn't require a specific working directory.
12 lines
179 B
C++
12 lines
179 B
C++
#include "tests.h"
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
#ifdef WINDOWS
|
|
_CrtSetDbgFlag(_CRTDBG_LEAK_CHECK_DF|_CRTDBG_ALLOC_MEM_DF);
|
|
#endif // WINDOWS
|
|
Test::RunAll();
|
|
|
|
return 0;
|
|
}
|