Skip to content
Snippets Groups Projects
Commit 78adc73c authored by David Georg Reichelt's avatar David Georg Reichelt
Browse files

Fix time calculation variable usage

parent 799f4fb0
Branches
Tags
No related merge requests found
...@@ -111,7 +111,7 @@ getInspectItAgent ...@@ -111,7 +111,7 @@ getInspectItAgent
#MOREPARAMS="--quickstart" #MOREPARAMS="--quickstart"
MOREPARAMS="${MOREPARAMS}" MOREPARAMS="${MOREPARAMS}"
TIME=`expr ${METHODTIME} \* ${TOTALCALLS} / 1000000000 \* 4 \* ${RECURSION_DEPTH} \* ${NUM_OF_LOOPS} + ${SLEEPTIME} \* 4 \* ${NUM_OF_LOOPS} \* ${RECURSION_DEPTH} + 50 \* ${TOTALCALLS} / 1000000000 \* 4 \* ${RECURSION_DEPTH} \* ${NUM_OF_LOOPS} ` TIME=`expr ${METHOD_TIME} \* ${TOTAL_NUM_OF_CALLS} / 1000000000 \* 4 \* ${RECURSION_DEPTH} \* ${NUM_OF_LOOPS} + ${SLEEP_TIME} \* 4 \* ${NUM_OF_LOOPS} \* ${RECURSION_DEPTH} + 50 \* ${TOTAL_NUM_OF_CALLS} / 1000000000 \* 4 \* ${RECURSION_DEPTH} \* ${NUM_OF_LOOPS} `
echo "Experiment will take circa ${TIME} seconds." echo "Experiment will take circa ${TIME} seconds."
echo "Removing and recreating '$RESULTS_DIR'" echo "Removing and recreating '$RESULTS_DIR'"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment