Skip to content
Snippets Groups Projects
startTeetime.sh 428 B
Newer Older
Christian Wulf's avatar
Christian Wulf committed
#!/bin/sh
Christian Wulf's avatar
Christian Wulf committed
java=~/jdk1.7.0_60/bin/java
cp=.:teetime.jar:lib/kieker-1.9_aspectj.jar
Christian Wulf's avatar
Christian Wulf committed
jvmParams=""
params=

JAVAARGS="-server"
JAVAARGS="${JAVAARGS} -d64"
JAVAARGS="${JAVAARGS} -Xms1G -Xmx1G"
JAVAARGS="${JAVAARGS} -verbose:gc -XX:+PrintCompilation"

Christian Wulf's avatar
Christian Wulf committed
${java} ${JAVAARGS} ${jvmParams} -cp ${cp} teetime.variant.methodcallWithPorts.examples.traceReconstructionWithThreads.ChwWorkTcpTraceReconstructionAnalysisWithThreadsTest ${params}