Kaydet (Commit) 3ceaeff1 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Skip gcj's gij executable, like other JREs' java executables

Change-Id: Ida84a271a066e89ceb7e5dd2fd23a744f5529917
üst f6ff4c95
...@@ -101,7 +101,7 @@ for arg in $@ $VALGRINDOPT ; do ...@@ -101,7 +101,7 @@ for arg in $@ $VALGRINDOPT ; do
valgrind_ver_min=`echo $valgrind_ver | awk -F. '{ print \$2 }'` valgrind_ver_min=`echo $valgrind_ver | awk -F. '{ print \$2 }'`
valgrind_skip= valgrind_skip=
if [ "$valgrind_ver_maj" -gt 3 -o \( "$valgrind_ver_maj" -eq 3 -a "$valgrind_ver_min" -ge 6 \) ] ; then if [ "$valgrind_ver_maj" -gt 3 -o \( "$valgrind_ver_maj" -eq 3 -a "$valgrind_ver_min" -ge 6 \) ] ; then
valgrind_skip='--trace-children-skip=*/java' valgrind_skip='--trace-children-skip=*/java,*/gij'
fi fi
# finally set the valgrind check # finally set the valgrind check
VALGRINDCHECK="valgrind --tool=$VALGRIND --trace-children=yes $valgrind_skip --num-callers=50 --error-limit=no" VALGRINDCHECK="valgrind --tool=$VALGRIND --trace-children=yes $valgrind_skip --num-callers=50 --error-limit=no"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment