diff graal/com.oracle.graal.jtt/src/com/oracle/graal/jtt/bytecode/BC_fadd.java @ 7282:390448a6b535

converted the JTT tests to use the GraalCompilerTest framework which offers more control over what is compiled and executed the HP_series and FloatingReads tests have been disabled temporarily
author Doug Simon <doug.simon@oracle.com>
date Thu, 20 Dec 2012 14:59:57 +0100
parents e808627bd16f
children 0320e6278f84
line wrap: on
line diff
--- a/graal/com.oracle.graal.jtt/src/com/oracle/graal/jtt/bytecode/BC_fadd.java	Thu Dec 20 13:14:56 2012 +0100
+++ b/graal/com.oracle.graal.jtt/src/com/oracle/graal/jtt/bytecode/BC_fadd.java	Thu Dec 20 14:59:57 2012 +0100
@@ -22,11 +22,12 @@
  */
 package com.oracle.graal.jtt.bytecode;
 
+import com.oracle.graal.jtt.*;
 import org.junit.*;
 
 /*
  */
-public class BC_fadd {
+public class BC_fadd extends JTTTest {
 
     public static float test(float a, float b) {
         return a + b;
@@ -34,17 +35,17 @@
 
     @Test
     public void run0() throws Throwable {
-        Assert.assertEquals(0.0f, test(0.0f, 0.0f), 0);
+        runTestWithDelta(0, "test", 0.0f, 0.0f);
     }
 
     @Test
     public void run1() throws Throwable {
-        Assert.assertEquals(2.0f, test(1.0f, 1.0f), 0);
+        runTestWithDelta(0, "test", 1.0f, 1.0f);
     }
 
     @Test
     public void run2() throws Throwable {
-        Assert.assertEquals(307.54f, test(253.11f, 54.43f), 0);
+        runTestWithDelta(0, "test", 253.11f, 54.43f);
     }
 
 }