Author: sebb
Date: Thu May 7 17:30:27 2009
New Revision: 772716
URL: http://svn.apache.org/viewvc?rev=772716&view=rev
Log:
Rename to avoid possible confusion with Thread.run()
Modified:
jakarta/jmeter/trunk/src/core/org/apache/jmeter/JMeter.java
Modified: jakarta/jmeter/trunk/src/core/org/apache/jmeter/JMeter.java
URL:
http://svn.apache.org/viewvc/jakarta/jmeter/trunk/src/core/org/apache/jmeter/JMeter.java?rev=772716&r1=772715&r2=772716&view=diff
==============================================================================
--- jakarta/jmeter/trunk/src/core/org/apache/jmeter/JMeter.java (original)
+++ jakarta/jmeter/trunk/src/core/org/apache/jmeter/JMeter.java Thu May 7
17:30:27 2009
@@ -697,14 +697,14 @@
throw new IllegalUserActionException("Non-GUI runs require a test
plan");
}
if (logFile == null) {
- driver.run(testFile, null, remoteStart !=
null,remote_hosts_string);
+ driver.runNonGui(testFile, null, remoteStart !=
null,remote_hosts_string);
} else {
- driver.run(testFile, logFile, remoteStart !=
null,remote_hosts_string);
+ driver.runNonGui(testFile, logFile, remoteStart !=
null,remote_hosts_string);
}
}
// run test in batch mode
- private void run(String testFile, String logFile, boolean remoteStart,
String remote_hosts_string) {
+ private void runNonGui(String testFile, String logFile, boolean
remoteStart, String remote_hosts_string) {
FileInputStream reader = null;
try {
File f = new File(testFile);
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]