| author | Michael Stahl <mstahl@redhat.com> | 2012-07-11 19:05:47 (GMT) |
|---|---|---|
| committer | Michael Stahl <mstahl@redhat.com> | 2012-07-11 19:08:27 (GMT) |
| commit | fb79f6d64eee0580558dac15f42f97ee2255ff24 (patch) (side-by-side diff) | |
| tree | 8c662f178fdde53e92bf2911174063fa8cf49fd4 | |
| parent | 802e3fa7e6eff9d6ca5d731096e4bf5e38f3c51a (diff) | |
| download | core-fb79f6d64eee0580558dac15f42f97ee2255ff24.zip core-fb79f6d64eee0580558dac15f42f97ee2255ff24.tar.gz | |
soffice.sh: remove valgrind --error-exitcode=101
This doesn't really seem so important, and it prevents running junit
tests with VALGRIND=memcheck from working, because the special restart
exit code on first start up is mangled by valgrind and so the actual
test doesn't run.
| -rwxr-xr-x | desktop/scripts/soffice.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/scripts/soffice.sh b/desktop/scripts/soffice.sh index 97a2be9..a259bf6 100755 --- a/desktop/scripts/soffice.sh +++ b/desktop/scripts/soffice.sh @@ -108,7 +108,7 @@ for arg in $@ $VALGRINDOPT ; do valgrind_skip='--trace-children-skip=*/java' fi # finally set the valgrind check - VALGRINDCHECK="valgrind --tool=$VALGRIND --trace-children=yes $valgrind_skip --num-callers=50 --error-limit=no --error-exitcode=101" + VALGRINDCHECK="valgrind --tool=$VALGRIND --trace-children=yes $valgrind_skip --num-callers=50 --error-limit=no" echo "use kill -SIGUSR2 pid to dump traces of active allocations" checks="c$checks" if [ "$VALGRIND" = "memcheck" ] ; then |
