# HG changeset patch # User Stefan Anzinger # Date 1404920883 25200 # Node ID 587ff693e666da8ed0a7e1750c3d23ecadbe7535 # Parent 2d01fb8f8acb4d6f047711d2607a76c860a2ee10 [SPARC] Fixing SPARCAllocatorTest diff -r 2d01fb8f8acb -r 587ff693e666 graal/com.oracle.graal.compiler.sparc.test/src/com/oracle/graal/compiler/sparc/test/SPARCAllocatorTest.java --- 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) {