Index: tools/valgrind/asan/asan_wrapper.sh |
diff --git a/tools/valgrind/asan/asan_wrapper.sh b/tools/valgrind/asan/asan_wrapper.sh |
deleted file mode 100755 |
index 4e34fed5a09c6701dc1e1e57f762ec5d32774072..0000000000000000000000000000000000000000 |
--- a/tools/valgrind/asan/asan_wrapper.sh |
+++ /dev/null |
@@ -1,16 +0,0 @@ |
-#!/bin/bash |
- |
-# Copyright (c) 2012 The Chromium Authors. All rights reserved. |
-# Use of this source code is governed by a BSD-style license that can be |
-# found in the LICENSE file. |
- |
-# A wrapper that runs the program and filters the output through |
-# asan_symbolize.py and c++filt |
-# |
-# TODO(glider): this should be removed once EmbeddedTool in valgrind_test.py |
-# starts supporting pipes. |
- |
-export THISDIR=`dirname $0` |
-"$@" 2>&1 | |
- $THISDIR/asan_symbolize.py | |
- c++filt |