Revert 224458 "Enabling MediaStreamInfoBarTest.DenyingCameraDoes..."
[chromium-blink-merge.git] / tools / valgrind / asan / asan_wrapper.sh
blob4e34fed5a09c6701dc1e1e57f762ec5d32774072
1 #!/bin/bash
3 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file.
7 # A wrapper that runs the program and filters the output through
8 # asan_symbolize.py and c++filt
10 # TODO(glider): this should be removed once EmbeddedTool in valgrind_test.py
11 # starts supporting pipes.
13 export THISDIR=`dirname $0`
14 "$@" 2>&1 |
15 $THISDIR/asan_symbolize.py |
16 c++filt