Skip to content
Snippets Groups Projects
Commit 9bb41f41 authored by Reiner Jung's avatar Reiner Jung
Browse files

Minor bug fix in kieker/java

parent 8be064a6
No related branches found
No related tags found
No related merge requests found
......@@ -119,12 +119,12 @@ info "----------------------------------"
info "Running benchmark..."
info "----------------------------------"
for ((i=1;loop<="${NUM_OF_LOOPS}";i+=1)); do
for ((i=1;i<="${NUM_OF_LOOPS}";i+=1)); do
info "## Starting iteration ${i}/${NUM_OF_LOOPS}"
echo "## Starting iteration ${i}/${NUM_OF_LOOPS}" >> "${DATA_DIR}/kieker.log"
executeBenchmark
executeBenchmark
printIntermediaryResults
done
......
......@@ -242,7 +242,7 @@ if [ -z $SLEEP_TIME ]; then
SLEEP_TIME=3 #0 ## 30
fi
if [ -z $NUM_OF_LOOPS ]; then
NUM_OF_LOOPS=10 ## 10
NUM_OF_LOOPS=3 ## 10
fi
if [ -z $THREADS ]; then
THREADS=1 ## 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment