Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(291)

Side by Side Diff: tools/valgrind/asan/asan_wrapper.sh

Issue 624533003: Check that the user doesn't try to run ASan-built binaries under Valgrind etc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Try Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | tools/valgrind/chrome_tests.py » ('j') | tools/valgrind/chrome_tests.py » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/bin/bash
2
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.
6
7 # A wrapper that runs the program and filters the output through
8 # asan_symbolize.py and c++filt
9 #
10 # TODO(glider): this should be removed once EmbeddedTool in valgrind_test.py
11 # starts supporting pipes.
12
13 export THISDIR=`dirname $0`
14 "$@" 2>&1 |
15 $THISDIR/asan_symbolize.py |
16 c++filt
OLDNEW
« no previous file with comments | « no previous file | tools/valgrind/chrome_tests.py » ('j') | tools/valgrind/chrome_tests.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698