comparison graal/com.oracle.graal.jtt/src/com/oracle/graal/jtt/optimize/Narrow_char03.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
comparison
equal deleted inserted replaced
7281:e960cda050d7 7282:390448a6b535
20 * or visit www.oracle.com if you need additional information or have any 20 * or visit www.oracle.com if you need additional information or have any
21 * questions. 21 * questions.
22 */ 22 */
23 package com.oracle.graal.jtt.optimize; 23 package com.oracle.graal.jtt.optimize;
24 24
25 import com.oracle.graal.jtt.*;
25 import org.junit.*; 26 import org.junit.*;
26 27
27 /* 28 /*
28 */ 29 */
29 public class Narrow_char03 { 30 public class Narrow_char03 extends JTTTest {
30 31
31 static char[] val = new char[4]; 32 static char[] val = new char[4];
32 33
33 public static char test(char b) { 34 public static char test(char b) {
34 val[0] = b; 35 val[0] = b;
35 return val[0]; 36 return val[0];
36 } 37 }
37 38
38 @Test 39 @Test
39 public void run0() throws Throwable { 40 public void run0() throws Throwable {
40 Assert.assertEquals(((char) 0), test(((char) 0))); 41 runTest("test", ((char) 0));
41 } 42 }
42 43
43 @Test 44 @Test
44 public void run1() throws Throwable { 45 public void run1() throws Throwable {
45 Assert.assertEquals(((char) 1), test(((char) 1))); 46 runTest("test", ((char) 1));
46 } 47 }
47 48
48 @Test 49 @Test
49 public void run2() throws Throwable { 50 public void run2() throws Throwable {
50 Assert.assertEquals(((char) 255), test(((char) 255))); 51 runTest("test", ((char) 255));
51 } 52 }
52 53
53 @Test 54 @Test
54 public void run3() throws Throwable { 55 public void run3() throws Throwable {
55 Assert.assertEquals(((char) 65000), test(((char) 65000))); 56 runTest("test", ((char) 65000));
56 } 57 }
57 58
58 } 59 }