Math.pow yields different results upon repeated calls
After upgrading to Java 1.8.0_20 our test system reported errors, but the code was not changed. I found out, that Math.pow() called with exactly the same input parameters yields different results upon repreated calls. In Java 1.8.0_11 it behaves as expected and returns always the same value, but with Java 1.8.0_20 and above it sometimes returns slightly different values. This is similar to the question Math.pow yields different result depending on java version , but different because the results of pow() differ within one VM. The following JUint test fails when run under Java 1.8.0_20 and