Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Decrease the tested memory limits because of failures on arm
Related to #42
  • Loading branch information
Jakub Filak committed Oct 30, 2014
1 parent 416db94 commit f6d7c30
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/Test.java
Expand Up @@ -71,8 +71,8 @@ public static void allocateMemory() {
{ int[] intArray1D = new int[DIM_SIZE * DIM_SIZE]; }
/* allocated size = 4096*4096*4 bytes */
{ int[][] intArray2D = new int[DIM_SIZE][DIM_SIZE]; }
{ double[] doubleArray1D = new double[DIM_SIZE * DIM_SIZE]; }
{ double[][] doubleArray2D = new double[DIM_SIZE][DIM_SIZE]; }
{ double[] doubleArray1D = new double[DIM_SIZE * (DIM_SIZE/2)]; }
{ double[][] doubleArray2D = new double[DIM_SIZE][DIM_SIZE/2]; }

// string could be allocated using some base array
{ String s = new String(new byte[DIM_SIZE * DIM_SIZE]); }
Expand Down

0 comments on commit f6d7c30

Please sign in to comment.