activemq/jmeter/resource/jmeter-server

26 lines
988 B
Plaintext
Raw Normal View History

#!/bin/sh
## $Id: jmeter-server,v 1.11 2004/02/16 13:34:10 sebb Exp $
## 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.
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
rmiregistry &
set CLASSPATH=$OLDCLASSPATH
export CLASSPATH
`dirname $0`/jmeter -s "$@"