You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by se...@apache.org on 2015/02/11 22:23:49 UTC

svn commit: r1659073 - /jmeter/trunk/test/src/org/apache/jorphan/test/AllTests.java

Author: sebb
Date: Wed Feb 11 21:23:49 2015
New Revision: 1659073

URL: http://svn.apache.org/r1659073
Log:
properties file has moved

Modified:
    jmeter/trunk/test/src/org/apache/jorphan/test/AllTests.java

Modified: jmeter/trunk/test/src/org/apache/jorphan/test/AllTests.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/test/src/org/apache/jorphan/test/AllTests.java?rev=1659073&r1=1659072&r2=1659073&view=diff
==============================================================================
--- jmeter/trunk/test/src/org/apache/jorphan/test/AllTests.java (original)
+++ jmeter/trunk/test/src/org/apache/jorphan/test/AllTests.java Wed Feb 11 21:23:49 2015
@@ -287,6 +287,9 @@ public final class AllTests {
      * the properties file to use to configure the system.
      * 
      * @param args arguments with the initialization parameter
+     * arg[0] - not used
+     * arg[1] - relative name of properties file
+     * arg[2] - used as label
      */
     protected static void initializeManager(String[] args) {
         if (args.length >= 3) {
@@ -314,7 +317,7 @@ public final class AllTests {
      * of the module. No parameters can be passed in, so it is less flexible.
      */
     public static TestSuite suite() {
-        String args[] = { "../lib/ext", "./jmetertest.properties", "org.apache.jmeter.util.JMeterUtils" };
+        String args[] = { "../lib/ext", "./testfiles/jmetertest.properties", "org.apache.jmeter.util.JMeterUtils" };
 
         initializeManager(args);
         return suite(args[0]);
@@ -377,6 +380,7 @@ public final class AllTests {
             log.error("", e);
         }
         System.out.println("Created: "+tests+" tests including "+suites+" suites");
+        System.exit(0);
         return suite;
     }
 }