I want to perform a trace of the executions of Nmap with two different sets of command arguments and diff the results so that I can see why different paths are taken through the code.
On my Win32 XP SP3 box, the two commands nmap -F -v -d -n <target_host> and nmap -F -v -v -d -n <target_host> should take almost the same path through the code (excepting the handling of the extra -v arg), but they do not. I found that there was some issue with a call to getAdapterAddresses returning ERROR_INVALID_PARAMETER which resulted in nmap quitting with an error message which differed with slightly different arguments. I've submitted a patch which seems to solve the getAdapterAddresses issue, but now I want to find-out why the app exited at different places (see this nmap-dev mailing-list post, and its follow-ups for more background).
The project is set-up for Visual Studio Express 2010 VC++ and I'm looking for a way to trace execution on the aforementioned windows box and then diff the results.
What tools should I be hunting for?