Blame SOURCES/0001-Decrease-the-tested-memory-limits-because-of-failure.patch

2aa065
From f6d7c30415898c73a3b1c207d2acb496f53f67ee Mon Sep 17 00:00:00 2001
2aa065
From: Jakub Filak <jfilak@redhat.com>
2aa065
Date: Thu, 30 Oct 2014 09:36:49 +0100
2aa065
Subject: [PATCH] Decrease the tested memory limits because of failures on arm
2aa065
2aa065
Related to #42
2aa065
---
2aa065
 test/Test.java | 4 ++--
2aa065
 1 file changed, 2 insertions(+), 2 deletions(-)
2aa065
2aa065
diff --git a/test/Test.java b/test/Test.java
2aa065
index cd4acf4..cbbc113 100644
2aa065
--- a/test/Test.java
2aa065
+++ b/test/Test.java
2aa065
@@ -71,8 +71,8 @@ public class Test {
2aa065
         { int[]      intArray1D = new int[DIM_SIZE * DIM_SIZE]; }
2aa065
         /* allocated size = 4096*4096*4 bytes */
2aa065
         { int[][]    intArray2D = new int[DIM_SIZE][DIM_SIZE]; }
2aa065
-        { double[]   doubleArray1D = new double[DIM_SIZE * DIM_SIZE]; }
2aa065
-        { double[][] doubleArray2D = new double[DIM_SIZE][DIM_SIZE]; }
2aa065
+        { double[]   doubleArray1D = new double[DIM_SIZE * (DIM_SIZE/2)]; }
2aa065
+        { double[][] doubleArray2D = new double[DIM_SIZE][DIM_SIZE/2]; }
2aa065
 
2aa065
         // string could be allocated using some base array
2aa065
         { String s = new String(new byte[DIM_SIZE * DIM_SIZE]); }
2aa065
-- 
2aa065
2.1.0
2aa065