Skip to content
This repository has been archived by the owner on Sep 15, 2021. It is now read-only.

Commit

Permalink
Bug 696298 - Rename variable to 'cross_architecture_suppression_file'…
Browse files Browse the repository at this point in the history
… since bash doesn't like hyphens in variable names; r=catlee
  • Loading branch information
Ed Morley committed Sep 25, 2012
1 parent 52356d4 commit a93390d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/valgrind/valgrind.sh
Expand Up @@ -68,9 +68,9 @@ make -j4 || exit 2
make package || exit 2

debugger_args="--error-exitcode=1 --smc-check=all-non-file --gen-suppressions=all --leak-check=full --num-callers=50 --show-possibly-lost=no"
cross-architecture-suppression_file=$PWD/_valgrind/cross-architecture.sup
if [ -f $cross-architecture-suppression_file ]; then
debugger_args="$debugger_args --suppressions=$cross-architecture-suppression_file"
cross_architecture_suppression_file=$PWD/_valgrind/cross-architecture.sup
if [ -f $cross_architecture_suppression_file ]; then
debugger_args="$debugger_args --suppressions=$cross_architecture_suppression_file"
fi
suppression_file=$PWD/_valgrind/${MACHTYPE}.sup
if [ -f $suppression_file ]; then
Expand Down

0 comments on commit a93390d

Please sign in to comment.