changeset 16516:587ff693e666

[SPARC] Fixing SPARCAllocatorTest
author Stefan Anzinger <stefan.anzinger@gmail.com>
date Wed, 09 Jul 2014 08:48:03 -0700
parents 2d01fb8f8acb
children cb70055faeeb
files graal/com.oracle.graal.compiler.sparc.test/src/com/oracle/graal/compiler/sparc/test/SPARCAllocatorTest.java
diffstat 1 files changed, 3 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.compiler.sparc.test/src/com/oracle/graal/compiler/sparc/test/SPARCAllocatorTest.java	Wed Jul 09 10:42:34 2014 +0200
+++ b/graal/com.oracle.graal.compiler.sparc.test/src/com/oracle/graal/compiler/sparc/test/SPARCAllocatorTest.java	Wed Jul 09 08:48:03 2014 -0700
@@ -30,7 +30,7 @@
 
     @Test
     public void test1() {
-        test("test1snippet", 3, 1, 0);
+        test("test1snippet", 1, 0, 0);
     }
 
     public static long test1snippet(long x) {
@@ -39,17 +39,16 @@
 
     @Test
     public void test2() {
-        test("test2snippet", 3, 0, 0);
+        test("test2snippet", 1, 0, 0);
     }
 
     public static long test2snippet(long x) {
         return x * 5;
     }
 
-    @Ignore
     @Test
     public void test3() {
-        test("test3snippet", 4, 1, 0);
+        test("test3snippet", 4, 0, 0);
     }
 
     public static long test3snippet(long x) {