| Index: tools/valgrind/waterfall.sh
|
| diff --git a/tools/valgrind/waterfall.sh b/tools/valgrind/waterfall.sh
|
| index fc1830eec499b186a14fb98cae4ddcd56d103f2c..bd888a11dcf8cbe64af08317f6b05fe5a6e4eeaa 100755
|
| --- a/tools/valgrind/waterfall.sh
|
| +++ b/tools/valgrind/waterfall.sh
|
| @@ -128,7 +128,7 @@ fetch_logs() {
|
|
|
| match_suppressions() {
|
| PYTHONPATH=$THISDIR/../python/google \
|
| - python "$THISDIR/test_suppressions.py" "$LOGS_DIR/report_"*
|
| + python "$THISDIR/test_suppressions.py" $@ "$LOGS_DIR/report_"*
|
| }
|
|
|
| match_gtest_excludes() {
|
| @@ -161,7 +161,7 @@ then
|
| fetch_logs $WATERFALL_FYI_PAGE
|
| elif [ "$1" = "match" ]
|
| then
|
| - match_suppressions
|
| + match_suppressions ${@:2}
|
| match_gtest_excludes
|
| elif [ "$1" = "blame" ]
|
| then
|
|
|