diff options
| author | bors <bors@rust-lang.org> | 2016-12-31 12:44:32 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2016-12-31 12:44:32 +0000 |
| commit | ca0cc27ab6569c1afbd6aa1e3ab7b925b226b679 (patch) | |
| tree | 25127c6bb61898d1d03aa115a05f52af7e9af615 | |
| parent | 9a07f3e23654654e31738b080c5abd86218d2bfd (diff) | |
| parent | 73b708a72fdf1b3beeab42cc66d6fa891b8c5f24 (diff) | |
| download | rust-ca0cc27ab6569c1afbd6aa1e3ab7b925b226b679.tar.gz rust-ca0cc27ab6569c1afbd6aa1e3ab7b925b226b679.zip | |
Auto merge of #38709 - alexcrichton:check-xsv, r=nikomatsakis
cargotest: Add xsv to tested crates This was intended to land in #37149 but I ended up backing it out to land the rollup (#38697) last night as I was itching to do so. This morning though xsv has been fixed now (BurntSushi/xsv#53) so we should be able to add it!
| -rw-r--r-- | src/tools/cargotest/main.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/tools/cargotest/main.rs b/src/tools/cargotest/main.rs index b4f4d179905..8a891d624f4 100644 --- a/src/tools/cargotest/main.rs +++ b/src/tools/cargotest/main.rs @@ -52,6 +52,12 @@ const TEST_REPOS: &'static [Test] = &[ sha: "999001b223152441198f117a68fb81f57bc086dd", lock: None, }, + Test { + name: "xsv", + repo: "https://github.com/BurntSushi/xsv", + sha: "a9a7163f2a2953cea426fee1216bec914fe2f56a", + lock: None, + }, ]; fn main() { |
