Revision: 09196b467d59
Author: marinier
Date: Tue Jul 26 08:13:18 2011
Log: Suggest garbage collection after all tests have finished running.
Shou...
http://code.google.com/p/jsoar/source/detail?r=09196b467d59
Revision: 234859c0f568
Author: marinier
Date: Tue Jul 26 08:19:18 2011
Log: Merge with a69ca62190553501b54f682f491095d9e000eb61
http://code.google.com/p/jsoar/source/detail?r=234859c0f568
==============================================================================
Revision: 09196b467d59
Author: marinier
Date: Tue Jul 26 08:13:18 2011
Log: Suggest garbage collection after all tests have finished running.
Should help keep memory usage reasonable, and make out of memory errors
less common (it can happen when the tests are run many times in a row and
the garbage collector falls behind).
http://code.google.com/p/jsoar/source/detail?r=09196b467d59
Modified:
/jsoar-soarunit/src/main/java/org/jsoar/soarunit/TestRunner.java
=======================================
--- /jsoar-soarunit/src/main/java/org/jsoar/soarunit/TestRunner.java Thu
Mar 24 18:43:19 2011
+++ /jsoar-soarunit/src/main/java/org/jsoar/soarunit/TestRunner.java Tue
Jul 26 08:13:18 2011
@@ -102,6 +102,7 @@
final long elapsedTime = System.nanoTime() - startTime;
out.printf("Ran %d tests in %f s\n", TestCase.getTotalTests(all),
elapsedTime / 1000000000.0);
System.out.printf("Ran %d tests in %f s\n",
TestCase.getTotalTests(all), elapsedTime / 1000000000.0);
+ System.gc();
return results;
/*
==============================================================================
Revision: 234859c0f568
Author: marinier
Date: Tue Jul 26 08:19:18 2011
Log: Merge with a69ca62190553501b54f682f491095d9e000eb61
http://code.google.com/p/jsoar/source/detail?r=234859c0f568
Deleted:
/jsoar-soarunit/lib/build-only/sml-9.3.0.jar
=======================================
--- /jsoar-soarunit/lib/build-only/sml-9.3.0.jar Thu Jul 29 11:32:51 2010
+++ /dev/null
Binary file, no diff available.