Forum Discussion
Clear_Capital__
12 years agoContributor
redfish4ktc2
Thanks for your help.
the change you are suggesting seems to already in my testrunner.sh . Here is the copy.
#!/bin/sh
### ====================================================================== ###
## ##
## SoapUI Pro TestCaseRunner Bootstrap Script ##
## ##
### ====================================================================== ###
### $Id$ ###
DIRNAME=`dirname $0`
# OS specific support (must be 'true' or 'false').
cygwin=false;
case "`uname`" in
CYGWIN*)
cygwin=true
;;
esac
# Setup SOAPUI_HOME
if [ "x$SOAPUI_HOME" = "x" ]
then
# get the full path (without any relative bits)
SOAPUI_HOME=`cd $DIRNAME/..; pwd`
fi
export SOAPUI_HOME
SOAPUI_CLASSPATH=$SOAPUI_HOME/bin/soapui-pro-4.6.3.jar:$SOAPUI_HOME/lib/*
export SOAPUI_CLASSPATH
JAVA_OPTS="-Xms128m -Xmx1024m -Dsoapui.properties=soapui.properties -Dgroovy.source.encoding=iso-8859-1 -Dsoapui.home=$SOAPUI_HOME/bin"
if [ $SOAPUI_HOME != "" ]
then
JAVA_OPTS="$JAVA_OPTS -Dsoapui.ext.libraries=$SOAPUI_HOME/bin/ext"
JAVA_OPTS="$JAVA_OPTS -Dsoapui.ext.listeners=$SOAPUI_HOME/bin/listeners"
JAVA_OPTS="$JAVA_OPTS -Dsoapui.ext.actions=$SOAPUI_HOME/bin/actions"
fi
export JAVA_OPTS
# For Cygwin, switch paths to Windows format before running java
if $cygwin
then
SOAPUI_HOME=`cygpath --path --dos "$SOAPUI_HOME"`
SOAPUI_CLASSPATH=`cygpath --path --dos "$SOAPUI_CLASSPATH"`
fi
echo ================================
echo =
echo = SOAPUI_HOME = $SOAPUI_HOME
echo =
echo ================================
java $JAVA_OPTS -cp $SOAPUI_CLASSPATH com.eviware.soapui.SoapUIProTestCaseRunner "$@"
Thanks for your help.
the change you are suggesting seems to already in my testrunner.sh . Here is the copy.
#!/bin/sh
### ====================================================================== ###
## ##
## SoapUI Pro TestCaseRunner Bootstrap Script ##
## ##
### ====================================================================== ###
### $Id$ ###
DIRNAME=`dirname $0`
# OS specific support (must be 'true' or 'false').
cygwin=false;
case "`uname`" in
CYGWIN*)
cygwin=true
;;
esac
# Setup SOAPUI_HOME
if [ "x$SOAPUI_HOME" = "x" ]
then
# get the full path (without any relative bits)
SOAPUI_HOME=`cd $DIRNAME/..; pwd`
fi
export SOAPUI_HOME
SOAPUI_CLASSPATH=$SOAPUI_HOME/bin/soapui-pro-4.6.3.jar:$SOAPUI_HOME/lib/*
export SOAPUI_CLASSPATH
JAVA_OPTS="-Xms128m -Xmx1024m -Dsoapui.properties=soapui.properties -Dgroovy.source.encoding=iso-8859-1 -Dsoapui.home=$SOAPUI_HOME/bin"
if [ $SOAPUI_HOME != "" ]
then
JAVA_OPTS="$JAVA_OPTS -Dsoapui.ext.libraries=$SOAPUI_HOME/bin/ext"
JAVA_OPTS="$JAVA_OPTS -Dsoapui.ext.listeners=$SOAPUI_HOME/bin/listeners"
JAVA_OPTS="$JAVA_OPTS -Dsoapui.ext.actions=$SOAPUI_HOME/bin/actions"
fi
export JAVA_OPTS
# For Cygwin, switch paths to Windows format before running java
if $cygwin
then
SOAPUI_HOME=`cygpath --path --dos "$SOAPUI_HOME"`
SOAPUI_CLASSPATH=`cygpath --path --dos "$SOAPUI_CLASSPATH"`
fi
echo ================================
echo =
echo = SOAPUI_HOME = $SOAPUI_HOME
echo =
echo ================================
java $JAVA_OPTS -cp $SOAPUI_CLASSPATH com.eviware.soapui.SoapUIProTestCaseRunner "$@"