# HG changeset patch # User Doug Simon # Date 1391180809 -3600 # Node ID 7fff0ef86149aa0fcc1c25927811f38eb2d2c7fb # Parent 36226874c1462585b2a0dc9cddc5cbc91bda455c minor fix to test diff -r 36226874c146 -r 7fff0ef86149 graal/com.oracle.graal.compiler.ptx.test/src/com/oracle/graal/compiler/ptx/test/ObjectPTXTest.java --- a/graal/com.oracle.graal.compiler.ptx.test/src/com/oracle/graal/compiler/ptx/test/ObjectPTXTest.java Fri Jan 31 16:06:33 2014 +0100 +++ b/graal/com.oracle.graal.compiler.ptx.test/src/com/oracle/graal/compiler/ptx/test/ObjectPTXTest.java Fri Jan 31 16:06:49 2014 +0100 @@ -134,7 +134,7 @@ @Test public void test7() { - for (double d : new double[]{Double.MIN_VALUE, Double.MIN_NORMAL, Double.NaN, Double.NEGATIVE_INFINITY, Double.POSITIVE_INFINITY - 11.45D, -0.0D, 0.0D, 2, 10, Double.MAX_VALUE}) { + for (double d : new double[]{Double.MIN_VALUE, Double.MIN_NORMAL, Double.NaN, Double.NEGATIVE_INFINITY, Double.POSITIVE_INFINITY, -11.45D, -0.0D, 0.0D, 2, 10, Double.MAX_VALUE}) { A a = new A(); a.d = d; test("testDouble", d * 2, a);