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

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