JAL-1551 crlf changes due to checkout with text=auto
[jalview.git] / examples / groovy / JvLoadTestHarness.groovy
1 // You need to add the groovy directory to the class path from the script window
2 // or add the groovy directory to the java classpath when running Jalview
3
4 jvtst = new JvLoadTester().newJvLoadTest('D:\\fooTest.jar');
5 try { jvtst.TestForAll('D:\\e6-workspace\\Jalview RNA\\examples\\rna\\rfamSml') } 
6 catch (OutOfMemoryError e) { 
7 // inspect jvtst to find out what file + file index it was on
8 }
9 // Terminate Jalview - useful if running from command line
10 if (Jalview.isInBatchMode()) {
11  Jalview.quit() 
12 }