From 28baa27570a80f7e8e248bf8ca1dbbea6cd1ecba Mon Sep 17 00:00:00 2001
From: Jorge Aparicio <japaricious@gmail.com>
Date: Tue, 21 Feb 2017 22:05:19 -0500
Subject: [PATCH] sanitizer runtime crates shouldn't be tested

---
 src/librustc_asan/Cargo.toml | 1 +
 src/librustc_lsan/Cargo.toml | 1 +
 src/librustc_msan/Cargo.toml | 1 +
 src/librustc_tsan/Cargo.toml | 1 +
 4 files changed, 4 insertions(+)

diff --git a/src/librustc_asan/Cargo.toml b/src/librustc_asan/Cargo.toml
index 2d4872b1fc9..0fda2805fea 100644
--- a/src/librustc_asan/Cargo.toml
+++ b/src/librustc_asan/Cargo.toml
@@ -7,6 +7,7 @@ version = "0.0.0"
 [lib]
 name = "rustc_asan"
 path = "lib.rs"
+test = false
 
 [build-dependencies]
 build_helper = { path = "../build_helper" }
diff --git a/src/librustc_lsan/Cargo.toml b/src/librustc_lsan/Cargo.toml
index bc1f2ead768..786883d2135 100644
--- a/src/librustc_lsan/Cargo.toml
+++ b/src/librustc_lsan/Cargo.toml
@@ -7,6 +7,7 @@ version = "0.0.0"
 [lib]
 name = "rustc_lsan"
 path = "lib.rs"
+test = false
 
 [build-dependencies]
 build_helper = { path = "../build_helper" }
diff --git a/src/librustc_msan/Cargo.toml b/src/librustc_msan/Cargo.toml
index 45cc6b9839f..b3b70bc0a25 100644
--- a/src/librustc_msan/Cargo.toml
+++ b/src/librustc_msan/Cargo.toml
@@ -7,6 +7,7 @@ version = "0.0.0"
 [lib]
 name = "rustc_msan"
 path = "lib.rs"
+test = false
 
 [build-dependencies]
 build_helper = { path = "../build_helper" }
diff --git a/src/librustc_tsan/Cargo.toml b/src/librustc_tsan/Cargo.toml
index 66d6236361e..97c1181e3a2 100644
--- a/src/librustc_tsan/Cargo.toml
+++ b/src/librustc_tsan/Cargo.toml
@@ -7,6 +7,7 @@ version = "0.0.0"
 [lib]
 name = "rustc_tsan"
 path = "lib.rs"
+test = false
 
 [build-dependencies]
 build_helper = { path = "../build_helper" }