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

Unified Diff: tools/valgrind/valgrind.sh

Issue 839143002: Roll Chrome into Mojo. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Rebase Created 5 years, 11 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 | « tools/valgrind/tsan_analyze.py ('k') | tools/valgrind/valgrind_test.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/valgrind/valgrind.sh
diff --git a/tools/valgrind/valgrind.sh b/tools/valgrind/valgrind.sh
index 52f634a60dd491bef8123621d66654a9975d3961..59b4071941960a2e2e906e07b22afaa69ff78c84 100755
--- a/tools/valgrind/valgrind.sh
+++ b/tools/valgrind/valgrind.sh
@@ -29,13 +29,6 @@ setup_memcheck() {
"--num-callers=30")
}
-setup_tsan() {
- RUN_COMMAND="valgrind-tsan.sh"
- IGNORE_FILE="$THISDIR/tsan/ignores.txt"
- DEFAULT_TOOL_FLAGS=("--announce-threads" "--pure-happens-before=yes" \
- "--ignore=$IGNORE_FILE")
-}
-
setup_unknown() {
echo "Unknown tool \"$TOOL_NAME\" specified, the result is not guaranteed"
DEFAULT_TOOL_FLAGS=()
@@ -65,7 +58,6 @@ fi
case $TOOL_NAME in
memcheck*) setup_memcheck "$1";;
- tsan*) setup_tsan;;
*) setup_unknown;;
esac
« no previous file with comments | « tools/valgrind/tsan_analyze.py ('k') | tools/valgrind/valgrind_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698