pykd/test/targetapp/targetapp.cpp
SND\air_max_cp 089684dca7 [test] scripts cleanup and improvement.
git-svn-id: https://pykd.svn.codeplex.com/svn@68996 9b283d60-5439-405e-af05-b73fd8c4d996
2011-08-14 17:52:03 +00:00

29 lines
453 B
C++

#include "stdafx.h"
#include <intrin.h>
#include <iostream>
#include "utils.h"
int _tmain(int argc, _TCHAR* argv[])
{
try
{
// Let test scripts to execute
__debugbreak();
}
catch(std::exception & ex)
{
std::cout << ex.what() << std::endl;
return 1;
}
catch (...)
{
std::cout << "Unknown error" << std::endl;
return 1;
}
return 0;
}