Revision: 57308
          http://sourceforge.net/p/brlcad/code/57308
Author:   brlcad
Date:     2013-08-30 05:39:56 +0000 (Fri, 30 Aug 2013)
Log Message:
-----------
reduce the iterations 5 fold for now so we don't blow out memory

Modified Paths:
--------------
    brlcad/trunk/src/libbu/tests/bu_heap.c

Modified: brlcad/trunk/src/libbu/tests/bu_heap.c
===================================================================
--- brlcad/trunk/src/libbu/tests/bu_heap.c      2013-08-30 04:38:45 UTC (rev 
57307)
+++ brlcad/trunk/src/libbu/tests/bu_heap.c      2013-08-30 05:39:56 UTC (rev 
57308)
@@ -55,7 +55,7 @@
 
     srand(time(0));
 
-    for (i=0; i<1024*1024*50; i++) {
+    for (i=0; i<1024*1024*10; i++) {
        size_t sz = (((double)rand() / (double)(RAND_MAX-1)) * 
(double)HEAP_BINS) + 1;
        /* bu_log("allocating %d: %zd\n", i, sz); */
 #ifdef USE_MALLOC

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
Discover the easy way to master current and previous Microsoft technologies
and advance your career. Get an incredible 1,500+ hours of step-by-step
tutorial videos with LearnDevNow. Subscribe today and save!
http://pubads.g.doubleclick.net/gampad/clk?id=58040911&iu=/4140/ostg.clktrk
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to