Description: Reduce memory usage of test_mex_accuracy
 This patch reduces the size of a test matrix from 1e8 elements to 1e6. This
 prevents FTBFS (due to out of memory) on some mips and mipsel buildds.
Author: Sébastien Villemot <sebastien@debian.org>
Forwarded: no
Last-Update: 2014-03-01
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/test/test_mex_accuracy.m
+++ b/test/test_mex_accuracy.m
@@ -29,7 +29,7 @@
 
 clear
 flag=0;
-N = 1e7;
+N = 1e5;
 x=randn(N,10)+1e6;
 
 level = flag_accuracy_level;         %% backup original level 
