vote up 2 vote down star
2

Our QA team wants to focus their testing based on what EXEs and DLLs have actually changed between builds. We have a nice svn change report, but the relationship between source and changed binaries isn't always obvious. The builds we're comparing are always full clean builds, so we can't use file system timestamps. I'm looking for tools to compare windows (and windows CE) PE binaries that will ignore the embedded timestamps and other cruft. Any recommendations for tools or other ways to generate a reliable 'what binaries have really changed' report? Thanks.

clarification: Thanks for the answers so far, but we can't generate the report by doing straightforward byte-for-byte compares or comparing checksums, because all the files appear different every time we build, even if the sources haven't changed, because of timestamps that the compiler inserts. The problem is how to ignore the false positives. The disassemble & compare idea is closest to what we need, I think...

answered! Bindiff is just what I was looking for. Many thanks.

flag
Interesting technical problem, but what makes the 'EXEs/DLLs changed' list more relevant than 'source files changed' list? – orip Dec 6 '08 at 8:53
Here's the scenario: svn says ObscureLib.c changed since the last build. Should I rerun my test suite for foo.exe? – Pete Richardson Dec 7 '08 at 1:26

8 Answers

vote up 2 vote down check

Have you had a look at Bindiff?

link|flag
vote up 0 vote down

Look at NDepend.

link|flag
vote up 2 vote down

I ran into this problem before. My solution was to write a tool which set all the timestamps in an .EXE/.DLL to a known value. I would run it as a post-build step. Then binary diffs would work just fine.

link|flag
vote up 0 vote down

gnu binutils specifically strings

link|flag
vote up 1 vote down

Not sure what kind of binaries (DLLs? PE/WinCE executables only? Other?)Is it possible to embed version information in the binaries, e.g. using a source control tag that updates the version in the source code on commits. Then when the new build is created, the binary would have it's version string updated as well. Instead of having to diff a binary file, you could use the version string and check that for changes.

link|flag
we considered version numbers. Automatically updating the version numbers still requires mapping source changes to binaries (which is hard). Manually updating the version numbers is too error-prone. (i.e. I don't trust the devs to do it reliably. :-)) – Pete Richardson Dec 7 '08 at 1:31
vote up 0 vote down

Project dependency graph generator and Dependency-Grapher for C++-Projects both use GraphViz to visualize dependencies. I imagine that you could use either of them as a basis for your needs with special highlighting of the branches in the dependency graph where source files or other leaves have changed.

MD5 hashes or checksums (as suggested above), a simple diff ignoring whitespace and filtering out comment changes, or changlist information from your version control system can signal which files have changed.

link|flag
vote up 0 vote down

When I was working on the "home grown" tool for installation verification at my company, we used Beyond Compare as a backend for comparison.

It has great file/folder comparison (binary as well) and scripting capabilities and can output XML reports.

link|flag
vote up 1 vote down

You could perhaps disassemble the binary, and then do a diff on the assembly...

This sounds like your QA team is taking the wrong approach though... It shouldn't matter to them what the code looks like; just that it does what it's supposed to do.

Edit: Oh! After reading it again, I realized that I misinterpreted your question. I thought they wanted to test the methods that had changed...

In that case, why not get the MD5 hash and compare those? The tiniest change will cause a totally different hash to be generated.

link|flag
well yes, but I think the QA team only want to spend time testing the binaries which have changed, hence the need for a diff tool – nickf Dec 6 '08 at 3:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.