diff graal/com.oracle.graal.jtt/src/com/oracle/graal/jtt/bytecode/BC_lor.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 64dcb92ee75a
line wrap: on
line diff
--- a/graal/com.oracle.graal.jtt/src/com/oracle/graal/jtt/bytecode/BC_lor.java	Thu Dec 20 13:14:56 2012 +0100
+++ b/graal/com.oracle.graal.jtt/src/com/oracle/graal/jtt/bytecode/BC_lor.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_lor {
+public class BC_lor extends JTTTest {
 
     public static long test(long a, long b) {
         return a | b;
@@ -34,27 +35,27 @@
 
     @Test
     public void run0() throws Throwable {
-        Assert.assertEquals(3L, test(1L, 2L));
+        runTest("test", 1L, 2L);
     }
 
     @Test
     public void run1() throws Throwable {
-        Assert.assertEquals(-1L, test(0L, -1L));
+        runTest("test", 0L, -1L);
     }
 
     @Test
     public void run2() throws Throwable {
-        Assert.assertEquals(63L, test(31L, 63L));
+        runTest("test", 31L, 63L);
     }
 
     @Test
     public void run3() throws Throwable {
-        Assert.assertEquals(6L, test(6L, 4L));
+        runTest("test", 6L, 4L);
     }
 
     @Test
     public void run4() throws Throwable {
-        Assert.assertEquals(-2147483647L, test(-2147483648L, 1L));
+        runTest("test", -2147483648L, 1L);
     }
 
 }