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

Unified 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: address review comments 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tools/valgrind/chrome_tests.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « no previous file | tools/valgrind/chrome_tests.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698