I am having difficulty debugging C ++ x64 unit tests in Visual Studio 2012/13.
My unit test project works great for both Win32 and x64, but when debugging the test, characters are loaded, but the set of breakpoints is skipped completely, and the program never stops, like what happens if you just run the test.
If I create a unit test project for Win32, breakpoints hit and I can debug as usual.
Are there any special settings for debugging unit tests in x64? The properties were copied from the standard Win32 parameters for the project, and all Win32-dependent parameters were deleted. Is this the right idea to set up a unit test project?
Steve source share