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

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