Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Added info about setting JAVA_HOME and ANT_OPTS

...

How do I run all of the unit tests?

Make sure that your JAVA_HOME is appropriately set (some tests need this), and set ANT_OPTS to increase the size allocated to the Permanent Generation as per the following:

export ANT_OPTS=-XX:MaxPermSize=512m;

Then, for For a clean build, run

ant clean package test

...