There is a complex piece of code that does many complex mathematical operations.
When it is built and tested by maven on jdk 1.7 it passes all the tests. When using jdk 1.8 it fails.
Trying to find the spot where the calculations go wrong in a debugger seems almost hopeless.
What are my options? Is there a tool that can scan for incompatibilities between jdk 1.7 and 1.8 in my code?
Is my best option to run the code in two separate debuggers and see where the difference would be?
EDIT:
@Philipp Claßen That is the most likely cause so far. I was hoping there would be an automated way of checking for this.
@dkatzel The code was not written by me, poorly commented and does scientific calculations that are "woodo" to me.
@Mike Samuel I see no benefit of this approach over running two debuggers in parallel.
Thank you all for helping. Seems that two debuggers is the best way to go.
EDIT 2 The author of the original code was relying on hash map ordering. That was the problem.
Add logging statements to log every intermediate result. You can use something like
Then run it once under Java 7, once under Java 8, and diff the results.