I'm trying to debug CPPUnitTests, and breakpoints are set in files that are part of the tested DLL (unmanaged C ++ DLL version).
I connected the CPPunit tester process to the IDE of the visual studio, where the project is open, in its own mode (I also tried managed + my own), and then ran the tests, but the breakpoints DO NOT hit at all.
Breakpoints look fine (FULL RED DOT). I built all the necessary DLLs in Debug Build.
I went to Debug-> Windows-> Modules to check if the DLL tester process was loading, what I was debugging, and he did it, and the SYmbol file was also loaded, but there was an exclamation mark in the DLL name and it said "module is not loaded at the default download address "when I hovered over it.
How can i fix this? I need to debug cppunit tests.
source
share