2001-01-12 12:28:43 +08:00
|
|
|
#!/bin/sh
|
2004-02-16 21:34:10 +08:00
|
|
|
|
|
|
|
## $Id$
|
|
|
|
## Copyright 2001-2004 The Apache Software Foundation
|
|
|
|
##
|
|
|
|
## Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
## you may not use this file except in compliance with the License.
|
|
|
|
## You may obtain a copy of the License at
|
|
|
|
##
|
|
|
|
## http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
##
|
|
|
|
## Unless required by applicable law or agreed to in writing, software
|
|
|
|
## distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
## See the License for the specific language governing permissions and
|
|
|
|
## limitations under the License.
|
|
|
|
|
2003-08-04 02:20:29 +08:00
|
|
|
set OLDCLASSPATH=$CLASSPATH
|
|
|
|
export OLDCLASSPATH
|
|
|
|
set CLASSPATH=`dirname $0`/../lib/ext/ApacheJMeter_core.jar:`dirname $0`/../lib/jorphan.jar:`dirname $0`/../lib/logkit-1.2.jar
|
|
|
|
export CLASSPATH
|
2003-05-01 23:49:07 +08:00
|
|
|
rmiregistry &
|
2003-08-04 02:20:29 +08:00
|
|
|
set CLASSPATH=$OLDCLASSPATH
|
|
|
|
export CLASSPATH
|
2003-06-10 00:07:59 +08:00
|
|
|
`dirname $0`/jmeter -s "$@"
|