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

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