comparison graal/com.oracle.graal.jtt/src/com/oracle/graal/jtt/optimize/Reduce_Double01.java @ 7288:0320e6278f84

JTT: Replace "runTestWithDelta(0, " with "runTest("
author Gilles Duboscq <duboscq@ssw.jku.at>
date Thu, 20 Dec 2012 17:09:53 +0100
parents 390448a6b535
children 64dcb92ee75a
comparison
equal deleted inserted replaced
7287:76c9023ed438 7288:0320e6278f84
62 return x / 1; 62 return x / 1;
63 } 63 }
64 64
65 @Test 65 @Test
66 public void run0() throws Throwable { 66 public void run0() throws Throwable {
67 runTestWithDelta(0, "test", 0d); 67 runTest("test", 0d);
68 } 68 }
69 69
70 @Test 70 @Test
71 public void run1() throws Throwable { 71 public void run1() throws Throwable {
72 runTestWithDelta(0, "test", 1d); 72 runTest("test", 1d);
73 } 73 }
74 74
75 @Test 75 @Test
76 public void run2() throws Throwable { 76 public void run2() throws Throwable {
77 runTestWithDelta(0, "test", 2d); 77 runTest("test", 2d);
78 } 78 }
79 79
80 @Test 80 @Test
81 public void run3() throws Throwable { 81 public void run3() throws Throwable {
82 runTestWithDelta(0, "test", 3d); 82 runTest("test", 3d);
83 } 83 }
84 84
85 } 85 }