summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatúš Kukan <matus.kukan@collabora.com>2014-03-28 19:48:37 +0100
committerMatúš Kukan <matus.kukan@collabora.com>2014-03-28 19:48:37 +0100
commita8cfc20a10a03c0e375cd251850e70904d3fd53b (patch)
tree7ac849e6de99b75d4d59111dc084ce988643fad9
parent02ab6e56969dc5916fe21acfff16aa392eb25800 (diff)
loperf: Fix names of callgrind output files.
-rwxr-xr-xloperf/loperf.sh5
1 files changed, 2 insertions, 3 deletions
diff --git a/loperf/loperf.sh b/loperf/loperf.sh
index 62395f6..b98b6a9 100755
--- a/loperf/loperf.sh
+++ b/loperf/loperf.sh
@@ -68,15 +68,14 @@ function launch {
valgrind --tool=callgrind --callgrind-out-file="${CG_OUT_FILE}" --simulate-cache=yes --dump-instr=yes --collect-bus=yes --branch-sim=yes "$OFFICEBIN" --splash-pipe=0 --headless > /dev/null 2>&1
unset OOO_EXIT_POST_STARTUP
else
+ fn=${1#$DOCUMENTSDIR\/}
+ CG_OUT_FILE="${CG_LOG}-onload-${fn}-${2}.log"
if test "$2" = "load"; then
export OOO_EXIT_POST_STARTUP=1
- CG_OUT_FILE="${CG_LOG}-onload-${fn}-${2}.log"
valgrind --tool=callgrind --callgrind-out-file="${CG_OUT_FILE}" --simulate-cache=yes --dump-instr=yes --collect-bus=yes --branch-sim=yes "$OFFICEBIN" --splash-pipe=0 --headless "$1" > /dev/null 2>&1
unset OOO_EXIT_POST_STARTUP
else
- fn=${1#$DOCUMENTSDIR\/}
ext=${fn##*.}
- CG_OUT_FILE="${CG_LOG}-onload-${fn}-${2}.log"
valgrind --tool=callgrind --callgrind-out-file="${CG_OUT_FILE}" --simulate-cache=yes --dump-instr=yes --collect-bus=yes --branch-sim=yes "$OFFICEBIN" --splash-pipe=0 --headless --convert-to "$ext" --outdir tmp "$1" > /dev/null 2>&1
fi
fi